Learn just enough Linux to get things done
alexpetralia.com
Learn just enough Linux to get things done
1–10 of 138 posts
Re: Learn just enough Linux to get things done
#2Re: Learn just enough Linux to get things done
#3Re: Learn just enough Linux to get things done
#4Re: Learn just enough Linux to get things done
#5Re: Learn just enough Linux to get things done
#6In my project, I maintain 3 documents. The first one is a similar list of basic linux knowledge that people should learn when arriving on the project. The second is "UnixTipsAndPitfalls" where people should add new entries when they encounter usefull commands. The third one is about tar.
Re: Learn just enough Linux to get things done
#7https://github.com/jlevy/the-art-of-command-line
Re: Learn just enough Linux to get things done
#8In my project, I maintain 3 documents. The first one is a similar list of basic linux knowledge that people should learn when arriving on the project. The second is "UnixTipsAndPitfalls" where people should add new entries when they encounter usefull commands. The third one is about tar.
Re: Learn just enough Linux to get things done
#9Having just walked through some basic steps with a novice, I can concur, modern linux is impossible without "recipes".
Just setting up a hello world web app can involve: ssh login to running instance, using curl to download the gcloud sdk, tar to unpack, sudo to install, systemctl to start local processes, useradd dedicated www, chmod and chroot to allow access, rsync to tranfer files, netcat to manage ports, etc.
For beginners, without a trusted hand to guide them, its beyond intimidating. These systems must become more accessible to the average human.
Re: Learn just enough Linux to get things done
#10In my project, I maintain 3 documents. The first one is a similar list of basic linux knowledge that people should learn when arriving on the project. The second is "UnixTipsAndPitfalls" where people should add new entries when they encounter usefull commands. The third one is about tar.
Over years I've heard a lot of complains on tar being hard to use, but in real-life I really ever had to use only these two commands: tar zcvf and tar zxvf. It's actually quite easy to remember: tar Zip Compress Verbose File, and tar Zip eXtract Verbose File.