Skip to content

Instantly share code, notes, and snippets.

View Blyatgorod's full-sized avatar

Blyatgorod

  • The Other Side Of The Pond
View GitHub Profile
@en0ndev
en0ndev / monodevelop_solution.md
Last active March 6, 2024 23:41
MONODEVELOP - DEBUGGER OPERATION FAILED ON LINUX UBUNTU

Monodevelop - Debugger Operation Failed on Linux Ubuntu

Issue:

ApplicationName='/usr/lib/gnome-terminal-server', CommandLine='--app-id mono.develop.ide963f767d119495a8eabaf1d66c8049f',CurrentDirectory=",Native error= Cannot find the specified file

Video:

https://www.youtube.com/watch?v=P9XjTF57iyg

@waleedahmad
waleedahmad / post_install.sh
Last active February 11, 2025 17:52
Ubuntu post installation script for installing software of your choice.
#!/bin/bash
if [[ $EUID -ne 0 ]]; then
echo "This script must be run as root"
exit 1
else
#Update and Upgrade
echo "Updating and Upgrading"
apt-get update && sudo apt-get upgrade -y