Skip to content

Instantly share code, notes, and snippets.

@AnmolTomer
Last active April 22, 2020 10:20
Show Gist options
  • Save AnmolTomer/93c9d888b9f85ba797e320eb2a9963f9 to your computer and use it in GitHub Desktop.
Save AnmolTomer/93c9d888b9f85ba797e320eb2a9963f9 to your computer and use it in GitHub Desktop.
Set up Ubuntu 18.04 LTS after Install. Install basic stuff for development environment, machine learning, deep learning, web development.

Setup Rclone

135  cd Downloads/
  136  curl -O https://downloads.rclone.org/rclone-current-linux-amd64.zip
  137  unzip rclone-current-linux-amd64.zip 
  138  cd rclone-v1.51.0-linux-amd64/
  139  sudo cp rclone /usr/bin/
  140  sudo chown root:root /usr/bin/rclone 
  141  sudo chmod 755 /usr/bin/rclone
  142  sudo mkdir -p /usr/local/share/man/man1
  143  sudo cp rclone.1 /usr/local/share/man/man1/
  144  sudo mandb
  145  rclone config # don't run just start and hit ctrl+c
  146  cp /media/cosmic/Data/Software/Installed/rclone/rclone.conf ~/.config/rclone
  # Copy from windows rclone conf
  147 rclone listremotes # To verify config
  
# Install rclone browser

  156  sudo add-apt-repository ppa:mmozeiko/rclone-browser
  157  sudo apt-get update
  158  sudo apt-get install rclone-browser
  
---

Rclone browser
https://github.com/kapitainsky/RcloneBrowser/releases
Other apps
284  sudo add-apt-repository ppa:ubuntuhandbook1/audacity
  285  sudo apt-get update
  286  sudo apt-get install audacity
  287  sudo add-apt-repository ppa:marten-baert/simplescreenrecorder
  288  sudo apt-get update
  289  sudo apt-get install simplescreenrecorder
  290  sudo snap install telegram-desktop
  sudo apt install speedtest-cli
  sudo snap install notepadqq

# Cuda [link](https://developer.nvidia.com/cuda-downloads?target_os=Linux&target_arch=x86_64&target_distro=Ubuntu&target_version=1804&target_type=deblocal)

- CUDNN [link](https://developer.nvidia.com/rdp/cudnn-download)
- Install Instructions [link](https://developer.nvidia.com/rdp/cudnn-download)
    {
    "window.zoomLevel": 2,
    "editor.suggestSelection": "first",
    "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
    "workbench.iconTheme": "material-icon-theme",
    "workbench.colorTheme": "SynthWave '84",
    "editor.formatOnSave": true,
    "synthwave84.brightness": 0.75,
    "window.titleBarStyle": "custom",
    "editor.minimap.enabled": false,
    "editor.fontLigatures": true,
    "editor.fontFamily": "'Fira Code','Droid Sans Mono', 'monospace', monospace, 'Droid Sans Fallback'",
    "terminal.integrated.shell.linux": "/usr/bin/zsh",
    "terminal.integrated.fontFamily": "'Source Code Pro for Powerline'",
    }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment