this post was submitted on 15 Aug 2024
57 points (89.0% liked)
Linux
48062 readers
915 users here now
From Wikipedia, the free encyclopedia
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.
Rules
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.
- No misinformation
- No NSFW content
- No hate speech, bigotry, etc
Related Communities
Community icon by Alpár-Etele Méder, licensed under CC BY 3.0
founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Quick tip for the author and those reading, instead of doing as in the article noted e.g.
sudo nano
or the like, you can usesudoedit
(orsudo -e
). The advantage of this is that it will use whatever you have configured as an editor (through$SUDO_EDITOR
,$VISUAL
or$EDITOR
), and will use your configuration files while editing instead of root's, meaning if you have a sick custom neovim or emacs setup you don't have to keep those settings files in sync with the root account. ;)More than that, your editor doesn't run with root permissions, which reduces the risk of accidentally overwriting something you didn't mean to.
Almost 6 years using Linux exclusively, and I had no idea this existed. You just messed me up bad. I'm going to have so much fun with this.
Thank you so much.
I use it at work with many servers like
EDITOR=vim sudo -e /etc/samba/smb.conf
However useful when you need some color highlighting or just numers then add it to
.vimrc
andEDITOR=vim
in Bash config.Holy moly
Oh wow, this is amazing info. Thanks!