https://www.youtube.com/watch?v=-NwWE9YFFIg
Download unity hub from https://unity3d.com/get-unity/download
Open terminal and change permissions
chmod a+rwx UnityHub.AppImage
Double click to open UnityHub
To solve "not enough space issue", launch Unity Hub using this below command.
TEMP=~/tmp ./UnityHub.AppImage
Note: Change the Unity installation path from Unity Hub settings. By default Unity is installed in Root Folder.
- Add AnyDesk repository
cat > /etc/yum.repos.d/AnyDesk-Fedora.repo << "EOF"
[anydesk]
name=AnyDesk Fedora - stable
baseurl=http://rpm.anydesk.com/fedora/$basearch/
gpgcheck=1
repo_gpgcheck=1
gpgkey=https://keys.anydesk.com/repos/RPM-GPG-KEY
EOF
- Install Anydesk
sudo dnf install anydesk
- Solve connection issue
sudo yum install lightdm lightdm-gtk
sudo systemctl disable gdm.service
sudo systemctl enable lightdm.service
- Reboot.
reboot
Install gnome for extra settings & customization.
sudo install gnome-tweaks
- Install RabbitSVN with dependencies
- Relocate RabbitVCS.py to enable menu options in nautilus.
- Restart nautilus.
sudo dnf install python3-rabbitvcs rabbitvcs-nautilus nautilus-python
mkdir -p ~/.local/share/nautilus-python/extensions
sudo cp /usr/share/nautilus-python/extensions/RabbitVCS.py /home/.local/share/nautilus-python/extensions
sudo rm /usr/share/nautilus-python/extensions/RabbitVCS.py
nautilus -q
svn status
svn commit -m "COMMIT MESSAGE"
- Create a "svnignore.txt"
.idea
*.csproj
*.sln*
Builds
Library
Logs
obj
UserSettings
- Execute this command to add files to ignore list.
svn propset svn:ignore -F svnignore.txt .
- Execute this command to delete removed files from svn.
svn st | grep ! | cut -d! -f2| sed 's/^ *//' | sed 's/^/"/g' | sed 's/$/"/g' | xargs svn rm
Note: This command will not work with folder names with spaces.