Ubuntu安装之后设定操作
前几天使用chmod时候,多打了一个/,导致根目录下面所有文件权限设定出了问题,额~重装系统吧,正好把装系统之后的配置过程记录下来。 这些都是我操作过的命令,确切可靠,适用于Ubuntu 10.10 Desktop Edtion。 = init Linux programs and setting = :author: alswl :email: alswlx#gmail.com :toc: :numbered: == first of all == .update (打补丁、升级) sudo apt-get update Update System(fix bugs for sercurity): 299.0MB .reset permission(谨慎使用,设定文件为644,设定文件夹为755) find /home/XXX -type d -exec chmod 755 {} ; find /home/XXX -type f -exec chmod 644 {} ; .nautilus (给鹦鹉螺加上open as administrator, open terminal) ...