$ xrandr -o left
$ xrandr -o right
$ xrandr -o inverted
$ xrandr -o normal
$ xrandr -o left
$ xrandr -o right
$ xrandr -o inverted
$ xrandr -o normal
sudo dnf --refresh updatesudo dnf upgrade -y
sudo dnf install yum-utilssudo yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo
sudo dnf install docker-ce docker-ce-cli containerd.io docker-compose-plugin -y
sudo systemctl enable --now docker
sudo usermod -G docker -a myuser
newgrp
docker versiondocker compose version
I have this issue whereby a laptop of mine, which is running Linux Mint 21.2, was unable to connect to my 2.4GHz wife connection. I have no issue connecting to the 5GHz connection, only 2.4Ghz is having issue. I turned to linux mint forum, and found this post, which explained the issue, and the solution was to change my backend wifi device from wpa-supplicant to iwd. It seems that the current wifi daemon at that time, which was wpasupplicant was having issue connecting to 2.4GHz wifi connection.
Here are the steps:
1. Install iwd
sudo apt update && sudo apt install iwd -y
2. Create a configuration file in /etc/NetworkManager/conf.d/wifi-backend.conf
sudo nano /etc/NetworkManager/conf.d/wifi-backend.conf
3. Add in below setting
[device]
wifi.backend=iwd
4. Save and exit nano by pressing ctrl-o and then ctrl-x
5. Stop and disable wpa_supplicant daemon
sudo systemctl disable --now wpa_supplicant
6. Start and enable iwd
sudo systemctl enable --now iwd
7. Restart NetworkManager daemon
sudo systemctl restart NetworkManager
And you are good to go. You should now be able to connect to the 2.4GHz wireless, without any issue.
$ sudo apt update && sudo apt install lxc -y
$ sudo ufw allow in on lxcbr0$ sudo ufw route allow in on lxcbr0$ sudo ufw route allow out on lxcbr0
$ sudo lxc-create -n u1 -t download
$ sudo lxc-create -n u2 -t download -- -d almalinux -r 8 -a amd64
$ sudo lxc-ls
$ sudo lxc-ls -f
$ sudo lxc-start u1$ sudo lxc-start u2
$ sudo lxc-attach u1
$ sudo lxc-stop u1$ sudo lxc-destroy u1
$ unzip mybigfile.zip
$ sudo apt update && sudo apt install fastjar -y
$ jar xvf mybigfile.zip
![]() |
Error when extracting using jar command |
$ sudo apt update && sudo apt install 7zip -y
$ 7z x mybigfile.zip
![]() |
Error when extracting using 7z command |