On 01/17/2013 10:51 AM, Slávek Banko wrote:
Slavek,
or anyone else, how can I get networking on this live CD?
Surely there must be a way, but I can't find it.
Desktops or laptops? Respectively - is sufficient to setup the network at
system level or network will configure users (wifi)?
One desktop, others are laptops. Wired networking would be enough to
start. Then I can download whatever I need for wifi.
The network card is recognized? Look in
/sys/class/net, if there is eth0,
wlan0 or something like that.
Both eth0 and wlan0 are there.
I suppose it should work as in normal Debian. It should suffice write
to /etc/network/interfaces:
allow-hotplug eth0
iface eth0 inet dhcp
If dhcp server is not available in your network, you must write ip
configuration into interfaces file and nameserver into /etc/resolv.conf. For
example:
allow-hotplug eth0
iface eth0 inet static
address 192.168.2.5
network 255.255.255.0
gateway 192.168.2.1
Slavek
--