4

Please HELP urgent network problem, installed Ubuntu 14.04.1 LTS server i386

*-network DISABLED
     description: Ethernet Interface
     product: RTL-8110SC/8169SC Gigabit Ethernet
     vendor: Realtek Semiconductor CO., Ltd.
     physical id: 4
     buss info: pci@0000:02:04.0
     logical name: eth0
     version: 10
     serial: 00:00:db:22:19:62
     size: 10Mbit/s
     capacity: 1Gbit/s
     clock: 66Mhz
     capabilities: pm bus_master cap_list rom ethernet physical tp mii 10bt 10bt-fd 100bt 
     configuration: autonegotiation=on brodcast=yes driver=r8169
     resources: irq:20 ioport:c800(size=256) memory:feaffc00-feaffcff feac0000-feadffff
*-network DISABLED
     description: Wireless interface
     physical id: 1
     buss info: usb@1:7
     logical name: wlan0
     serial: 64:70:02:2a:de:ba
     capabilities:ethernet physical wireless 
     configuration: brodcast=yes driver=ath9k_htc driverversion=3.13.0-32 firmware=1.3 multicast=yes wireless=IEEE 802.11bgn
Zanna
  • 72,312
Manoli
  • 41

2 Answers2

3

Try these and use manual pages to know about the commands using man command.

sudo nmcli nm enable true

or

sudo service network-manager restart

or

sudo ip link set eth0 up 

and

sudo ip link set wlan0 up
muru
  • 207,228
sigdelsanjog
  • 7,280
1

Please be more specific.

The config file to setup your nics is:

/etc/network/interfaces

did you try?

sudo ifup eth0;sudo ifup wlan0

You can also check the status of your nics executing

ip a

You can always check your logs to see what is happening:

cat /var/log/syslog
Zanna
  • 72,312