- Any live usb bootable.
- Alpine Linux minirootfs archive, we can get it here. We can choose
alpine-minirootfs-3.20.2-x86_64.tar.gz
. - Some partitions, for root system (/), efi (if you have uefi machine) and swap (optional).
- Basic commandline knowledge.
- Any live usb bootable.
- Fedora rootfs archive, we can get it here. It's better to choose the most update / latest archive.
- Some partitions, for root system (/), efi (if you have uefi machine) and swap (optional).
- Basic commandline knowledge.
Hello, couple years ago, I wanted to set and have a static IP, but due lack of knowledge I can't have it. Now I manage to set it and it's kinda work. Here are some methods I'm using.
I start with netplan. For netplan I just need to make this configuration :
-
Boot openbsd from linux's grub.
We can boot openbsd via linux's grub. These are how we can boot openbsd via linux's grub :
- Enter grub !
- Press "c" to enter grub shell !
- List all partitions using
ls
command !
-
Because I install openbsd at /dev/sda1, so my partition will be shown as "hd0,msdos1".
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
# dhcpcd service | |
type = process | |
command = /usr/bin/dhcpcd -B -M -j /var/log/dhcpcd-service.log wlp3s0 | |
before = network.target | |
depends-on = pre-network.target | |
restart = true | |
logfile = /var/log/dhcpcd.log |
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
#!/usr/bin/bash | |
window_list=$(wlrctl toplevel list | awk '{ print substr($0, index($0,$2)) }') | |
selected=$(echo "$window_list" | wofi -d) | |
wlrctl toplevel focus title:"$selected" | |
# Note : | |
# We need to use "title" rather than "app_id" to avoid window with same app_id. |
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
[Effect] | |
Name[en_GB]=Flip_Vertical | |
Name=Flip_Vertical | |
Comment[en_GB]=Flip the image vertically (Silly fix for upside down webcam) | |
Comment=Flip the image vertically (Silly fix for upside down webcam) | |
Category=Geometry; | |
PipelineDescription=videoflip video-direction=vert |