I've just installed MonoDevelop on my Ubuntu 20.04 and have an error running test project:
Debugger operation failed
ApplicationName='/usr/lib/gnome-terminal/gnome-terminal-server', CommandLine='--app-id mono.develop.idea2f83d0b35d44e09d67f33ce9074849', CurrentDirectory='', Native error= Cannot find the specified file
I googled it and find this solution, so I ran it on my system, but it still not works.
Here's console output after running bash script:
/Documents/C#$ sudo ./script.sh
mkdir: cannot create directory ‘gnome-terminal’: File exists
---------------------
Folder contents:
gnome-terminal-server
---------------------
gnome-terminal-server
ln: failed to create symbolic link './gnome-terminal-server': File exists
And this is my script:
cd ../..
cd /usr/lib
sudo mkdir gnome-terminal
cd gnome-terminal
echo "---------------------"
echo "Folder contents: "
ls
echo "---------------------"
ls
sudo ln -sv /usr/libexec/gnome-terminal-server
I'm quite new to Linux so any help would be highly appreciated.