LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware > Slackware - Installation
User Name
Password
Slackware - Installation This forum is for the discussion of installation issues with Slackware.

Notices


Reply
  Search this Thread
Old 04-24-2016, 01:32 PM   #1
Overpossum
LQ Newbie
 
Registered: Apr 2016
Posts: 5

Rep: Reputation: Disabled
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
 
Old 04-24-2016, 01:45 PM   #2
Emerson
LQ Sage
 
Registered: Nov 2004
Location: Saint Amant, Acadiana
Distribution: Gentoo ~amd64
Posts: 7,661

Rep: Reputation: Disabled
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?
 
Old 04-24-2016, 01:50 PM   #3
cwizardone
LQ Veteran
 
Registered: Feb 2007
Distribution: Slackware64-current with "True Multilib" and KDE4Town.
Posts: 9,080

Rep: Reputation: 7255Reputation: 7255Reputation: 7255Reputation: 7255Reputation: 7255Reputation: 7255Reputation: 7255Reputation: 7255Reputation: 7255Reputation: 7255Reputation: 7255
Quote:
Originally Posted by Overpossum View Post
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.
 
Old 04-24-2016, 05:08 PM   #4
Didier Spaier
LQ Addict
 
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,055

Rep: Reputation: Disabled
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.
 
Old 04-25-2016, 08:20 AM   #5
Overpossum
LQ Newbie
 
Registered: Apr 2016
Posts: 5

Original Poster
Rep: Reputation: Disabled
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.
 
Old 04-25-2016, 06:02 PM   #6
bassmadrigal
LQ Guru
 
Registered: Nov 2003
Location: West Jordan, UT, USA
Distribution: Slackware
Posts: 8,792

Rep: Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656
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
 
Old 04-28-2016, 10:26 AM   #7
Overpossum
LQ Newbie
 
Registered: Apr 2016
Posts: 5

Original Poster
Rep: Reputation: Disabled
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
Code:
startx
stucks and no network
 
Old 04-28-2016, 10:28 AM   #8
Emerson
LQ Sage
 
Registered: Nov 2004
Location: Saint Amant, Acadiana
Distribution: Gentoo ~amd64
Posts: 7,661

Rep: Reputation: Disabled
This will show if kernel driver is loaded.
Code:
lspci -k
 
Old 04-28-2016, 02:07 PM   #9
bassmadrigal
LQ Guru
 
Registered: Nov 2003
Location: West Jordan, UT, USA
Distribution: Slackware
Posts: 8,792

Rep: Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656
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

Code:
ifconfig
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========"
 
Old 04-29-2016, 07:53 AM   #10
Overpossum
LQ Newbie
 
Registered: Apr 2016
Posts: 5

Original Poster
Rep: Reputation: Disabled
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=====
 
Old 04-29-2016, 07:57 AM   #11
Emerson
LQ Sage
 
Registered: Nov 2004
Location: Saint Amant, Acadiana
Distribution: Gentoo ~amd64
Posts: 7,661

Rep: Reputation: Disabled
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.
 
Old 04-29-2016, 07:58 AM   #12
Overpossum
LQ Newbie
 
Registered: Apr 2016
Posts: 5

Original Poster
Rep: Reputation: Disabled
I just tried the xfce Desktop and for some reasons this one starts. But still there is no network connection.
 
Old 04-29-2016, 08:34 AM   #13
cwizardone
LQ Veteran
 
Registered: Feb 2007
Distribution: Slackware64-current with "True Multilib" and KDE4Town.
Posts: 9,080

Rep: Reputation: 7255Reputation: 7255Reputation: 7255Reputation: 7255Reputation: 7255Reputation: 7255Reputation: 7255Reputation: 7255Reputation: 7255Reputation: 7255Reputation: 7255
Quote:
Originally Posted by Overpossum View Post
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?
 
Old 04-29-2016, 03:37 PM   #14
bassmadrigal
LQ Guru
 
Registered: Nov 2003
Location: West Jordan, UT, USA
Distribution: Slackware
Posts: 8,792

Rep: Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656
Quote:
Originally Posted by Overpossum View Post
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.
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Strange installation fail Ryuuhime Ubuntu 1 09-13-2013 07:26 PM
Fail to boot after installation satimis Arch 7 02-07-2008 09:04 AM
Printer installation fail. Slamtilt SUSE / openSUSE 2 01-27-2007 05:37 AM
Installation from CD fail KTurbo Slackware - Installation 11 10-26-2006 11:08 PM
fail fc4 installation x_sanctus Linux - Newbie 4 12-04-2005 01:52 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware > Slackware - Installation

All times are GMT -5. The time now is 04:41 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration