From fe31e086e7c775f54fca892622bcb1229eeed13f Mon Sep 17 00:00:00 2001 From: Marco D'Agostini Date: Tue, 12 Feb 2019 18:05:12 -0500 Subject: [PATCH 01/18] --- ubuntu 18 fresh install.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 ubuntu 18 fresh install.md diff --git a/ubuntu 18 fresh install.md b/ubuntu 18 fresh install.md new file mode 100644 index 0000000..a69dd42 --- /dev/null +++ b/ubuntu 18 fresh install.md @@ -0,0 +1,21 @@ +## Packages +sudo apt-get install python-pip p7zip-full smplayer cmus speedtest-cli zsh curl wget git git-gui filezilla pavucontrol ufw servefile nmap +pip install youtube-dl + +## Web installs +docker #https://download.docker.com +sublimetext #https://download.sublimetext.com/ +chrome #https://www.chrome.com/ +syncthing #https://apt.syncthing.net/ + +## Change history-size +HISTSIZE=10000 +HISTFILESIZE=20000 + +## Gnome extensions +Caffeine +Dash to dock | sudo apt remove gnome-shell-extension-ubuntu-dock # https://github.com/micheleg/dash-to-dock/issues/643 +suspend button + +## Shortcuts +systemctl suspend \ No newline at end of file From 9146567c01da5eb1fb6934dda63d0e24f78f3cd8 Mon Sep 17 00:00:00 2001 From: Marco D'Agostini Date: Tue, 12 Feb 2019 18:06:38 -0500 Subject: [PATCH 02/18] --- ubuntu 18 fresh install.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/ubuntu 18 fresh install.md b/ubuntu 18 fresh install.md index a69dd42..79dc1bc 100644 --- a/ubuntu 18 fresh install.md +++ b/ubuntu 18 fresh install.md @@ -1,21 +1,21 @@ ## Packages -sudo apt-get install python-pip p7zip-full smplayer cmus speedtest-cli zsh curl wget git git-gui filezilla pavucontrol ufw servefile nmap -pip install youtube-dl +`sudo apt-get install python-pip p7zip-full smplayer cmus speedtest-cli zsh curl wget git git-gui filezilla pavucontrol ufw servefile nmap` +`pip install youtube-dl` ## Web installs -docker #https://download.docker.com -sublimetext #https://download.sublimetext.com/ -chrome #https://www.chrome.com/ -syncthing #https://apt.syncthing.net/ +- docker #https://download.docker.com +- sublimetext #https://download.sublimetext.com/ +- chrome #https://www.chrome.com/ +- syncthing #https://apt.syncthing.net/ ## Change history-size -HISTSIZE=10000 -HISTFILESIZE=20000 +`HISTSIZE=10000 +HISTFILESIZE=20000` ## Gnome extensions -Caffeine -Dash to dock | sudo apt remove gnome-shell-extension-ubuntu-dock # https://github.com/micheleg/dash-to-dock/issues/643 -suspend button +- Caffeine +- Dash to dock | sudo apt remove gnome-shell-extension-ubuntu-dock # https://github.com/micheleg/dash-to-dock/issues/643 +- suspend button ## Shortcuts systemctl suspend \ No newline at end of file From cfda6bb9bdbbbd1395733ceee7dcbc4446ec2f58 Mon Sep 17 00:00:00 2001 From: Marco D'Agostini Date: Tue, 12 Feb 2019 18:10:50 -0500 Subject: [PATCH 03/18] --- ubuntu 18 fresh install.md | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/ubuntu 18 fresh install.md b/ubuntu 18 fresh install.md index 79dc1bc..121b9d8 100644 --- a/ubuntu 18 fresh install.md +++ b/ubuntu 18 fresh install.md @@ -1,6 +1,8 @@ ## Packages -`sudo apt-get install python-pip p7zip-full smplayer cmus speedtest-cli zsh curl wget git git-gui filezilla pavucontrol ufw servefile nmap` -`pip install youtube-dl` +```bash +sudo apt-get install python-pip p7zip-full smplayer cmus speedtest-cli zsh curl wget git git-gui filezilla pavucontrol ufw servefile nmap +pip install youtube-dl +``` ## Web installs - docker #https://download.docker.com @@ -9,13 +11,15 @@ - syncthing #https://apt.syncthing.net/ ## Change history-size -`HISTSIZE=10000 -HISTFILESIZE=20000` +```bash +HISTSIZE=10000 +HISTFILESIZE=20000 +``` ## Gnome extensions - Caffeine - Dash to dock | sudo apt remove gnome-shell-extension-ubuntu-dock # https://github.com/micheleg/dash-to-dock/issues/643 - suspend button -## Shortcuts +## Custom shortcuts systemctl suspend \ No newline at end of file From 5c7e79a52495aa7b650dc5b90b0b1cb76ad5666c Mon Sep 17 00:00:00 2001 From: Marco D'Agostini Date: Mon, 9 Sep 2019 17:15:51 +0000 Subject: [PATCH 04/18] --- ubuntu 18 fresh install.md | 40 +++++++++++++++++++++++++++++--------- 1 file changed, 31 insertions(+), 9 deletions(-) diff --git a/ubuntu 18 fresh install.md b/ubuntu 18 fresh install.md index 121b9d8..3364fcf 100644 --- a/ubuntu 18 fresh install.md +++ b/ubuntu 18 fresh install.md @@ -1,25 +1,47 @@ -## Packages +## Update & Upgrade +```bash +sudo apt update && sudo apt upgrade -y +``` + +## Install Packages ```bash sudo apt-get install python-pip p7zip-full smplayer cmus speedtest-cli zsh curl wget git git-gui filezilla pavucontrol ufw servefile nmap pip install youtube-dl ``` ## Web installs -- docker #https://download.docker.com -- sublimetext #https://download.sublimetext.com/ -- chrome #https://www.chrome.com/ -- syncthing #https://apt.syncthing.net/ +- docker # https://download.docker.com +- VSCode # https://code.visualstudio.com/ +- chrome # https://www.chrome.com/ +- syncthing # https://apt.syncthing.net/ -## Change history-size +## Edit ~/.zshrc +### Change history-size ```bash HISTSIZE=10000 HISTFILESIZE=20000 ``` +### Add shortcut "Alt+:" [to iterate through arguments](https://medium.com/r/?url=https%3A%2F%2Fstackoverflow.com%2Fquestions%2F4009412%2Fhow-to-use-arguments-from-previous-command%2F55069846%2355069846) +```bash +autoload -Uz copy-earlier-word +zle -N copy-earlier-word +bindkey "^[:" copy-earlier-word +``` + +### Enable most +```bash +export PAGER=most +``` ## Gnome extensions - Caffeine -- Dash to dock | sudo apt remove gnome-shell-extension-ubuntu-dock # https://github.com/micheleg/dash-to-dock/issues/643 -- suspend button +- Dash to dock https://extensions.gnome.org/extension/307/dash-to-dock/ `sudo apt remove gnome-shell-extension-ubuntu-doc` https://github.com/micheleg/dash-to-dock/issues/643 +- suspend button NetSpeed https://extensions.gnome.org/extension/104/netspeed/ +- NetSpeed https://extensions.gnome.org/extension/104/netspeed/ ## Custom shortcuts -systemctl suspend \ No newline at end of file +- `systemctl suspend` +- Cmus https://medium.com/@madacol/configure-cmus-music-player-on-the-terminal-in-ubuntu-3c513d2d2cd0 + +## StartUp +- Cmus `gnome-terminal -- cmus` \ No newline at end of file From 34c851a40a6efe3a34d5e4f70292a207e735fd37 Mon Sep 17 00:00:00 2001 From: Marco D'Agostini Date: Mon, 9 Sep 2019 17:17:19 +0000 Subject: [PATCH 05/18] --- ubuntu 18 fresh install.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ubuntu 18 fresh install.md b/ubuntu 18 fresh install.md index 3364fcf..4e27147 100644 --- a/ubuntu 18 fresh install.md +++ b/ubuntu 18 fresh install.md @@ -6,7 +6,8 @@ sudo apt update && sudo apt upgrade -y ## Install Packages ```bash sudo apt-get install python-pip p7zip-full smplayer cmus speedtest-cli zsh curl wget git git-gui filezilla pavucontrol ufw servefile nmap -pip install youtube-dl + +pip install youtube-dl tldr ``` ## Web installs From a0759af1325694d02442840411bbe20ad83e9dd3 Mon Sep 17 00:00:00 2001 From: Marco D'Agostini Date: Mon, 9 Sep 2019 17:18:57 +0000 Subject: [PATCH 06/18] --- ubuntu 18 fresh install.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ubuntu 18 fresh install.md b/ubuntu 18 fresh install.md index 4e27147..78becca 100644 --- a/ubuntu 18 fresh install.md +++ b/ubuntu 18 fresh install.md @@ -22,7 +22,7 @@ pip install youtube-dl tldr HISTSIZE=10000 HISTFILESIZE=20000 ``` -### Add shortcut "Alt+:" [to iterate through arguments](https://medium.com/r/?url=https%3A%2F%2Fstackoverflow.com%2Fquestions%2F4009412%2Fhow-to-use-arguments-from-previous-command%2F55069846%2355069846) +### Add shortcut "Alt+:" [to iterate through arguments](https://stackoverflow.com/questions/4009412/how-to-use-arguments-from-previous-command/55069846#55069846) ```bash autoload -Uz copy-earlier-word zle -N copy-earlier-word From 0d3700772a16bb73901a1b3c4a614b7ea1c519f2 Mon Sep 17 00:00:00 2001 From: Marco D'Agostini Date: Mon, 9 Sep 2019 17:21:44 +0000 Subject: [PATCH 07/18] --- ubuntu 18 fresh install.md | 1 + 1 file changed, 1 insertion(+) diff --git a/ubuntu 18 fresh install.md b/ubuntu 18 fresh install.md index 78becca..b66edbf 100644 --- a/ubuntu 18 fresh install.md +++ b/ubuntu 18 fresh install.md @@ -15,6 +15,7 @@ pip install youtube-dl tldr - VSCode # https://code.visualstudio.com/ - chrome # https://www.chrome.com/ - syncthing # https://apt.syncthing.net/ +- Zsh-syntax-highlighting # https://github.com/zsh-users/zsh-syntax-highlighting/blob/master/INSTALL.md ## Edit ~/.zshrc ### Change history-size From c2a6c46063b876cbad7a751a8553c4c5ae22140a Mon Sep 17 00:00:00 2001 From: Marco D'Agostini Date: Mon, 9 Sep 2019 17:22:11 +0000 Subject: [PATCH 08/18] --- ubuntu 18 fresh install.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/ubuntu 18 fresh install.md b/ubuntu 18 fresh install.md index b66edbf..df5ef33 100644 --- a/ubuntu 18 fresh install.md +++ b/ubuntu 18 fresh install.md @@ -11,11 +11,11 @@ pip install youtube-dl tldr ``` ## Web installs -- docker # https://download.docker.com -- VSCode # https://code.visualstudio.com/ -- chrome # https://www.chrome.com/ -- syncthing # https://apt.syncthing.net/ -- Zsh-syntax-highlighting # https://github.com/zsh-users/zsh-syntax-highlighting/blob/master/INSTALL.md +- docker: https://download.docker.com +- VSCode: https://code.visualstudio.com/ +- chrome: https://www.chrome.com/ +- syncthing: https://apt.syncthing.net/ +- Zsh-syntax-highlighting: https://github.com/zsh-users/zsh-syntax-highlighting/blob/master/INSTALL.md ## Edit ~/.zshrc ### Change history-size From 33be9253f7559dacf8ea61246f0fd6499879e61e Mon Sep 17 00:00:00 2001 From: Marco D'Agostini Date: Sat, 12 Oct 2019 21:27:15 +0000 Subject: [PATCH 09/18] --- ubuntu 18 fresh install.md | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/ubuntu 18 fresh install.md b/ubuntu 18 fresh install.md index df5ef33..0f29c78 100644 --- a/ubuntu 18 fresh install.md +++ b/ubuntu 18 fresh install.md @@ -5,9 +5,10 @@ sudo apt update && sudo apt upgrade -y ## Install Packages ```bash -sudo apt-get install python-pip p7zip-full smplayer cmus speedtest-cli zsh curl wget git git-gui filezilla pavucontrol ufw servefile nmap +sudo apt-get install python3-pip zsh curl wget git +sudo apt-get install p7zip-full smplayer cmus speedtest-cli git-gui filezilla pavucontrol ufw servefile nmap fail2ban gimp most colordiff mosh gconf-editor byobu -pip install youtube-dl tldr +pip3 install youtube-dl tldr ``` ## Web installs @@ -18,11 +19,6 @@ pip install youtube-dl tldr - Zsh-syntax-highlighting: https://github.com/zsh-users/zsh-syntax-highlighting/blob/master/INSTALL.md ## Edit ~/.zshrc -### Change history-size -```bash -HISTSIZE=10000 -HISTFILESIZE=20000 -``` ### Add shortcut "Alt+:" [to iterate through arguments](https://stackoverflow.com/questions/4009412/how-to-use-arguments-from-previous-command/55069846#55069846) ```bash autoload -Uz copy-earlier-word From 30df4af44341624c222bdfa264fb73661fd0d3f6 Mon Sep 17 00:00:00 2001 From: Marco D'Agostini Date: Sat, 12 Oct 2019 21:28:22 +0000 Subject: [PATCH 10/18] --- ubuntu 18 fresh install.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ubuntu 18 fresh install.md b/ubuntu 18 fresh install.md index 0f29c78..9d4b7cd 100644 --- a/ubuntu 18 fresh install.md +++ b/ubuntu 18 fresh install.md @@ -6,7 +6,7 @@ sudo apt update && sudo apt upgrade -y ## Install Packages ```bash sudo apt-get install python3-pip zsh curl wget git -sudo apt-get install p7zip-full smplayer cmus speedtest-cli git-gui filezilla pavucontrol ufw servefile nmap fail2ban gimp most colordiff mosh gconf-editor byobu +sudo apt-get install p7zip-full smplayer cmus speedtest-cli git-gui filezilla pavucontrol ufw servefile nmap fail2ban gimp most colordiff mosh dconf-editor byobu pip3 install youtube-dl tldr ``` From 2ab24b64c4ebed1d8b17daf30376e7392832730c Mon Sep 17 00:00:00 2001 From: Marco D'Agostini Date: Sat, 12 Oct 2019 21:28:48 +0000 Subject: [PATCH 11/18] --- ubuntu 18 fresh install.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ubuntu 18 fresh install.md b/ubuntu 18 fresh install.md index 9d4b7cd..6968d1b 100644 --- a/ubuntu 18 fresh install.md +++ b/ubuntu 18 fresh install.md @@ -6,7 +6,7 @@ sudo apt update && sudo apt upgrade -y ## Install Packages ```bash sudo apt-get install python3-pip zsh curl wget git -sudo apt-get install p7zip-full smplayer cmus speedtest-cli git-gui filezilla pavucontrol ufw servefile nmap fail2ban gimp most colordiff mosh dconf-editor byobu +sudo apt-get install p7zip-full smplayer cmus speedtest-cli git-gui filezilla pavucontrol ufw servefile nmap fail2ban gimp most colordiff mosh dconf-editor pip3 install youtube-dl tldr ``` From 282373142edb30788d0e376b1a2a529360f7c9df Mon Sep 17 00:00:00 2001 From: Marco D'Agostini Date: Tue, 29 Oct 2019 01:15:28 +0000 Subject: [PATCH 12/18] --- ubuntu 18 fresh install.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ubuntu 18 fresh install.md b/ubuntu 18 fresh install.md index 6968d1b..290e3a3 100644 --- a/ubuntu 18 fresh install.md +++ b/ubuntu 18 fresh install.md @@ -11,6 +11,9 @@ sudo apt-get install p7zip-full smplayer cmus speedtest-cli git-gui filezilla pa pip3 install youtube-dl tldr ``` +## External Repositories +- Antimicro `sudo add-apt-repository ppa:mdeguzis/libregeek && sudo apt update` + ## Web installs - docker: https://download.docker.com - VSCode: https://code.visualstudio.com/ From 1c4319803b52b40e133da7f529a1dc2dd67c1803 Mon Sep 17 00:00:00 2001 From: Marco D'Agostini Date: Mon, 23 Dec 2019 20:54:24 +0000 Subject: [PATCH 13/18] --- ubuntu 18 fresh install.md | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/ubuntu 18 fresh install.md b/ubuntu 18 fresh install.md index 290e3a3..bf54020 100644 --- a/ubuntu 18 fresh install.md +++ b/ubuntu 18 fresh install.md @@ -12,7 +12,21 @@ pip3 install youtube-dl tldr ``` ## External Repositories -- Antimicro `sudo add-apt-repository ppa:mdeguzis/libregeek && sudo apt update` + +### Antimicro +```bash +sudo add-apt-repository ppa:mdeguzis/libregeek +``` +As of today, a bionic package is still not available, but the artful works!. + +`sudo nano /etc/apt/sources.list.d/mdeguzis-ubuntu-libregeek-bionic.list` Replace `bionic` with `artful` +```bash +sudo apt update +sudo apt install antimicro +``` + +https://github.com/AntiMicro/antimicro/issues +https://gist.github.com/madacol/19f8c71ba98f484a4294ccfe90e88e6e ## Web installs - docker: https://download.docker.com From 1e359614c72f445180783d6f7ff2d208a248a95d Mon Sep 17 00:00:00 2001 From: Marco D'Agostini Date: Mon, 23 Dec 2019 20:56:27 +0000 Subject: [PATCH 14/18] --- ubuntu 18 fresh install.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/ubuntu 18 fresh install.md b/ubuntu 18 fresh install.md index bf54020..ea63e19 100644 --- a/ubuntu 18 fresh install.md +++ b/ubuntu 18 fresh install.md @@ -17,16 +17,14 @@ pip3 install youtube-dl tldr ```bash sudo add-apt-repository ppa:mdeguzis/libregeek ``` -As of today, a bionic package is still not available, but the artful works!. +As of today, a bionic package is still not available, but the artful works!. https://github.com/AntiMicro/antimicro/issues `sudo nano /etc/apt/sources.list.d/mdeguzis-ubuntu-libregeek-bionic.list` Replace `bionic` with `artful` ```bash sudo apt update sudo apt install antimicro ``` - -https://github.com/AntiMicro/antimicro/issues -https://gist.github.com/madacol/19f8c71ba98f484a4294ccfe90e88e6e +Put config file https://gist.github.com/madacol/19f8c71ba98f484a4294ccfe90e88e6e in `~/.config/antimicro` ## Web installs - docker: https://download.docker.com From dc925d378f84fda2eee1dbbe987913d0ed0bc825 Mon Sep 17 00:00:00 2001 From: Marco D'Agostini Date: Tue, 14 Jan 2020 14:27:37 +0000 Subject: [PATCH 15/18] --- ubuntu 18 fresh install.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ubuntu 18 fresh install.md b/ubuntu 18 fresh install.md index ea63e19..1a0ccb2 100644 --- a/ubuntu 18 fresh install.md +++ b/ubuntu 18 fresh install.md @@ -6,7 +6,7 @@ sudo apt update && sudo apt upgrade -y ## Install Packages ```bash sudo apt-get install python3-pip zsh curl wget git -sudo apt-get install p7zip-full smplayer cmus speedtest-cli git-gui filezilla pavucontrol ufw servefile nmap fail2ban gimp most colordiff mosh dconf-editor +sudo apt-get install p7zip-full smplayer cmus speedtest-cli git-gui filezilla pavucontrol ufw servefile nmap fail2ban gimp most colordiff mosh dconf-editor fonts-noto & pip3 install youtube-dl tldr ``` From fd5ff13777ce14bdc45d39a614cd81752d9aaa7a Mon Sep 17 00:00:00 2001 From: Marco D'Agostini Date: Sat, 1 Feb 2020 22:25:43 -0500 Subject: [PATCH 16/18] Added apt packages `ncdu qcalc jq tor` --- ubuntu 18 fresh install.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ubuntu 18 fresh install.md b/ubuntu 18 fresh install.md index ea63e19..8945788 100644 --- a/ubuntu 18 fresh install.md +++ b/ubuntu 18 fresh install.md @@ -6,7 +6,7 @@ sudo apt update && sudo apt upgrade -y ## Install Packages ```bash sudo apt-get install python3-pip zsh curl wget git -sudo apt-get install p7zip-full smplayer cmus speedtest-cli git-gui filezilla pavucontrol ufw servefile nmap fail2ban gimp most colordiff mosh dconf-editor +sudo apt-get install p7zip-full smplayer cmus speedtest-cli git-gui filezilla pavucontrol ufw servefile nmap fail2ban gimp most colordiff mosh dconf-editor ncdu qcalc jq tor pip3 install youtube-dl tldr ``` From 80ce278b2beeababa9f0ddfeb45a78ffaa267905 Mon Sep 17 00:00:00 2001 From: Marco D'Agostini Date: Fri, 7 Feb 2020 14:50:38 -0500 Subject: [PATCH 17/18] Gnome extension: Dash to dock: Typo in the package that needs to be removed --- ubuntu 18 fresh install.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ubuntu 18 fresh install.md b/ubuntu 18 fresh install.md index 8945788..b3f3774 100644 --- a/ubuntu 18 fresh install.md +++ b/ubuntu 18 fresh install.md @@ -48,7 +48,7 @@ export PAGER=most ## Gnome extensions - Caffeine -- Dash to dock https://extensions.gnome.org/extension/307/dash-to-dock/ `sudo apt remove gnome-shell-extension-ubuntu-doc` https://github.com/micheleg/dash-to-dock/issues/643 +- Dash to dock https://extensions.gnome.org/extension/307/dash-to-dock/ `sudo apt remove gnome-shell-extension-ubuntu-dock` https://github.com/micheleg/dash-to-dock/issues/643 - suspend button NetSpeed https://extensions.gnome.org/extension/104/netspeed/ - NetSpeed https://extensions.gnome.org/extension/104/netspeed/ From 94acb98c2fdedc86defa42c5bb138c5d4d081acd Mon Sep 17 00:00:00 2001 From: Marco D'Agostini Date: Mon, 2 Mar 2020 21:05:01 -0500 Subject: [PATCH 18/18] Added sinkSwitcher --- ubuntu 18 fresh install.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ubuntu 18 fresh install.md b/ubuntu 18 fresh install.md index 14acc67..3b24824 100644 --- a/ubuntu 18 fresh install.md +++ b/ubuntu 18 fresh install.md @@ -26,6 +26,10 @@ sudo apt install antimicro ``` Put config file https://gist.github.com/madacol/19f8c71ba98f484a4294ccfe90e88e6e in `~/.config/antimicro` +### SinkSwitcher + +https://github.com/madacol/sinkSwitcher + ## Web installs - docker: https://download.docker.com - VSCode: https://code.visualstudio.com/