Linux scripts

Chain729

CageKicker Extraordinaire
Is there an easy way to run these? Or at least a write up somewhere?

Background: I found the instructions for updating the kernel to an i686 instruction set and it's either "do a bunch of stuff" or "run this script."
 

TWL

Kernel panic: Aiee.......
Chain729 said:
Is there an easy way to run these?
usualy just
cd /location_of_script
chmod u+x script
--- this makes the script executable
./script
Or at least a write up somewhere?
Google for Linux is a good place to start

Background: I found the instructions for updating the kernel to an i686 instruction set and it's either "do a bunch of stuff" or "run this script."
Which distro are you using? Most distros have i686 kernels. Just use your distros package manager to install it.
 

Chain729

CageKicker Extraordinaire
TWL said:
usualy just
cd /location_of_script
chmod u+x script
--- this makes the script executable
./script Google for Linux is a good place to start

Which distro are you using? Most distros have i686 kernels. Just use your distros package manager to install it.

Thanks. I'm still trying to figure Linux out.

FC6. Anaconda has a known issue of intalling the wrong kernel.
 

TWL

Kernel panic: Aiee.......
Chain729 said:
Thanks. I'm still trying to figure Linux out.

FC6. Anaconda has a known issue of intalling the wrong kernel.
RPM would be the package manager then. It's been awhile since I used a RPM based distros so the following may not be true.

I believe you should be able to download a i686 kernel RPM for FC6 and then enter the following:

cd /location_of_kernel_RPM
rpm -ivh kernel.rpm


Hopefully this should also add an entry for the new kernel into your boot loader [LILO or GRUB]. The next time you boot up you should be able to select between the old and new kernel. Select the new kernel and test it before you remove the old kernel.
 

unixpirate

Pitty Party
Chain729 said:
Thanks for the link. It explained things a bit for me, but I'm still too new to Linux that most of it was over my head. I appreciate it though.


I sent you a PM. Hit me up if you need assistance :yay:
 
Top