web-dev-qa-db-ja.com

ルート以外のユーザーとしてログインできません-権限が拒否されました

助けて!私は絶望的です :)

Root以外のユーザーとしてログインできません。私はUbuntu10.04を使用しています。

コマンド出力は次のとおりです。

root@pinky:~# adduser test
Adding user `test' ...
Adding new group `test' (1003) ...
Adding new user `test' (1003) with group `test' ...
Creating home directory `/home/test' ...
Copying files from `/etc/skel' ...
Enter new UNIX password: 
Retype new UNIX password: 
passwd: password updated successfully
Changing the user information for test
Enter the new value, or press ENTER for the default
    Full Name []: Test User
    Room Number []: 
    Work Phone []: 
    Home Phone []: 
    Other []: 
Is the information correct? [Y/n] 
root@pinky:~# su test
Cannot execute /bin/bash: Permission denied
root@pinky:~# su test -c touch thefile # Does nothing
root@pinky:~# strace -u test /bin/ls
execve("/bin/ls", ["/bin/ls"], [/* 17 vars */]) = -1 EACCES (Permission denied)
dup(2)                                  = 3
fcntl64(3, F_GETFL)                     = 0x8002 (flags O_RDWR|O_LARGEFILE)
fstat64(3, {st_mode=S_IFCHR|0600, st_rdev=makedev(136, 0), ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb771b000
_llseek(3, 0, 0xbfbbe4f8, SEEK_CUR)     = -1 ESPIPE (Illegal seek)
write(3, "strace: exec: Permission denied\n", 32strace: exec: Permission denied
) = 32
close(3)                                = 0
munmap(0xb771b000, 4096)                = 0
exit_group(1)                           = ?
root@pinky:~# ls -l /bin/ls
-rwxrwxrwx 1 root root 104528 2010-03-04 22:29 /bin/ls

/ bin/lsの権限がばかげていることに気付くでしょう。問題がないことを確認しようとしていたからです。

どうしたの?どんな提案でも大歓迎です!どうしたらいいのかわからない!

2
Charlie

デニスがコメントで上に投稿したのと同じ答え。 ubuntu 10.04には、/ binの権限が660になる更新がいくつかあります。これにより、この問題が発生します。それを確認します。

1
Dave Holland