diff options
-rw-r--r-- | gentoomanual.html | 7 | ||||
-rw-r--r-- | kernel.html | 4 | ||||
-rw-r--r-- | kvm.html | 27 | ||||
-rw-r--r-- | people.html | 1 | ||||
-rw-r--r-- | projects.html | 2 |
5 files changed, 39 insertions, 2 deletions
diff --git a/gentoomanual.html b/gentoomanual.html index 6ffc7a1..9d00e98 100644 --- a/gentoomanual.html +++ b/gentoomanual.html @@ -509,6 +509,13 @@ crontab /etc/crontab</code></pre> <p>And finally unmount your disk with</p> <p><code>umount -R /mnt/gentoo</code></p> <p>Now, reboot your system with the <code>reboot</code> command and enjoy your base system install.</p> + + <h3>References</h3> + <ul> + <li><a href="https://wiki.gentoo.org/wiki/Handbook:AMD64/Full/Installation"><em>Gentoo Linux</em> - Gentoo Linux amd64 Handbook: Installing Gentoo</a>;</li> + <li><a href="https://youtu.be/6yxJoMa05ZM"><em>Mental Outlaw</em> - Full Gentoo Installation - Big Brain Edition</a>;</li> + <li><a href="https://youtu.be/3RdmN87mSuQ"><em>DistroTube</em> - Installing Gentoo Linux in Virtualbox</a>.</li> + </ul> </div> <div id="footer"> <div id="contact"> diff --git a/kernel.html b/kernel.html index e2978ca..2c7ff5c 100644 --- a/kernel.html +++ b/kernel.html @@ -195,7 +195,9 @@ make O=build ARCH=arm64 CC=clang CLANG_TRIPLE=aarch64-linux-gnu- CROSS_COMPILE=a </ol> <h2>References</h2> - <a href="https://forum.xda-developers.com/t/guide-how-to-build-a-samsung-kernel-july-30-2016.3429355/">[GUIDE] How to build a Samsung Kernel July 30, 2016</a> + <ul> + <li><a href="https://forum.xda-developers.com/t/guide-how-to-build-a-samsung-kernel-july-30-2016.3429355/"><em>The Sickness</em> at XDA-Developers - [GUIDE] How to build a Samsung Kernel July 30, 2016</a>.</li> + </ul> </div> <div id="footer"> @@ -98,6 +98,33 @@ <h3>Finishing Installation</h3> <p>Now that you have everything setup to run the VM, just hit <code>Finish</code> or <code>Begin Installation</code>.</p> + + <h3>Extra: Shared Linux VM folder</h3> + <h4>Create a shared folder</h4> + <p>In order to use a shared folder between the host machine and the guest VM, you must first create a folder in your filesystem and `chmod 777` it.</p> + <pre><code>mkdir ~/KVM_Share</code></pre> + + <h4>Adding the shared folder has a filesystem</h4> + <p>Now open virt-manager, got to your virtual machine and under the virtual hardware tab, click on `Add Hardware`, select filesystem and in the driver option, select the virtio-9p option.</p> + <p>In the source path you are going to put the complete path to the host machine shared folder and in the target path you should type where the filesystem should exist inside the guest VM.</p> + <p>For this instance we are going to set the source path to <code>~/KVM_Share</code> and the target path to <code>/shared</code>.</p> + + <h4>Mounting the shared folder</h4> + <p>Boot your guest VM and create a folder anywhere in your filesystem where you will mount the shared folder to.</p> + <pre><code>mkdir ~/hostfiles</code></pre> + <p>Now, if you type: <code>sudo mount -t 9p -o trans=virtio /shared ~/hostfiles</code>, the shared folder will be mounted.</p> + + <h4>Auto mount on startup</h4> + <p>Now if you want the guest VM to auto mount the shared folder everytime you boot it, you just have to add the following line to your guest VM <code>/etc/fstab</code> file:</p> + <p><code>/shared /home/user/hostfiles 9p trans=virtio,version=9p2000.L,rw 0 0</code></p> + <p><strong>WARNING!!! The mounted folder path must be an absolute path!</strong></p> + + <h3>References:</h3> + <ul> + <li><a href="https://youtu.be/p1d_b_91YlU"><em>DistroTube</em> - Virt-Manager Is The Better Way To Manage VMs</a>;</li> + <li><a href="https://computingforgeeks.com/enable-tpm-on-kvm-and-install-windows/"><em>รteyo, Klinsmann</em> at Computing for Geeks - How To Enable TPM 2.0 on KVM and install Windows 11</a>;</li> + <li><a href="https://ostechnix.com/setup-a-shared-folder-between-kvm-host-and-guest/"><em>Sk</em> at OSTECHNIX - Setup A Shared Folder Between KVM Host And Guest</a>.</li> + </ul> </div> <div id="footer"> diff --git a/people.html b/people.html index 30964ff..409f869 100644 --- a/people.html +++ b/people.html @@ -28,6 +28,7 @@ <ul> <li><a href="https://codeyarns.com/">Ashwin Nanjappa</a></li> <li><a href="https://blog.cryptographyengineering.com/">Criptography Engineering</a></li> + <li><a href="https://distro.tube/">DistroTube</a></li> <li><a href="https://drewdevault.com/">Drew DeVault's blog</a></li> <li><a href="https://ericmurphy.xyz/">Eric Murphy</a></li> <li><a href="https://g.sicp.me/">Gentoomen</a></li> diff --git a/projects.html b/projects.html index 8a01e46..030bc7d 100644 --- a/projects.html +++ b/projects.html @@ -24,7 +24,7 @@ </nav> </div> <div id="content"> - <h2>Projects from Scratch ๐</h2> + <h2>Projects ๐</h2> <ul> <li><a href="https://github.com/rafa-99/abi">abi</a></li> <li><a href="https://github.com/rafa-99/cv">cv</a></li> |