this post was submitted on 01 Jan 2024
        
      
      154 points (81.0% liked)
      Linux
    59286 readers
  
      
      794 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 6 years ago
      
      MODERATORS
      
    you are viewing a single comment's thread
view the rest of the comments
    view the rest of the comments
"I have no idea what I’m doing here" <- Happens in the beginning. How about you start by trying to know what exactly you are doing? Let me give you a fasttrack...
The first command you get in the instructions is
curl. It is generally used to download stuff from a networked server.1.1. To understand the
-fsSLoin the command, I strongly advise you to check out the manual ofcurlusingman curlin a terminal.The second command in the instructions is
echo "something" | sudo tee some/file2.1 Here you see 3 commands
echo,sudoandtee. 2.1.1 Again, you can useman command-nameto check the manual pages for these commands 2.2 There is a|symbol over here. It is called the "pipe symbol", which is what you can use to search for it. It is usually difficult to search for the symbol itself and I haven't found a man page for it, but openman bashand look for "Pipelines" and you'll know what it is about. Use Link, Link and Link to help yourself understand this.The commands in "Install the package" use the
aptprogram. This is a Package Manager. Its job is to read package information that package developers have made and try to not let the system become unusable.The gist of what the instructions are making you do is, telling the Package Manager that there is another place from where you want it to look for packages.
To understand man pages better, check out this link.
Don't think too badly of people dissing you in the comments. They are tired and fed up of help vampires. Hopefully, you can try not to become one.
Check this out