設定ファイル類

Max file descriptors

デフォルトの hard limit が 10.04 では 1024 だったのが 4096 になった。

いずれにせよ小さすぎるので /etc/security/limits.conf で上限を増やすことにする。

/etc/resolv.conf

/etc/resolv.conf is automatically generated by resolvconf(8).

/etc/resolv.conf/etc/resolvconf/resolv.conf へのシンボリックリンクになっていて、直接編集してはいけなくなった。
従来 /etc/resolv.conf に書いていた内容を /etc/resolvconf/resolv.conf.d/base に書くようにします。
( base ファイルは /etc/resolvconf/update.d/libcresolv.conf を作成する時に反映される )

/etc/sudoers

Runas にユーザーだけじゃなくグループも指定されている。ALL:ALL で任意のユーザー・グループで実行可能。

%sudo    ALL = (ALL:ALL) ALL

secure_path が設定されるようになっている。ここに自社ツールの PATH を入れておくと便利。

Defaults    secure_path="/usr/local/sbin:/usr/local/bin:...:/usr/local/cybozu/bin"

/etc/mke2fs.conf

defults に以下が追加されている。

[defaults]
        default_mntopts = acl,user_xattr
        enable_periodic_fsck = 0

後者は fsck を抑制するもので、以前手動で tune2fs で抑制していたものが不要になっている。

       enable_periodic_fsck
              This boolean  relation  specifies  whether  periodic  filesystem
              checks  should be enforced at boot time.  If set to true, checks
              will be forced every 180 days,  or  after  a  random  number  of
              mounts.   These  values  may  be changed later via the -i and -c
              command-line options to tune2fs(8).

/etc/udev/rules.d/70-persistent-net.rules

VMware や KVM のデバイスは無視するように生成ツールのほうでなっている。
生成ツールはここ: /lib/udev/rules.d/75-persistent-net-generator.rules

バグがあるので生成ファイルに一部の NIC が記載されないことがある。パッチ作って報告した。
https://bugs.launchpad.net/ubuntu/+source/udev/+bug/1093731