This commit is contained in:
AntoXa PRO 2024-01-09 16:27:16 +03:00
parent 38ac58fac7
commit 9abf58ed2a
11 changed files with 63 additions and 1 deletions

2
arch-install.md Normal file → Executable file
View File

@ -110,7 +110,7 @@ reflector -c Russia -c Belarus -a 5 --sort rate --save /etc/pacman.d/mirrorlist
### Install base packages
~~~
pacstrap /mnt base linux linux-firmware base-devel btrf-progs dhcpcd iwd vim terminus-font
pacstrap /mnt base linux linux-firmware base-devel btrfs-progs dhcpcd iwd vim terminus-font
~~~
### Generating a partition mount file

0
arch-post-install.md Normal file → Executable file
View File

0
criptsetup.md Normal file → Executable file
View File

8
dwm.md Executable file
View File

@ -0,0 +1,8 @@
# Install.
~~~
cd /opt
sudo git clone https://git.suckless.org/dwm
cd dwm
sudo make clean install
~~~

0
letsencrypt.md Normal file → Executable file
View File

0
pass.md Normal file → Executable file
View File

39
qemu.md Executable file
View File

@ -0,0 +1,39 @@
# QEMU
## Install libs.
~~~
sudo pacman -S qemu-full virt-manager libvirt
~~~
## Configure libvirt.
~~~
sudo virsh -c qemu:///system net-autostart default
# or sudo virsh net-start default
~~~
## Create virtual disk.
~~~
qemu-img create -f qcow2 /path/virtual/disk.qcow 100G
~~~
## Install img.
~~~
qemu-system-x86_64 -hda /path/virtual/disk.qcow \
-boot d -cdrom /path/file.iso \
-enable-kvm \
-m 4096 \
-smp 4
# -nographic \
# -virtfs local,path=/path/my/folder,mount_tag=host0,security_model=mapped,id=host0
~~~
## Run virtual.
~~~
qemu-system-x86_64 -hda /path/virtual/disk.qcow -m 2048
~~~

8
st.md Executable file
View File

@ -0,0 +1,8 @@
# Install.
~~~
cd /opt
sudo git clone https://git.suckless.org/st
cd st
sudo make clean install
~~~

0
touchpad.md Normal file → Executable file
View File

0
wireguard.md Normal file → Executable file
View File

7
xorg.md Executable file
View File

@ -0,0 +1,7 @@
# Install.
~~~
pacman -S xorg-server xorg-xinit libx11 libxinerama libxft webkit2gtk
vim .xinitrc
> exec dwm
~~~