この操作の後
http://amzn1.blogspot.com/2008/04/dhcpip.html
/etc/resolv.confにしたの内容を追記
nameserver ***.***.***.*** (DNSサーバーのIPアドレス)
その後、ネットワークを再起動する。
sudo /etc/init.d/networking restart
コンピュータやサーバー・ネットワーク管理の備忘録的なBlog。 PowerPCでUbuntuを動作させることが最近の興味対象。 メインマシンはUbuntu8.04LTS on Prime Kit Knight
nameserver ***.***.***.*** (DNSサーバーのIPアドレス)
sudo /etc/init.d/networking restart
sudo vi /etc/networ/interfaces始めの設定は下のようになっている。
これを編集して、auto eth0
iface eth0 inet dhcp
とする。ポイントはiface eth0 inetをきちんとstaticで宣言しておくこと。auto eth0
iface eth0 inet static
address 192.168.1.123(自分のアドレス)
netmask 255.255.255.0
network 192.168.1.0
broadcast 192.168.1.255
gateway 192.168.1.1(デフォルトゲートウェイ)
sudo /etc/init.d/networking restart
$ split -b 10m file file_split
$ ls
file_splitaa file_splitab file_splitac file_splitae
E: dpkg was interrupted, you must manually run 'dpkg --configure -a' to correct the problem.解決法
dpkg --configure -aと打つと、インストールが始まりました。