環境:Ubuntu 10.04, Thinkpad x200linux
前提:在安裝時選擇對主文件夾加密。ui
BUG重現:進入Gnome桌面後,選擇 系統--系統管理--用戶和組,把密碼一項設置爲 登錄時不詢問密碼,重啓。加密
現象:重啓後不能進入桌面,錯誤是:Could not update /home/username/.ICEauthority.spa
錯誤緣由:[我的推測]主文件夾加密後,會在用戶輸入密碼,登錄成功以後解密,而將用戶設置爲不詢問密碼,由系統本身代替輸入密碼時,沒有解密文件夾,而致使沒法啓動桌面環境。code
解決辦法:從字符界面登錄後,再啓動Gnome桌面,修改 用戶和組,取消 登錄時不詢問密碼 的選擇。it
補充:讓Ubuntu啓動後進入字符界面。class
出現 Grub 引導時,按e進入編輯界面:date
recordfail insmod ext2 set root='(hd0,8)' search --no-floppy --fs-uuid --set f8934f80-c252-4f74-a1de-acbd237867a9 linux /boot/vmlinuz-2.6.32-21-generic root=UUID=f8934f80-c252-4f74-a1de- acbd237867a9 ro quiet splash initrd /boot/initrd.img-2.6.32-21-generic
在 linux 一行最後添加 text :密碼
recordfail insmod ext2 set root='(hd0,8)' search --no-floppy --fs-uuid --set f8934f80-c252-4f74-a1de-acbd237867a9 linux /boot/vmlinuz-2.6.32-21-generic root=UUID=f8934f80-c252-4f74-a1de- acbd237867a9 ro quiet splash text initrd /boot/initrd.img-2.6.32-21-generic
而後,按 Ctrl + x,啓動。im