Forward from localhost to the outside world
sudo socat -d -d TCP-L:8500,bind=<node IP address>,fork TCP:localhost:8500
Fedora Upgrade
First run this command and reboot your computer:
sudo dnf upgrade --refresh
Install the dnf-plugin-system-upgrade package if it is not currently installed:
sudo dnf install dnf-plugin-system-upgrade
Download the updated packages:
sudo dnf system-upgrade download --refresh --releasever=<your destination version>
If some of your packages have unsatisfied dependencies, the upgrade will refuse to continue until you run it again with an extra
--allowerasing
option.Run the upgrade process:
sudo dnf system-upgrade reboot
Gnome Icon example
cat ~/.local/share/applications/spotify.desktop
[Desktop Entry]
Type=Application
Encoding=UTF-8
Name=Spotify
Comment=Spotify
Icon=/home/mike/.local/share/applications/spotify.png
Exec=/var/lib/snapd/snap/bin/spotify
Terminal=false
Categories=Tags;Describing;Application
Search and delete directories
find . -type d -name "<directory name>" -exec rm -rf {} +