π¦
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
SPICE_PORT=5924 | |
qemu-system-x86_64 \ | |
-daemonize \ | |
-localtime \ | |
-cpu host \ | |
-enable-kvm \ | |
-hda /home/mvlabat/qemu/WindowsVM.img \ | |
-hdb /dev/sda3 \ | |
-net nic -net user,hostname=windowsvm \ |
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
mount -o loop disk1.iso /mnt/iso |
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
mount /dev/sdb3 /mnt/gentoo # Use your system root device | |
mount -t proc proc /mnt/gentoo/proc/ | |
mount --rbind /sys /mnt/gentoo/sys/ | |
mount --rbind /dev /mnt/gentoo/dev/ | |
chroot /mnt/gentoo /bin/bash | |
source /etc/profile | |
export PS1="(chroot) $PS1" |
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
# Rebuild only | |
make modules_prepare | |
make -j8 # Threads count | |
make modules_install | |
make install | |
#make modules_prepare && make -j8 && make modules_install && make install |
NewerOlder