test
This commit is contained in:
parent
38ac58fac7
commit
9abf58ed2a
2
arch-install.md
Normal file → Executable file
2
arch-install.md
Normal file → Executable 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
0
arch-post-install.md
Normal file → Executable file
0
criptsetup.md
Normal file → Executable file
0
criptsetup.md
Normal file → Executable file
8
dwm.md
Executable file
8
dwm.md
Executable 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
0
letsencrypt.md
Normal file → Executable file
39
qemu.md
Executable file
39
qemu.md
Executable 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
8
st.md
Executable 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
0
touchpad.md
Normal file → Executable file
0
wireguard.md
Normal file → Executable file
0
wireguard.md
Normal file → Executable file
Loading…
Reference in New Issue
Block a user