LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 02-18-2017, 07:39 AM   #16
BW-userx
LQ Guru
 
Registered: Sep 2013
Location: Somewhere in my head.
Distribution: Slackware (15 current), Slack15, Ubuntu studio, MX Linux, FreeBSD 13.1, WIn10
Posts: 10,342

Original Poster
Rep: Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242

Quote:
Originally Posted by drgibbon View Post
Let's not exaggerate All you had to do was follow the link, where it says;
Code:
Instructions
Copy the file 09_slackware_linux into the directory

/etc/grub.d/
and mark it executable.
If you really thought it was part of Slackware, then ls /etc/grub.d on your own machine would have shown that it's not.
it was late I didn't look in to it that far. first glance I seen what it said -> slackwaregrub2

brain did this.

Slackware has grub2 is this the same thing? then I posted that question that arsed due to that.


nevertheless,

this upon second look, this is just a drop make executable and run ..?

ok let me do this and see what happens.
 
Old 02-18-2017, 07:47 AM   #17
BW-userx
LQ Guru
 
Registered: Sep 2013
Location: Somewhere in my head.
Distribution: Slackware (15 current), Slack15, Ubuntu studio, MX Linux, FreeBSD 13.1, WIn10
Posts: 10,342

Original Poster
Rep: Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242
Quote:
Originally Posted by drgibbon
Let's not exaggerate All you had to do was follow the link, where it says;
Code:
Instructions
Copy the file 09_slackware_linux into the directory

/etc/grub.d/
and mark it executable.
well that didn't work, it worked but it the kernel didn't.
process of elimination #2
add some kind of custom line to whichever add in config files held in /etc/grub.d

steps needed to be taken.
1. figure out what to write
2. figure out which config file it goes in.
 
Old 02-18-2017, 07:50 AM   #18
drgibbon
Senior Member
 
Registered: Nov 2014
Distribution: Slackware64 15.0
Posts: 1,217

Rep: Reputation: 942Reputation: 942Reputation: 942Reputation: 942Reputation: 942Reputation: 942Reputation: 942Reputation: 942
Quote:
Originally Posted by BW-userx View Post
grub.cfg
Code:
	echo	'Loading Linux 4.4.38 ...'
		linux	/boot/vmlinuz-generic-4.4.38 root=/dev/sda6 ro
so this too does not explain why I got a kernel panic. but if I reboot and select generic right now I think that is a premature idea/action at this minute.
The grub menuentry for a Slackware generic kernel needs a linux line (pointing to the kernel) and an initrd line (the initrd.gz). E.g.,
Code:
linux	/boot/vmlinuz-generic-4.4.38 root=/dev/sda6 ro
initrd  /boot/initrd-4.4.38.gz
The Slackware generic kernel won't boot without an initrd. I've never needed to manually edit grub files for this; the grub-mkconfig works it out if you name the files sensibly (I suppose, it may find them some other way).
Quote:
Originally Posted by BW-userx View Post
so taking from your two post, this one and the other above it. modding of the "custom" config files held within /etc/default need to be done?

which one and what is added to make that work?
if you do not mind me asking.
On booting, grub will only read your configuration from /boot/grub/grub.cfg

You are supposed to make any changes inside /etc/grub.d and /etc/default/grub, and then run grub-mkconfig -o /boot/grub/grub.cfg to update grub.cfg

Last edited by drgibbon; 02-18-2017 at 08:25 AM.
 
1 members found this post helpful.
Old 02-18-2017, 08:05 AM   #19
drgibbon
Senior Member
 
Registered: Nov 2014
Distribution: Slackware64 15.0
Posts: 1,217

Rep: Reputation: 942Reputation: 942Reputation: 942Reputation: 942Reputation: 942Reputation: 942Reputation: 942Reputation: 942
As an example, this is how it goes on my Slack 14.2 system;
Code:
# ls /boot
README.initrd              config-generic-4.4.38  initrd-4.4.29.gz  onlyblue.dat     vmlinuz-generic-4.4.38
System.map                 config-huge-4.4.38     initrd-4.4.38.gz  slack.bmp        vmlinuz-huge
System.map-generic-4.4.38  efi                    initrd-tree       tuxlogo.bmp      vmlinuz-huge-4.4.38
System.map-huge-4.4.38     elilo-ia32.efi         inside.bmp        tuxlogo.dat
coffee.dat                 elilo-x86_64.efi       inside.dat        vmlinuz
config                     grub                   onlyblue.bmp      vmlinuz-generic
Code:
# grub-mkconfig -o /boot/grub/grub.cfg
Generating grub.cfg ...
Found linux image: /boot/vmlinuz-huge-4.4.38
Found initrd image: /boot/initrd-4.4.38.gz
Found linux image: /boot/vmlinuz-huge
Found linux image: /boot/vmlinuz-generic-4.4.38
Found initrd image: /boot/initrd-4.4.38.gz
Found linux image: /boot/vmlinuz-generic
done
and here's the relevant updated part from /boot/grub/grub.cfg
Code:
echo    'Loading Linux 4.4.38 ...'
linux   /boot/vmlinuz-generic-4.4.38 root=/dev/mapper/cryptvg-root ro  
echo    'Loading initial ramdisk ...'
initrd  /boot/initrd-4.4.38.gz
There shouldn't be any problems with that part. Depending on your needs, you might need to edit templates in /etc/grub.d and also set the default boot option in /etc/defaults/grub (i.e., GRUB_DEFAULT). Again, nothing will actually happen until you run grub-mkconfig -o /boot/grub/grub.cfg (and regenerate your /boot/grub/grub.cfg).

Last edited by drgibbon; 02-18-2017 at 08:10 AM.
 
1 members found this post helpful.
Old 02-18-2017, 08:13 AM   #20
BW-userx
LQ Guru
 
Registered: Sep 2013
Location: Somewhere in my head.
Distribution: Slackware (15 current), Slack15, Ubuntu studio, MX Linux, FreeBSD 13.1, WIn10
Posts: 10,342

Original Poster
Rep: Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242
Quote:
Originally Posted by drgibbon View Post
The grub menuentry for a Slackware generic kernel needs a linux line (pointing to the kernel) and an initrd line (the initrd.gz). E.g.,
Code:
linux	/boot/vmlinuz-generic-4.4.38 root=/dev/sda6 ro
initrd  /boot/initrd-4.4.38.gz
The Slackware generic kernel won't boot without an initrd. I've never needed to manually edit grub files for this; the grub-mkconfig works it out if you name the files sensibly.


On booting, grub will only read your configuration from /boot/grub/grub.cfg

You are supposed to make any changes inside /etc/grub.d and /etc/default/grub, and then run grub-mkconfig -o /boot/grub/grub.cfg to regenerate an updated grub.cfg
still analyzing this I have not looked into the /etc/default/grub to mod it yet. thanks for the important part it got a have the initrd too when using the "generic" kernel.

I could ask why?
if the huge works on its own, and within other distros the kernel do not need an extra initrd but here it does, why question. But,

I will forbade that question.

I just put this line grub-mkconfig -o /boot/grub/grub.cfg in wrapper script and called it, update-grub put it in /usr/bin

chmod +x /usr/bin/update-grub

just run update-grub
done
saves typing.


this is better /boot/initrd-4.4.38.gz
than
/boot/initrd-generic-4.4.38.gz

I ask because I am still looking at this code in the drop in slackwareGrub2 config off of github

let me tinker with this thing on that default/grub initrd thing.
 
Old 02-18-2017, 08:17 AM   #21
BW-userx
LQ Guru
 
Registered: Sep 2013
Location: Somewhere in my head.
Distribution: Slackware (15 current), Slack15, Ubuntu studio, MX Linux, FreeBSD 13.1, WIn10
Posts: 10,342

Original Poster
Rep: Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242
Quote:
Originally Posted by drgibbon View Post
As an example, this is how it goes on my Slack 14.2 system;
Code:
# ls /boot
README.initrd              config-generic-4.4.38  initrd-4.4.29.gz  onlyblue.dat     vmlinuz-generic-4.4.38
System.map                 config-huge-4.4.38     initrd-4.4.38.gz  slack.bmp        vmlinuz-huge
System.map-generic-4.4.38  efi                    initrd-tree       tuxlogo.bmp      vmlinuz-huge-4.4.38
System.map-huge-4.4.38     elilo-ia32.efi         inside.bmp        tuxlogo.dat
coffee.dat                 elilo-x86_64.efi       inside.dat        vmlinuz
config                     grub                   onlyblue.bmp      vmlinuz-generic
Code:
# grub-mkconfig -o /boot/grub/grub.cfg
Generating grub.cfg ...
Found linux image: /boot/vmlinuz-huge-4.4.38
Found initrd image: /boot/initrd-4.4.38.gz
Found linux image: /boot/vmlinuz-huge
Found linux image: /boot/vmlinuz-generic-4.4.38
Found initrd image: /boot/initrd-4.4.38.gz
Found linux image: /boot/vmlinuz-generic
done
and here's the relevant updated part from /boot/grub/grub.cfg
Code:
echo    'Loading Linux 4.4.38 ...'
linux   /boot/vmlinuz-generic-4.4.38 root=/dev/mapper/cryptvg-root ro  
echo    'Loading initial ramdisk ...'
initrd  /boot/initrd-4.4.38.gz
There shouldn't be any problems with that part. Depending on your needs, you might need to edit templates in /etc/grub.d and also set the default boot option in /etc/defaults/grub (i.e., GRUB_DEFAULT). Again, nothing will actually happen until you run grub-mkconfig -o /boot/grub/grub.cfg (and regenerate your /boot/grub/grub.cfg).

Ok I think I have it!

Quote:
(root@SlackO⚡️/boot)>># mv -v initrd-generic-4.4.38.gz initrd-4.4.38.gz
'initrd-generic-4.4.38.gz' -> 'initrd-4.4.38.gz'

(root@SlackO⚡️/boot)>># update-grub
Generating grub configuration file ...
Found linux image: /boot/vmlinuz-generic-4.4.38
Found initrd image: /boot/initrd-4.4.38.gz
Found linux image: /boot/vmlinuz-huge-4.4.38
Found linux image: /boot/vmlinuz-huge-4.4.38
Found initrd image: /boot/initrd-4.4.38.gz
Found linux image: /boot/vmlinuz-huge
Found linux image: /boot/vmlinuz-generic-4.4.38
Found initrd image: /boot/initrd-4.4.38.gz
Found linux image: /boot/vmlinuz-generic
Found Windows 10 (loader) on /dev/sda1
Found unknown Linux distribution on /dev/sda5
Found Slackware Linux (Slackware 14.2) on /dev/sda6
done
now time for a truth.
reboot ...
 
Old 02-18-2017, 08:32 AM   #22
drgibbon
Senior Member
 
Registered: Nov 2014
Distribution: Slackware64 15.0
Posts: 1,217

Rep: Reputation: 942Reputation: 942Reputation: 942Reputation: 942Reputation: 942Reputation: 942Reputation: 942Reputation: 942
Quote:
Originally Posted by BW-userx View Post
thanks for the important part it got a have the initrd too when using the "generic" kernel. I could ask why?
From the link I posted before;
Quote:
What is the difference between a “generic” kernel and the “huge” kernel which has been installed as the default kernel?

The “huge” kernel is essentially a kernel which has every hardware driver built in which you might need for a successful installation of your computer. Think of storage and (wired) network drivers, filesystem and encryption drivers and a lot more. All these built-in drivers result in a big kernel image (hence the name “huge”). When this kernel boots it will use up a lot your RAM (relatively speaking… with 1 GB of RAM you will not really be troubled by a few MB less RAM).

The “generic” kernel on the other hand, is a kernel which has virtually no drivers built in. All drivers will be loaded into RAM on demand. This will make your kernel's memory consumption lower and the boot process a bit faster. The smaller size allows for the use of an initial RAM disk or “initrd”. An initial RAMdisk is required in certain configurations, like software RAID, or a fully encrypted hard drive.
For now, you need to remember that a “huge” kernel will not support an intial RAM disk, but the “generic” kernel will. We go for maximum flexibility and use a “generic” kernel.
I'm not aware of any big benefits, but I prefer to run a modular kernel that only loads what my system needs, as opposed to having it all baked in. I can't see any problem with running the huge kernel, although if you encrypt your root partition, you need an initrd anyway.
 
Old 02-18-2017, 08:41 AM   #23
BW-userx
LQ Guru
 
Registered: Sep 2013
Location: Somewhere in my head.
Distribution: Slackware (15 current), Slack15, Ubuntu studio, MX Linux, FreeBSD 13.1, WIn10
Posts: 10,342

Original Poster
Rep: Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242
Quote:
Originally Posted by drgibbon View Post
From the link I posted before;


I'm not aware of any big benefits, but I prefer to run a modular kernel that only loads what my system needs, as opposed to having it all baked in. I can't see any problem with running the huge kernel, although if you encrypt your root partition, you need an initrd anyway.
yeahhhhhh I just added the tag -generic- to it to be a reminder that it was made from the generic kernel but that didn't work due to the way the script is written to only pick up a initrd that it's name is formed to match initrd-(ver-number).gz w/o a name for it ie, huge or generic just a version number.

i unerstand that using a kernel that only runs what one needs it to load, anything else is overkill.

just that having the added need for a initrd due to a custom kernel if you think about it long enough you should see that even the huge is a custom kernel too. it does not need a initrd to get the sys booted but the generic kernel does need a initrd.

maybe just maybe it is because the supplied generic is not actually curtailed to ones system because it is not reconfigured to the systems hardware per se' it is only having less modules loaded within it .

now I've moved on to working on getting this grub video mode / theme thing working

just black and white ... not
 
Old 02-18-2017, 09:45 AM   #24
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 BW-userx View Post
just that having the added need for a initrd due to a custom kernel if you think about it long enough you should see that even the huge is a custom kernel too. it does not need a initrd to get the sys booted but the generic kernel does need a initrd.

maybe just maybe it is because the supplied generic is not actually curtailed to ones system because it is not reconfigured to the systems hardware per se' it is only having less modules loaded within it .
Technically, any kernel is a "custom" kernel because someone had to go through the kernel options and select what they wanted compiled into the kernel and what they wanted built as modules. However, in the context of a distro, a "stock" kernel is a custom kernel that is provided by distro maintainer for that distro. In that case, huge and generic are both stock kernels and not really custom in the way it is normally seen in the Linux world.

In actuality, there is no such thing as a generic or huge kernel. These are Slackware terms used to indicate whether things are generally built into the kernel (huge) or compiled as modules (generic). You can easily take the generic config Pat provides, make a few modifications (like adding your filesystem to the kernel and any required hardware support), and not need an initrd anymore (for a lot of cases -- however, there are specific cases that will always need an initrd, like using UUID for booting or LVM and/or encryption).

And you can tailor a kernel to your system (shrink it down so it only supports the hardware you have), but it typically doesn't provide much of a noticeable improvement, and the majority of people seem to think it isn't worth the time and effort.
 
1 members found this post helpful.
Old 02-18-2017, 09:52 AM   #25
BW-userx
LQ Guru
 
Registered: Sep 2013
Location: Somewhere in my head.
Distribution: Slackware (15 current), Slack15, Ubuntu studio, MX Linux, FreeBSD 13.1, WIn10
Posts: 10,342

Original Poster
Rep: Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242
Quote:
Originally Posted by bassmadrigal View Post
Technically, any kernel is a "custom" kernel because someone had to go through the kernel options and select what they wanted
that was my point, agreed:
Quote:
Originally Posted by bassmadrigal View Post
compiled into the kernel and what they wanted built as modules. However, in the context of a distro, a "stock" kernel is a custom kernel that is provided by distro maintainer for that distro. In that case, huge and generic are both stock kernels and not really custom in the way it is normally seen in the Linux world.
agreed:

Quote:
Originally Posted by bassmadrigal View Post
In actuality, there is no such thing as a generic or huge kernel. These are Slackware terms used to indicate whether things are generally built into the kernel (huge) or compiled as modules (generic).
agreed:

Quote:
Originally Posted by bassmadrigal View Post
You can easily take the generic config Pat provides, make a few modifications (like adding your filesystem to the kernel and any required hardware support), and not need an initrd anymore (for a lot of cases -- however, there are specific cases that will always need an initrd, like using UUID for booting or LVM and/or encryption).

And you can tailor a kernel to your system (shrink it down so it only supports the hardware you have), but it typically doesn't provide much of a noticeable improvement, and the majority of people seem to think it isn't worth the time and effort.
yep I've been down that road before. My luck with recompiling a kernel is non existent at the time of writing this.

side question.
what are are all of these little pictures I am starting to see on the bottom of the post in the users side bar?
penguins and such. I got three now when I only had one.

you got a windows a penguin and a cloud.

I got a ? and penguin and a cloud

some of my post got a penguin head a penguin and a cloud.

if that cloud looking thing is suppose to be a cloud

Last edited by BW-userx; 02-18-2017 at 09:58 AM.
 
Old 02-18-2017, 10:33 AM   #26
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 BW-userx View Post
side question.
what are are all of these little pictures I am starting to see on the bottom of the post in the users side bar?
penguins and such. I got three now when I only had one.

you got a windows a penguin and a cloud.

I got a ? and penguin and a cloud

some of my post got a penguin head a penguin and a cloud.

if that cloud looking thing is suppose to be a cloud
If you hover over them, it should give an indication of what they mean.

But essentially, the first is what OS that user is posting from. It is based on their browser's useragent. There's discussions on the forum on how to get Slackware to be detected (since Pat doesn't use a custom useragent for Slackware's browsers, it can't be detected as Slackware and only shows up as Linux). The second is whether or not that person is online (question mark is online, and no question mark is offline -- I don't know why it is that way). The final one allows you to give people reputation (similar to clicking the "Did you find this post helpful?" link at the end of other's posts), but allows you to write a comment that only the poster can see. I believe it gives you more reputation than just clicking the yes, but I haven't tried to verify it.
 
Old 02-18-2017, 10:50 AM   #27
BW-userx
LQ Guru
 
Registered: Sep 2013
Location: Somewhere in my head.
Distribution: Slackware (15 current), Slack15, Ubuntu studio, MX Linux, FreeBSD 13.1, WIn10
Posts: 10,342

Original Poster
Rep: Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242
Quote:
Originally Posted by bassmadrigal View Post
If you hover over them, it should give an indication of what they mean.
I did and clicked on all of them, only one gave results for reputation points.

Quote:
Originally Posted by bassmadrigal View Post
But essentially, the first is what OS that user is posting from. It is based on their browser's useragent.
I am using slack and I get a ? question mark ?
Quote:
Originally Posted by bassmadrigal View Post

There's discussions on the forum on how to get Slackware to be detected (since Pat doesn't use a custom useragent for Slackware's browsers, it can't be detected as Slackware and only shows up as Linux).
belay my last.

Quote:
Originally Posted by bassmadrigal View Post

The second is whether or not that person is online (question mark is online, and no question mark is offline -- I don't know why it is that way).
wait , now belay my second reply about the question mark.

Quote:
Originally Posted by bassmadrigal View Post
The final one allows you to give people reputation (similar to clicking the "Did you find this post helpful?" link at the end of other's posts), but allows you to write a comment that only the poster can see. I believe it gives you more reputation than just clicking the yes, but I haven't tried to verify it.
that refers to my first reply

don't be scared give it a click it is rather impressive to say the least.

..
 
Old 02-18-2017, 11:20 AM   #28
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 BW-userx View Post
I did and clicked on all of them, only one gave results for reputation points.
I didn't say "click", I said hover. The tooltips that come up provide your answer. In your case, it shows that you're using linux, you're online, and I can give you reputation.

For me, it shows I am using windows_10, I'm online, and I can view my reputation for that post.

The only clickable one is the last icon, which on your own posts, allows you view your reputation for that post, and for other posts, allows you to give the author reputation and provide a comment.
 
Old 02-18-2017, 11:26 AM   #29
BW-userx
LQ Guru
 
Registered: Sep 2013
Location: Somewhere in my head.
Distribution: Slackware (15 current), Slack15, Ubuntu studio, MX Linux, FreeBSD 13.1, WIn10
Posts: 10,342

Original Poster
Rep: Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242
Quote:
Originally Posted by bassmadrigal View Post
I didn't say "click", I said hover. The tooltips that come up provide your answer. In your case, it shows that you're using linux, you're online, and I can give you reputation.

For me, it shows I am using windows_10, I'm online, and I can view my reputation for that post.

The only clickable one is the last icon, which on your own posts, allows you view your reputation for that post, and for other posts, allows you to give the author reputation and provide a comment.
Quote:
Originally Posted by bassmadrigal
I believe it gives you more reputation than just clicking the yes, but I haven't tried to verify it.
I was just skimming looking for key words. sorry but one can still click on them that rep one woo hoo it gives you feedback
 
Old 02-18-2017, 12:04 PM   #30
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 BW-userx View Post
I was just skimming looking for key words. sorry but one can still click on them that rep one woo hoo it gives you feedback
While technically anything is clickable, the first two aren't links, so clicking on them does nothing.

And as for the reputation, I believe clicking on the link to "Add to ${USER}'s reputation" will provide more reputation than just clicking on the "yes" at the bottom of posts when it asks if you found the post helpful. Clicking "yes" will definitely add one point to that user's reputation, but I believe clicking on the icon will give ten points, but I don't know any easy way to find out without asking someone to manually click on the links and have me check my reputation before and after (plus, I don't really care enough about reputation to bother).
 
  


Reply



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
[SOLVED] kernel panic on boot with generic kernel 3.10.17 on slackware 14.1 josefin Slackware 35 07-08-2016 08:08 PM
[SOLVED] Generic kernel 4.4.7 wont boot after current update zaganzar Slackware 9 04-17-2016 02:20 PM
[SOLVED] Custom kernel doesn't work, but now even generic and huge kernels panic. ibrunton Slackware 3 01-27-2014 02:03 PM
[SOLVED] How do I modify GRUB to boot using the generic kernel? Robert.Thompson Slackware 3 02-16-2011 02:00 PM
slack 12, switch to generic kernel from huge kernel, using grub? jaguarrh Slackware 8 09-19-2007 06:29 AM

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

All times are GMT -5. The time now is 04:06 PM.

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