I have recently installed Slitaz and ran into the following problems:-
1. I am not able to connect to the network via Ethernet cable. It is supposed to auto connect but due to some reason there is no option on eth0
2. The top and bottom panels have suddenly gone missing and i do not know the commands to enable them back on.

Some Newbie Problems
(11 posts) (4 voices)-
Posted 12 years ago #
-
A bit more details on the ethernet connection would be helpful:
-Are you using dhcp?
-Is the adapter listred under network configuration?Then the panels. This is a known issue. check:
http://forum.slitaz.org/topic/the-taskbar-is-missing#post-21857To bring back both panels:
rm ~/.config/lxpanel/slitaz/panels/*
For user tux:
rm /home/tux/.config/lxpanel/slitaz/panels/*
Logout/in X session/emgi
Posted 12 years ago # -
@ Drmanhatten,
Concerning panels, first time you want to modify one, modify also the other. Then you can do all the modifications you want on top or/and bottom panel(s), they won't disappear anymore.
Posted 12 years ago # -
@Drmanhatten
Open terminal post the output from these commands.
uname -a
lspci -nn
ls /sys/class/net
ifconfig -a
cat /etc/network.conf
Posted 12 years ago # -
I am using a broadband connection from isp
it is DCHP
i don't seem to find the network adapter anywhere
the panel problem was resolved by the commands (thanks :) )
i will try the console commands given by @mojoPosted 12 years ago # -
@mojo i have made a text file of all the outputs of the commands you mentioned
-i think the problem is that local loopback is enabled instead of eth0 (though i am not sure what the problem is)
-the file is saved in utf format using leafpad editorPosted 12 years ago # -
Linux R2D2 2.6.37-slitaz #2 SMP Wed Mar 7 10:36:39 CET 2012 i686 GNU/Linux
command:lspci -nn
00:00.0 Host bridge [0600]: Intel Corporation 2nd Generation Core Processor Family DRAM Controller [8086:0104] (rev 09)
00:02.0 VGA compatible controller [0300]: Intel Corporation 2nd Generation Core Processor Family Integrated Graphics Controller [8086:0116] (rev 09)
00:16.0 Communication controller [0780]: Intel Corporation 6 Series/C200 Series Chipset Family MEI Controller #1 [8086:1c3a] (rev 04)
00:1a.0 USB controller [0c03]: Intel Corporation 6 Series/C200 Series Chipset Family USB Enhanced Host Controller #2 [8086:1c2d] (rev 04)
00:1b.0 Audio device [0403]: Intel Corporation 6 Series/C200 Series Chipset Family High Definition Audio Controller [8086:1c20] (rev 04)
00:1c.0 PCI bridge [0604]: Intel Corporation 6 Series/C200 Series Chipset Family PCI Express Root Port 1 [8086:1c10] (rev b4)
00:1c.1 PCI bridge [0604]: Intel Corporation 6 Series/C200 Series Chipset Family PCI Express Root Port 2 [8086:1c12] (rev b4)
00:1c.2 PCI bridge [0604]: Intel Corporation 6 Series/C200 Series Chipset Family PCI Express Root Port 3 [8086:1c14] (rev b4)
00:1c.3 PCI bridge [0604]: Intel Corporation 6 Series/C200 Series Chipset Family PCI Express Root Port 4 [8086:1c16] (rev b4)
00:1c.4 PCI bridge [0604]: Intel Corporation 6 Series/C200 Series Chipset Family PCI Express Root Port 5 [8086:1c18] (rev b4)
00:1c.5 PCI bridge [0604]: Intel Corporation 6 Series/C200 Series Chipset Family PCI Express Root Port 6 [8086:1c1a] (rev b4)
00:1d.0 USB controller [0c03]: Intel Corporation 6 Series/C200 Series Chipset Family USB Enhanced Host Controller #1 [8086:1c26] (rev 04)
00:1f.0 ISA bridge [0601]: Intel Corporation HM65 Express Chipset Family LPC Controller [8086:1c49] (rev 04)
00:1f.2 SATA controller [0106]: Intel Corporation 6 Series/C200 Series Chipset Family 6 port SATA AHCI Controller [8086:1c03] (rev 04)
00:1f.3 SMBus [0c05]: Intel Corporation 6 Series/C200 Series Chipset Family SMBus Controller [8086:1c22] (rev 04)
03:00.0 Network controller [0280]: Realtek Semiconductor Co., Ltd. RTL8188CE 802.11b/g/n WiFi Adapter [10ec:8176] (rev 01)
04:00.0 Unassigned class [ff00]: Realtek Semiconductor Co., Ltd. RTS5116 PCI Express Card Reader [10ec:5209] (rev 01)
09:00.0 Ethernet controller [0200]: Realtek Semiconductor Co., Ltd. RTL8111/8168B PCI Express Gigabit Ethernet controller [10ec:8168] (rev 03)command:ls /sys/class/net
dummy0 eth0 locommand:ifconfig -a
dummy0 Link encap:Ethernet HWaddr EA:94:52:F8:C4:81
BROADCAST NOARP MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)eth0 Link encap:Ethernet HWaddr E8:9A:8F:39:EE:46
BROADCAST MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)
Interrupt:17lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)command: cat /etc/network.conf
# /etc/network.conf: SliTaz system wide networking configuration.
# Config file used by: /etc/init.d/network.sh
## Set default interface.
INTERFACE="eth0"# Dynamic IP address.
# Enable/disable DHCP client at boot time.
DHCP="no"# Static IP address.
# Enable/disable static IP at boot time.
STATIC="yes"# Set IP address and netmask for a static IP.
IP="192.168.0.6"
NETMASK="255.255.255.0"# Set route gateway for a static IP.
GATEWAY="192.168.0.1"# Set DNS server for a static IP.
DNS_SERVER="192.168.0.1"# Wifi connection.
# Enable/disable wireless connection at boot time.
WIFI="yes"# Wifi interface (iwconfig) and ESSID.
WIFI_INTERFACE="wlan0"
WIFI_ESSID=""
WIFI_MODE="managed"
WIFI_KEY=""
WIFI_KEY_TYPE="any"
WPA_DRIVER=""
WIFI_CHANNEL=""
WIFI_IWCONFIG_ARGS=""Posted 12 years ago # -
The wired ethernet adapter:
09:00.0 Ethernet controller [0200]: Realtek Semiconductor Co., Ltd. RTL8111/8168B PCI Express Gigabit Ethernet controller [10ec:8168] (rev 03)Is recognized as eth0:
command:ls /sys/class/net
dummy0 eth0 loOpen terminal, su, password: root
# leafpad /etc/network.conf
Change
DHCP="no"
to
DHCP="yes"
and
STATIC="yes"
to
STATIC="no"
and
WIFI="yes"
to
WIFI="no"File/Save File/Quit <= leafpad
Stop/start networking
# /etc/init.d/network.sh stop
# /etc/init.d/network.sh start
I see you also have wireless,slitaz only supports one adapter at a time.
03:00.0 Network controller [0280]: Realtek Semiconductor Co., Ltd. RTL8188CE 802.11b/g/n WiFi Adapter [10ec:8176] (rev 01)
Start with the wired,all slitaz wireless drivers need firmware installed before they work.Posted 12 years ago # -
thank you for the solution
i have a couple of more questions
-is there an inbuild package repository for slitaz like other distros have?
-the firmware i need for other controllers are to be downloaded from manufacture website or slitaz support website?Slitaz is a great distro for understanding linux and operating systems and i am learning a lot with the installation!
Posted 12 years ago # -
Not sure what you mean by inbuild repo.
We use tazpkg to download/install software from the repo/mirror
Applications / Documentation / Tazpkg manual
Slitaz-4.0 doesn't include the driver for your wifi card.
I can compile the driver and package it for you,same with the firmware.
SliTaz is a never ending learning experience.
I discovered it when SliTaz-2.0 was released in 2009.Posted 12 years ago # -
i will try to learn how to package divers myself as it will teach me
i will be grateful if you tell me how to do it or provide me a link for it?
for the time being i just need the ethernet connection...as for package rep tazpkg was pretty much what i was looking for :)
Posted 12 years ago #
Reply
You must log in to post.