Visual Studio Code enabled official Linux repositories on February 2017 (v1.10) sudo add-apt-repository -y “deb https://packages.microsoft.com/repos/vscode stable main ” sudo apt update sudo apt -y install code You can upgrade / dist-upgrade as usual sudo apt -y upgrade sudo apt -y dist-upgrade
How to get the latest LibreOffice version using apt-get or apt in Linux Debian Buster
To get the latest LibreOffice version using apt-get or apt in Linux Debian Buster you need first to clean the LibreOffice installed: sudo apt remove –purge libreoffice* sudo apt clean sudo apt autoremove Then you need to add backports to your sources listhttp://backports-master.debian.org/Instructions/ then: sudo apt -t buster-backports install libreoffice
How to change LCD brightness from command line Debian Ubuntu Mint Linux
How to change LCD brightness from command line Debian Ubuntu Mint Linux
Find and Replace using Sed Unix command
Sed is a UNIX stream editor that can be used to filter text files This can be extremely useful if you have to run a Find and Replace on a string of text across a large file. I find this to be much more efficient than using a Find and …