60 lines
2.7 KiB
Markdown
Raw Normal View History

2021-11-11 18:10:48 -08:00
# Cloning the repository
1. Get the SSH key. Save the content of the `.ssh/id_rsa` file to `~/.ssh/id_rsa`
2. Restrict the permissions for the file with `chmod 600 ~/.ssh/id_rsa`
3. Add the key to the agent:
```bash
eval $(ssh-agent -s) && \
ssh-add ~/.ssh/id_rsa
```
4. Clone the repo with `git clone git@github.com:Jafner/dotfiles.git ~/Git/dotfiles`
2021-11-11 20:20:47 -08:00
5. Place the dotfiles where they need to be with `chmod +x install_dotfiles.sh && ./install_dotfiles.sh`
2021-11-11 22:00:53 -08:00
# Other Stuff
2021-11-12 09:19:11 -08:00
## Autostart
1. Set Spotify, PulseEffects, and Ferdi to start automatically.
2. `chmod +x window_reposition.sh`
2021-11-12 11:00:23 -08:00
3. `sudo cp .scripts/window_reposition.sh /usr/bin/window_reposition`
2021-11-12 09:19:11 -08:00
3. Run the window_reposition script at startup.
2021-11-11 22:00:53 -08:00
## Tiling and corner-snapping
Using GNOME, disable all extensions. Install [Tiling Assistant](https://extensions.gnome.org/extension/3733/tiling-assistant/)
2021-11-12 09:19:11 -08:00
Set Windows and Screen Edges gaps to 12px.
## Virtualization
2021-11-12 10:50:38 -08:00
2021-11-16 11:05:20 -08:00
1. Install necessary packages.
`sudo pacman -S virt-manager qemu vde2 ebtables dnsmasq bridge-utils openbsd-netcat ovmf`
2. Prepare the bootloader (GRUB)
```bash
sudo sed -i 's/GRUB_CMDLINE_LINUX_DEFAULT="quiet splash apparmor=1 security=apparmor udev.log_priority=3"/GRUB_CMDLINE_LINUX_DEFAULT="quiet splash apparmor=1 security=apparmor amd_iommu=on iommu=pt udev.log_priority=3"/' /etc/default/grub && \
sudo grub-mkconfig -o /boot/grub/grub.cfg
```
3. Configure `libvirtd`
2021-11-12 10:50:38 -08:00
```bash
sudo sed -i 's/#unix_sock_group = "libvirt"/unix_sock_group = "libvirt"/' /etc/libvirt/libvirtd.conf && \
sudo sed -i 's/#unix_sock_rw_perms = "0770"/unix_sock_rw_perms = "0770"/' /etc/libvirt/libvirtd.conf && \
sudo bash -c 'echo "log_filters=\"1:qemu\"" >> /etc/libvirt/libvirtd.conf' && \
sudo bash -c 'echo "log_outputs=\"1:file:/var/log/libvirt/libvirtd.log\"" >> /etc/libvirt/libvirtd.conf' && \
sudo usermod -aG libvirt $USER && \
sudo systemctl enable libvirtd && \
sudo systemctl start libvirtd && \
sudo sed -i 's/#user = "root"/user = "joey"/' /etc/libvirt/qemu.conf && \
sudo sed -i 's/#group = "root"/group = "joey"/' /etc/libvirt/qemu.conf && \
sudo systemctl restart libvirtd
```
2021-11-12 11:00:23 -08:00
2021-11-16 11:05:20 -08:00
4. Dump the GPU vbios.
Run the script to dump the vbios.
2021-11-12 22:57:37 -08:00
2021-11-16 11:05:20 -08:00
5. Patch the GPU vbios with Bless Hex Editor.
Follow [Mutahar's guide](https://youtu.be/BUSrdUoedTo?t=874) (timestamped) for this bit.
Save the patched version as `vbios_patched.rom`. Restrict its permissions with `chmod 660 vbios_patched.rom && sudo chown joey:joey vbios_patched.rom` then copy it to the share folder with `sudo mkdir /usr/share/vbios && sudo cp vbios_patched.rom /usr/share/vbios/vbios.rom`
2021-11-15 19:58:24 -08:00
2021-11-16 11:05:20 -08:00
6. Set up the VM.
Follow page 5 of the [RisingPrism wiki](https://gitlab.com/risingprismtv/single-gpu-passthrough/-/wikis/) for details on configuring the VM.
2021-11-12 22:57:37 -08:00
2021-11-16 11:05:20 -08:00
7. Reboot to effect the changes we made to the bootloader.