How to upgrade Fedora 29 to Fedora 30

Upgrading Fedora 29 to Fedora 30 involves several steps and it’s recommended to have a backup of your important files before starting the upgrade process. Verify your current version: Before upgrading, you should check the version of Fedora that you are currently running by running the command cat /etc/fedora-release. Update your current version: Before upgrading, … Read more

Linux disable firewall command

The specific command to disable a firewall on Linux depends on the firewall software that is currently in use. Some common firewall software on Linux include: iptables: sudo iptables -F sudo iptables -X sudo iptables -t nat -F sudo iptables -t nat -X sudo iptables -t mangle -F sudo iptables -t mangle -X sudo iptables … Read more

Arch Linux Change Hostname (computer name)

To change the hostname (computer name) on Arch Linux, you can use the hostnamectl command or edit the /etc/hostname file directly. Using the hostnamectl command: sudo hostnamectl set-hostname new_hostname Editing the /etc/hostname file: sudo nano /etc/hostname change the hostname to your desired hostname save the file and exit update the hostname in /etc/hosts file sudo … Read more