Ubuntu 14.04 LTS Serverをインストールし、次のような最小限のデスクトップを追加しました。
Sudo apt-get install ubuntu-desktop --no-install-recommends
次に、使用可能なUIを取得できるように、インストールを次のパッケージで補完しました。
Sudo apt-get install gnome-disk-utility gnome-terminal libpam-gnome-keyring
libproxy1-plugin-gsettings libproxy1-plugin-networkmanager network-manager-gnome
network-manager-pptp network-manager-pptp-gnome ttf-ubuntu-font-family xdg-utils
Sudo apt-get install unity-control-center unity-lens-applications unity-lens-files
indicator-session indicator-power indicator-keyboard indicator-datetime
indicator-sound indicator-application indicator-appmenu hud
それはほぼ完璧に動作します。ネットワークを除く。
次のように、固定IPアドレスGUIを使用して有線接続を構成しました。
しかし、とにかく、私のIPは常にランダムに選択され、複数回再起動してもUIで使用されていない接続が表示され続けます。
ネットワークアイコンをクリックし、[接続情報]で次のメッセージを取得します。
ipconfig -a
は以下を提供します:
administrator@ci-server:~$ ifconfig -a
eth0 Link encap:Ethernet HWaddr 00:0c:29:f2:c6:26
inet addr:192.168.0.22 Bcast:192.168.0.255 Mask:255.255.255.0
inet6 addr: fe80::20c:29ff:fef2:c626/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:4991 errors:0 dropped:0 overruns:0 frame:0
TX packets:3162 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:2295739 (2.2 MB) TX bytes:479519 (479.5 KB)
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:65536 Metric:1
RX packets:35233 errors:0 dropped:0 overruns:0 frame:0
TX packets:35233 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:5458696 (5.4 MB) TX bytes:5458696 (5.4 MB)
私は何が欠けていますか?このUIを機能させるためのパッケージを忘れましたか?
**更新:**これは私の/etc/network/interfaces
ファイルです:
administrator@ci-server:~$ cat /etc/network/interfaces
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
auto eth0
iface eth0 inet dhcp
ありがとうございました!
Eth0の静的IPの/ etc/network/interfacesを介してインターフェイスを管理することを好みます。
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet static
address 192.168.0.214
netmask 255.255.255.0
gateway 192.168.0.1
dns-nameservers 8.8.8.8
dns-nameservers 8.8.4.4
ネットワークマネージャーGUIを使用する場合は、@ chili555の回答ごとにコメントしてください
/ etc/network/interfacesのeth0設定をコメントアウトすることをお勧めします。
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
#auto eth0
#iface eth0 inet dhcp
コンピューターを再起動すると、すべての設定が完了します。
問題を解決するには、いくつかの手順に従ってください。
ステップ
須藤ミイツール
eth0:リンクアップ、100Mbps、全二重
須藤mii-tool -F 10baseT-HD
eth0:10メガビット、半二重、リンクOK
それを試してみてください.........