Slackware - Installation This forum is for the discussion of installation issues with Slackware. |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
 |
04-24-2016, 01:32 PM
|
#1
|
LQ Newbie
Registered: Apr 2016
Posts: 5
Rep: 
|
Installation fail??
Hey guys,
I'm new to Slackware, but the problems start with the installation.
I think i've installed everything fine but i have two major problems
If i use startx the screen gets stuck with the loaded harddrive icon.
The second thing is i can't handle the slackpkg thing. He says i have to choose a mirror, but if i type /etc/slackpkg/mirrors as root user i get that the Permission is denied.
So what i've done wrong 
|
|
|
04-24-2016, 01:45 PM
|
#2
|
LQ Sage
Registered: Nov 2004
Location: Saint Amant, Acadiana
Distribution: Gentoo ~amd64
Posts: 7,675
Rep: 
|
Quote:
but if i type /etc/slackpkg/mirrors as root user i get that the Permission is denied.
|
You cannot execute a text file. You sure you are ready for Slackware?
|
|
|
04-24-2016, 01:50 PM
|
#3
|
LQ Veteran
Registered: Feb 2007
Distribution: Slackware64-current with KDE4Town.
Posts: 9,719
|
Quote:
Originally Posted by Overpossum
Hey guys,
I'm new to Slackware, but the problems start with the installation.
I think i've installed everything fine but i have two major problems
If i use startx the screen gets stuck with the loaded harddrive icon.
The second thing is i can't handle the slackpkg thing. He says i have to choose a mirror, but if i type /etc/slackpkg/mirrors as root user i get that the Permission is denied.
So what i've done wrong 
|
You need to open the text file with an editor and uncomment (remove the #) the mirror to which you wish to connect and save your changes.
For example, say you want to connect to,
You would remove the # and save the file.
Last edited by cwizardone; 04-24-2016 at 01:52 PM.
|
|
|
04-24-2016, 05:08 PM
|
#4
|
LQ Addict
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,382
Rep: 
|
Hello Overpossum,
welcome to this forum and sorry for Emerson's answer, which could have been worded in a more positive way.
About "startx" and the screen that gets stuck, to help us investigate please type as root the following command and post the output here:
Code:
grep EE /var/log/Xorg.0.log
Also, when you wrote "I think i've installed everything fine" I assume that you meant "I have done a full installation, with all series of packages (but maybe kdei) checked". Is that right?
Last edited by Didier Spaier; 04-24-2016 at 05:09 PM.
|
|
|
04-25-2016, 08:20 AM
|
#5
|
LQ Newbie
Registered: Apr 2016
Posts: 5
Original Poster
Rep: 
|
Hey thanks for your anwers,
I'm used to the old DOS console where in fact you can execute a text file. So sorry i'm quite nex to linux.
If i try the "grep EE /var/log/Xorg.0.log" command just nothing happens.
|
|
|
04-25-2016, 06:02 PM
|
#6
|
LQ Guru
Registered: Nov 2003
Location: West Jordan, UT, USA
Distribution: Slackware
Posts: 8,792
|
You can't execute a text file (unless it is a shell script with the execute permission). You need to open it in a text editor like nano.
Code:
nano /etc/slackpkg/mirrors
Uncomment (remove the hashtag) a mirror (make sure it matches with your Slackware (or Slackware64) version (if you uncomment a -current mirror when you installed 14.1, you'll probably run into issues). Then press Ctrl+O to save or "Output" the file, then Ctrl+X to exit the program.
Since the grep command didn't work, what about the following? It will output the last 100 lines of the log. Just paste that output within [code][/code] tags to make it easier to read.
Code:
tail -n 100 /var/log/Xorg.0.log
|
|
|
04-28-2016, 10:26 AM
|
#7
|
LQ Newbie
Registered: Apr 2016
Posts: 5
Original Poster
Rep: 
|
So i get the thing with the mirrors, but i think it is a basic problem with my network connection. Is there more to configure than netconfig? So its a wired connection can i control if the system was able to get the driver somewhere?
This command results in no output, too. I don't know what i have probably done wrong. I even did a complete reinstall. The same stucks and no network
|
|
|
04-28-2016, 10:28 AM
|
#8
|
LQ Sage
Registered: Nov 2004
Location: Saint Amant, Acadiana
Distribution: Gentoo ~amd64
Posts: 7,675
Rep: 
|
This will show if kernel driver is loaded.
|
|
|
04-28-2016, 02:07 PM
|
#9
|
LQ Guru
Registered: Nov 2003
Location: West Jordan, UT, USA
Distribution: Slackware
Posts: 8,792
|
If there's no network, we need to see first if your network card is detected and the module loaded.
Code:
lspci -k | grep -iA3 net
Also, give us the output of
Finally, for the startx issue, we'd still need the Xorg.0.log file that I requested earlier. Since you don't have network access, the easiest way would be to redirect the output of those commands to a file, then copy that file to a USB drive and then access it on a computer that has internet access and copy and paste the results to here.
Code:
echo "=====lspci output======="
lspci -k | grep -iA3 net > /tmp/output.txt
echo "=======ifconfig output=======" >> /tmp/output.txt
ifconfig >> /tmp/output.txt
echo "========Xorg.0.log output=======" >> /tmp/output.txt
tail -n 100 /var/log/Xorg.0.log >> /tmp/output.txt
echo "========complete========"
|
|
|
04-29-2016, 07:53 AM
|
#10
|
LQ Newbie
Registered: Apr 2016
Posts: 5
Original Poster
Rep: 
|
this is the output:
Code:
=====lspci output=====
00:19.0 Ethernet controller: Intel Corporation Device 15a2 (rev 03)
Subsystem: Lenovo Device 2226
00:1b.0 Audio device: Intel Corporation Device 9ca0 (rev 03)
Subsystem: Lenovo Device 2226
--
03:00.0 Network controller: Intel Corporation Device 095b (rev 59)
Subsystem: Intel Corporation Device 5210
=====ifconfig output=====
lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536
inet 127.0.0.1 netmask 255.0.0.0
inet6 ::1 prefixlen 128 scopeid 0x10<host>
loop txqueuelen 0 (Local Loopback)
RX packets 0 bytes 0 (0.0 B)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 0 bytes 0 (0.0 B)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
=====Xorg.0.log output=====
=====complete=====
|
|
|
04-29-2016, 07:57 AM
|
#11
|
LQ Sage
Registered: Nov 2004
Location: Saint Amant, Acadiana
Distribution: Gentoo ~amd64
Posts: 7,675
Rep: 
|
When the driver is loaded it will show up like this:
Code:
00:1f.6 Ethernet controller: Intel Corporation Ethernet Connection (2) I219-V (rev 31)
Subsystem: ASRock Incorporation Ethernet Connection (2) I219-V
Kernel driver in use: e1000e
BTW, your NIC needs the same driver, try to load it by hand, I'm sure it is present in your system.
|
|
|
04-29-2016, 07:58 AM
|
#12
|
LQ Newbie
Registered: Apr 2016
Posts: 5
Original Poster
Rep: 
|
I just tried the xfce Desktop and for some reasons this one starts. But still there is no network connection.
|
|
|
04-29-2016, 08:34 AM
|
#13
|
LQ Veteran
Registered: Feb 2007
Distribution: Slackware64-current with KDE4Town.
Posts: 9,719
|
Quote:
Originally Posted by Overpossum
I just tried the xfce Desktop and for some reasons this one starts. But still there is no network connection.
|
Did you set up your network during the Slackware installation?
Did you elect to let NetworkManager do it for you?
|
|
|
04-29-2016, 03:37 PM
|
#14
|
LQ Guru
Registered: Nov 2003
Location: West Jordan, UT, USA
Distribution: Slackware
Posts: 8,792
|
Quote:
Originally Posted by Overpossum
Code:
00:19.0 Ethernet controller: Intel Corporation Device 15a2 (rev 03)
Subsystem: Lenovo Device 2226
00:1b.0 Audio device: Intel Corporation Device 9ca0 (rev 03)
Subsystem: Lenovo Device 2226
--
03:00.0 Network controller: Intel Corporation Device 095b (rev 59)
Subsystem: Intel Corporation Device 5210
|
The fact that these devices are not known tells me this is a newer laptop that doesn't have complete hardware support with the default 14.1 kernel (which is over 2 years old). Without installing a newer kernel or switching to -current (or waiting until it is released as 14.2 -- probably within a few weeks), you won't have support for your network or audio (and probably no 3D acceleration in the desktop either).
I'm not sure why it failed with KDE but succeeded with XFCE, but if I had to guess, I'd imagine it is because of the probable lack of support for your video card with the old kernel.
|
|
|
All times are GMT -5. The time now is 10:14 PM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|