Last active
August 29, 2015 14:27
-
-
Save AlexKMDev/e78c797139a7c8010267 to your computer and use it in GitHub Desktop.
install broadcom proprietary wi-fi drivers on fresh Ubuntu installation without ethernet connection using chroot in livecd environment
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# in livecd | |
mount /dev/sda2 /target # mount root filesystem | |
mount -t proc proc /target/proc/ | |
mount -t sysfs sys /target/sys/ | |
mount -o bind /dev /target/dev/ | |
chroot /target | |
# in chroot | |
echo "nameserver 8.8.8.8" > /etc/resolv.conf | |
apt-get update | |
apt-get install bcmwl-kernel-source | |
exit | |
# in livecd | |
reboot | |
# in fresh installation | |
apt-get install --reinstall bcmwl-kernel-source |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment