Installing a Code Editor From the Terminal

Опубликовано: 25 Июль 2026
на канале: OpenEMR
1,052
4

Here's the commands you'll need:

wget -qO - https://download.sublimetext.com/subl... | sudo apt-key add -

echo "deb https://download.sublimetext.com apt/stable/" | sudo tee /etc/apt/sources.list.d/sublime-text.list

sudo apt update

sudo apt install sublime-text


Here's a link discussing the best code editors for development in PHP.
https://www.guru99.com/best-php-edito...


wget resources:
https://www.gnu.org/software/wget/man...
https://tipsonubuntu.com/2017/05/30/i...
https://itsfoss.com/sublime-text-3-li...

About piping in Linux
https://www.geeksforgeeks.org/piping-....


About the Tee command:
https://shapeshed.com/unix-tee/
https://en.wikipedia.org/wiki/Tee_(co...)

How to change file permissions(write protection)
http://faculty.salina.k-state.edu/tim...
About folder/directory permissions
https://help.ubuntu.com/community/Fil...





How to launch firefox from terminal in the background:
https://unix.stackexchange.com/questi...

What is APT:
https://guide.ubuntu-fr.org/server/ap...

About apt-key
https://manpages.ubuntu.com/manpages/...

What does apt-key do:
https://askubuntu.com/a/131463

About the echo command:
http://www.linfo.org/echo.html

About the OSI Layer Model
https://asmed.com/comptia-network-osi...
https://www.webopedia.com/quick_ref/O...
https://stackoverflow.com/a/31464376