Yes.
I suppose you use the 64bit slackel version.
Boot with the live usb and connect to internet, your wireless connection.
Then open pcmafm and click on hard disk drive to mount it. Copy the mount point to use it bellow in TARGET=
NOTE: Change TARGET=/run/media/djemos/00183d49-7229-4275-aea4-af7eb4775089 with your mount point of your hard disk drive in the script bellow.
Copy the following code and save it to a file named chroot-sl.sh in your ~/ directory
Code: Select all
#! /bin/sh
TARGET=/run/media/djemos/00183d49-7229-4275-aea4-af7eb4775089
mount -o bind /proc $TARGET/proc
mount -o bind /sys $TARGET/sys
mount -o bind /dev $TARGET/dev
mount -o bind /tmp $TARGET/tmp
mount --bind /etc/resolv.conf $TARGET/etc/resolv.conf
chroot $TARGET /bin/bash -l
Now run in a terminal
sudo sh chroot-sl.sh
You are in the chroot environment in your hard disk installation and also have internet.
run
slapt-get -u
slapt-get -i --reinstall kernel-headers kernel-huge kernel-modules
update-grub
type exit
NOTE: replace /run/media/djemos/00183d49-7229-4275-aea4-af7eb4775089 with your mount point of your hard disk drive
type
sudo umount /run/media/djemos/00183d49-7229-4275-aea4-af7eb4775089/dev
sudo umount /run/media/djemos/00183d49-7229-4275-aea4-af7eb4775089/proc
sudo umount /run/media/djemos/00183d49-7229-4275-aea4-af7eb4775089/sys
sudo umount /run/media/djemos/00183d49-7229-4275-aea4-af7eb4775089/tmp
sudo umount /run/media/djemos/00183d49-7229-4275-aea4-af7eb4775089/etc/resolv.conf
Then
reboot
unplug your live usb.
boot in your hard disk system.