lost and found ( for me ? )

Ubuntu: how to change timezone from UTC to JST n’ hostname

[ change timezone from UTC to JST ]

・UTC

root@ubuntu-1:~# date
2010年 10月 15日 金曜日 02:15:02 UTC

-f はファイルがシンボリックリンク先のファイルが存在していても強制的にはりかえる。

root@ubuntu-1:~# ln -sf /usr/share/zoneinfo/Japan /etc/localtime

-f を指定しないと下記のエラーがでる。

root@ubuntu-1:~# ln -s /usr/share/zoneinfo/Japan /etc/localtime
ln: creating symbolic link `/etc/localtime': File exists

・リブート後、JSTになる

root@ubuntu-1:~# init 6

root@ubuntu-1:~# date
2010年 10月 15日 金曜日 11:19:06 JST

[ change hostname  ]

/etc/hosts と /etc/hostname を変更

・ubuntu-1 から ubuntu-2 に変更

修正前

root@ubuntu-1:~# uname -n
ubuntu-1

root@ubuntu-1:~# egrep ubuntu /etc/hosts
127.0.1.1 ubuntu-2.defaultdomain ubuntu-2

root@ubuntu-1:~# egrep ubuntu /etc/hostname
ubuntu-2

リブート後、ホスト名が変わる。

root@ubuntu-1:~# reboot

ホスト名が変わった。

root@ubuntu-2:~# uname -n
ubuntu-2
root@ubuntu-2:~# hostname
ubuntu-2

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.