Nginx

Install nginx sudo apt install nginx Install certbot sudo apt install certbot python3-certbot-nginx Configuring nginx sudo ufw app list The command will list available profiles. If https is not allowed, use the following command ufw allow Nginx HTTPS Check status sudo ufw status Make sure that nginx is running systemctl status nginx Setup hosting cd /var/www mkdir your-site.com cd /etc/cd /etc/nginx/sites-available/ cp default your-site.com edit config nano your-site.com server_name your-site....

December 10, 2024 · 1 min · 107 words · Me

Terminal Session Manager

Install screen sudo pacman -Sy screen create a session screen -S session-name list sessions screen -ls detach from session screen -d session-name attah session screen -r session-name

December 10, 2024 · 1 min · 27 words · Me

Network Manjaro

Sometimes, simply restarting the Network Manager can solve connectivity issues: sudo systemctl restart NetworkManager Check if the drivers are properly loaded inxi -N Ensure that the wireless device is not blocked by rfkill switch dmesg | grep -i wifi The NetworkManager itselft could cause the issue. You may want to try another manager like wicd netctl

December 10, 2024 · 1 min · 56 words · Me

Pygpg

issue 1 after running pygpg on manjaro, it crashed with the error `GLIBCXX_3.4.30’ cannot be found solution conda install -c conda-forge gcc=12.1.0

December 10, 2024 · 1 min · 22 words · Me

Record Screencast on Linux

Tool to record screencast in Linux SimpleScreenRecorder Install on manjaro $ sudo snap install simplescreenrecorder

December 10, 2024 · 1 min · 15 words · Me