Wrigs

Dronebot Workshop Linux Cheatsheet

Jan 7th, 2021 (edited)
234
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.76 KB | None | 0 0
  1. See article at https://dronebotworkshop.com/linux-workstation
  2.  
  3. ---Update Linux----
  4. ---Run before installing software----
  5.  
  6. sudo apt update
  7. sudo apt upgrade
  8.  
  9.  
  10. ---Remove Caps Lock----
  11. ---Add to Startup Manager----
  12.  
  13. xmodmap -e "keycode 66 = Shift_L NoSymbol Shift_L"
  14.  
  15.  
  16. ---Install ChaseApp----
  17.  
  18. sudo snap install chaseapp
  19.  
  20.  
  21. ---Arduino IDE from Snap Store----
  22. ---See article for manual installation details----
  23.  
  24. sudo snap install arduino
  25.  
  26. ---Arduino IDE Download Move and change folder
  27. ---Check version number of your IDE and change accordingly
  28.  
  29. sudo mv arduino-1.8.13 /opt
  30. cd /opt/arduino-1.8.13
  31.  
  32. ---Arduino IDE install
  33. ---Check version number of your IDE and change accordingly
  34.  
  35. sudo ./install.sh
  36.  
  37. ---Arduino IDE USB Port Fix----
  38. ---Replace <username> with your username----
  39. ---Verify that "dialout" is correct group----
  40.  
  41. sudo usermod -a -G dialout <username>
  42.  
  43.  
  44. ---Install Visual Studio Code----
  45. ---Add Python3 Virtual Environment first----
  46.  
  47. sudo apt-get install python3-venv
  48. sudo snap install --classic code
  49.  
  50. ---Install PyCharm Python Editor----
  51.  
  52. sudo snap install pycharm-community --classic
  53.  
  54.  
  55. ---Install Thonny IDE Python Editor----
  56.  
  57. bash <(wget -O - https://thonny.org/installer-for-linux)
  58.  
  59.  
  60. ---Install Geany Text Editor----
  61.  
  62. sudo apt-get install geany
  63.  
  64.  
  65. ---Install Meld file compare tool----
  66.  
  67. sudo apt-get install -y meld
  68.  
  69.  
  70. ---Install Balena Etcher USB & SD Card Burner----
  71.  
  72. echo "deb https://deb.etcher.io stable etcher" | sudo tee /etc/apt/sources.list.d/balena-etcher.list
  73. sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 379CE192D401AB61
  74. sudo apt update
  75. sudo apt install balena-etcher-electron
  76.  
  77.  
  78. ---Install GitCola Git client----
  79.  
  80. sudo apt-get install git-cola
  81.  
  82.  
  83. ---Install FileZilla FTP----
  84.  
  85. sudo apt install filezilla
  86.  
  87.  
  88. ---Install XTerm terminal----
  89.  
  90. sudo apt-get install -y xterm
  91.  
  92.  
  93. ---Install Angry IP Scanner----
  94. ---Download 64-bit DEB file and install with Ubuntu Installer----
  95.  
  96. https://angryip.org/download/#linux
  97.  
  98.  
  99. ---Install KiCad PCB Editor----
  100.  
  101. sudo add-apt-repository --yes ppa:kicad/kicad-5.1-releases
  102. sudo apt update
  103. sudo apt install --install-recommends kicad
  104.  
  105.  
  106. ---Install EasyEDA PCB & Schematic Editor----
  107. ---Download install program from https://easyeda.com/page/download
  108. ---Extract and open Terminal in extracted folder
  109.  
  110. sudo bash install.sh
  111.  
  112.  
  113. ---Install VLC Media Player----
  114.  
  115. sudo snap install vlc
  116.  
  117.  
  118. ---Install Shutter screen snapshot tool----
  119. ---Optional Gnome Web Photo for web screenshots----
  120.  
  121. sudo add-apt-repository ppa:linuxuprising/shutter
  122. sudo apt update
  123. sudo apt install shutter
  124.  
  125. sudo apt install gnome-web-photo
  126.  
  127.  
  128. ---Install Peek animated GIF recorder----
  129.  
  130. sudo add-apt-repository ppa:peek-developers/stable
  131. sudo apt update
  132. sudo apt install peek
Add Comment
Please, Sign In to add comment