18 Commands That Will Change The Way You Use Linux Forever

  Рет қаралды 1,309,679

Akamai Developer

Akamai Developer

Күн бұрын

Пікірлер: 802
@scotty3114
@scotty3114 2 жыл бұрын
I am a 78 yr old retired field tech from a Mirosoft and Novell background. With Microsoft shenanigans, I decided to move to Linux, it's been a steep learning curve but I enjoy it. This is the first time I've seen one of your vids. I think its great that you are teaching these tricks! Thank you so much. I'll be subscribing.
@AlazTetik
@AlazTetik 2 жыл бұрын
You spot the right place to learn more about Linux!
@Ffhmdj
@Ffhmdj 2 жыл бұрын
🙏
@patrickvanrinsvelt4466
@patrickvanrinsvelt4466 2 жыл бұрын
Scotty, same here with the Windows requirements. My boy's laptop has been running KDE Neon for 2 years now with no issue. I just moved the work laptop to KDE as a test with their new release. The 3-4 work PCs get moved in 6 months. We are web devs so most of our stuff is out in the cloud already. Libre Office, GIMP, Bootstrap Studio are our desktop apps. I tested many distros and KDE Neon, built on Ubuntu, is beautiful, solid and fast. One of the old work/test PCs is a dual core, 2GB of memory and runs Neon just fine.
@TheExard3k
@TheExard3k 2 жыл бұрын
dont forget to check out his channel learnlinuxTV. I learned a lot myself and feel confident in using Linux now, which is great and fun
@PaulFWatts
@PaulFWatts 2 жыл бұрын
@@patrickvanrinsvelt4466 Thanks for the tip re Boostrap Studio. As I'm more of a back-end developer this is great for doing a quick front-end without having to become an expert on the front-end.
@dorb1337
@dorb1337 2 жыл бұрын
summary of the commands: 1. `cd -` : back to the last directory we've been to. 2. `ctrl+l`: clear screen 3. `reset`: clear on steroids - resets terminal session 4. `pushd /var` + few other `cd` commands + `popd`: commands that allow you to work with directory stack and change the current working directory 5. `vim /etc/ssh/sshd_config` + ctrl+fz : isn't closing, but minimizing the window to the back ground `fg` : bring back the window to the front. 6. `apt update`: would fail - cuz we fogot sudo `sudo !!` : would run the last command as sudo 7. 8. run command that already been run - `history`, choose a number of command and run it `!102` -> the 102 command from the history would run again 9.HISTTIMEFORMAT="%Y-%m-%d %T" `history` would should the history commands by the format. another way to add the format, is add it to the `~/.bashrc` file with `vim` or `nano` commands. 10.cmatrix -> let you look cool + ctrl c to escape 11.adjust font `shift +` or `shift -`, `reset` command would reset the font size 12. `ctrl a` - start of the line `ctrl e` - end of the line 13.chainning commands -> `ls -l; echo "hello" ` or -> `ls -l && echo "hello" ` && - would stop when meets an error ; - would pop up an error and keep on running the second/next command 14. `tail` / `head` commands to see top or bottom of a file. 15. truncate (be cautious while using this one - its risky) it allows to change the size of a very large files (like log files) for example `truncate -s ` == truncate -s 0 hello.txt to empty the hello.txt file 16. `mount | column -t` : make sure all the output shows in columns any verbose and messy command output would look better using `| column -t`
@sisayfekadu8158
@sisayfekadu8158 2 жыл бұрын
5. Not ctrl+fz, rather ctrl+z
@poweredbyfruit
@poweredbyfruit 2 жыл бұрын
Thanks for saving me the time
@alap1983
@alap1983 2 жыл бұрын
THIS must be a pinned comment
@salvadorestrella8
@salvadorestrella8 2 жыл бұрын
`ctrl u` to clear the current prompt line
@bevintx5440
@bevintx5440 2 жыл бұрын
Thanks so much for that list! I do have a few additions/corrections: 7. Ctrl+r to search backwards through history. Then type part of any command previously run. Additional ctrl+r shortcuts find the next previously entered command, going backwards in time. Press enter to execute a command. 9 … Also,mentioned: # don't put duplicate lines or lines starting with space in the history. # See bash (1) for more options HISTCONTROL=ignoreboth 10 … Also mentioned: F11 toggles terminal window full screen on/off. 11. Adjust font `ctrl shift +` to increase font size and `ctrl -` to decrease font size. `reset` command would reset the font size. However, as mentioned in #3, it also resets every thing else as well as the font size. 12. … Also mentioned: `ctrl u` - delete everything on the line 14. `tail -f` : see bottom of file with real time updates; ctrl+c to exit back to command line.
@OCKev
@OCKev 2 жыл бұрын
Good stuff! I learned a couple things! Regarding history, one other trick I do all the time is to re-execute the last command starting with a certain string. For example, !sudo will execute the last command in the history that started with "sudo". If you're not sure what that command is and want to see it before you execute it, you can type : !sudo :p The :p means preview the command but don't actually execute it (but it will add it to the history as if you had executed that command). If it's what you wanted to do, you can then just type !! and it will execute that command. And another trick I do all the time because of my clumsy typing is to quickly fix a typo and execute the previous command in one step using the caret ^ symbol. For example, if I type : sudp some really long intricate command I will get the error that sudp does not exist - oops, I meant to type sudo. All I have to do is type : ^sudp^sudo and it will reissue my previous command, replacing the first instance of "sudp" with "sudo". If you wanted to be really lazy, you could also type : ^p^o and it just replaces the first occurrence of "p" with "o"
@g.t.3482
@g.t.3482 2 жыл бұрын
Wow! 👌
@rakemup
@rakemup 2 жыл бұрын
Is there a way to delete a line from the history file? i.e. "del !999" to remove line 999 from history
@OCKev
@OCKev 2 жыл бұрын
@@rakemup Good question, not that I know of.
@geoffjball
@geoffjball 2 жыл бұрын
@@rakemup `history -d linenumber` should do it if you’re in bash. In ZSH I believe you need to exit the shell and then edit it out of ~/.zsh_history.
@jagadhiswarreddy3661
@jagadhiswarreddy3661 2 жыл бұрын
@@rakemup ​ @Geoff Ball but your del command will be printed in history if you use del!999
@RamiroRela
@RamiroRela 2 жыл бұрын
25+ years of command line advanced usage but with your video I learned about column -t and the history time variable
@psionski
@psionski 2 жыл бұрын
7:50 after ctrl + Z, the process is frozen, but you can type “bg” to make it continue running in the background. I use this all the time when e.g. I start some NodeJS service interactively, to see the messages, and then ctrl + Z, bg, enter, to turn it into a background process (and you can even exit the shell and it’s fine, it will continue running).
@kendarr
@kendarr 2 жыл бұрын
This is really cool.
@banjohead66
@banjohead66 2 жыл бұрын
Also after Ctrl-Z, the command "jobs" will list out all backgrounded jobs with an index value to the left of each. If you wanted to bring the backgrounded job with the index value of "2" to the foreground, you may do so with the command "fg 2".
@moormanjean5636
@moormanjean5636 2 жыл бұрын
@@banjohead66 or with just "% 2"
@TheEmrobe
@TheEmrobe 2 жыл бұрын
"(and you can even exit the shell and it’s fine, it will continue running)" This is technically not true (in most cases). If your shell is killed, it will kill the process attached to it by SIGHUP. You can get around this by using 'disown' or 'nohup'.
@samieb4712
@samieb4712 2 жыл бұрын
THATS what bg does ?? oh man that's useful lmao
@ComicswithDrew
@ComicswithDrew 2 жыл бұрын
This just might be the single greatest video I've ever watched in KZbin.
@gronblom
@gronblom 2 жыл бұрын
CTRL U does remove the text on the line, if you are at the end of the line. What it is actually doing is removing from your cursor to the BEGINNING of the line. If you are in the middle of the line, it will remove everything BEFORE the cursor. Also, if you are in the middle of the line and type CTRL K, it will remove everything from the cursor to the END of the line. If you do CTRL A CTRL K, it is the same as CTRL U as you are going to the beginning and removing text to the end of the line. truncate was a new command for me (I've used 'cat /dev/null > filetoempty') and I learned about column, too! Cool video!
@martendolk8692
@martendolk8692 2 жыл бұрын
I use the "watch" command a lot for ad hoc progress monitoring. Also, to get to the home directory you only need to type "cd" no need for "cd ~". Cheers!
@jgm113
@jgm113 2 жыл бұрын
Or just ~
@twice4846
@twice4846 2 жыл бұрын
@@jgm113 no
@jgm113
@jgm113 2 жыл бұрын
@@twice4846 YES
@mootal2202
@mootal2202 2 жыл бұрын
@Jack Warner Not right. Cd taskes you to the Home directory for current user.
@wheeI
@wheeI 2 жыл бұрын
'cd' instead of 'cd ~' might me a bashism, not sure
@laxmanapolisetti
@laxmanapolisetti 2 жыл бұрын
along with 'ctrl a' and 'ctrl e', I use 'alt b' and 'alt f' for jumping backward and forward by word. This always helps if I need to jump to the middle of a very long command. 'alt leftarrow' and 'alt rightarrow' works similarly tooo. Also by the way all the linux short cuts also works with youtube video as well. Try it :) j - takes you 10 seconds backwards k - pause l - takes you 10 seconds forwards uparrow and downarrow increases volume f - fullscreen c - captions on (if available) m - for mute there are many shortcuts for youtube as well.
@toddtroll2220
@toddtroll2220 2 жыл бұрын
Or set your shell in vi mode by using "set -o vi" and then use most of vim's movement commands after pressing Esc.
@iceman8075
@iceman8075 2 жыл бұрын
Those are emacs shortcuts. They work everywhere.
@mstorgaardnielsen
@mstorgaardnielsen 2 жыл бұрын
I use ctrl-k ctrl-y kill/yank often
@rosarioagro1699
@rosarioagro1699 2 жыл бұрын
you can see each frame of the paused video by pressing < or > (actually these are comma and dot)
@dimaj1
@dimaj1 2 жыл бұрын
I am not sure if this is my shell/terminal app config, but pressing Esc followed by Backspace deletes from cursor position until beginning of word. I use it extensively in combination with alt+b
@Crackalacking_Z
@Crackalacking_Z 2 жыл бұрын
One the subject of pushing things in the background with crtl+z, there is wonderful tool called "screen". It's a terminal session that always runs in the background once started, even when you logout of the system. You can simply detach and re-attach whenever you need. It's a relic of times when terminal connections were not super reliable, like over dial up. In case of a connection drop, one could just re-login, re-attach screen and continue as if nothing happened.
@mikebrooker8800
@mikebrooker8800 2 жыл бұрын
tmux is another
@jeisonsanchez4842
@jeisonsanchez4842 2 жыл бұрын
I used to use “screen” to maintain a session of the BitchX irc client.
@shobhitnirala5328
@shobhitnirala5328 2 жыл бұрын
screen discont.. in redhat 8 :(
@shajidkhan9288
@shajidkhan9288 2 жыл бұрын
9
@yGmtFTt9
@yGmtFTt9 2 жыл бұрын
use tail -F instead of -f (same as --follow plus nice --retry) It makes tail reading consistent the file even though the file rotates and a new file (with the same name of course) has been created
@6bOemH2gKz
@6bOemH2gKz 2 жыл бұрын
try "less +F"
@hermi362
@hermi362 2 жыл бұрын
I like to use ESC followed by . (period) This key combination will insert the last argument of the previous command at the cursor position. This is very useful when you've entered a long filename at the end of a command (which is common) and now you want to apply another command to that same file. You can keep pressing ESC, period to access the last argument of previous commands.
@volanahu5916
@volanahu5916 2 жыл бұрын
Alt + '.' does this too
@gregorychatelier2950
@gregorychatelier2950 8 ай бұрын
You can use !$ for substituing the last argument of the previous command
@willyme2
@willyme2 2 жыл бұрын
Running a previous command is much easier when you can type the start of the command then press up/down arrow to find all matching commands. So just like MATLAB or other languages. This can be done by creating the file ".inputrc" in your home directory. Populate the file with the lines: " "\e[A":history-search-backward " and: " "\e[B":history-search-forward " - do ignore the outside quotes. Now after you restart the shell you will get up/down arrows that search your command history.
@maharajahdann
@maharajahdann 2 жыл бұрын
I love you
@kenkkash
@kenkkash 2 жыл бұрын
Thanks 🙏 for the video. I learned 3 Linux commands from it. pushd / popd / truncate Ctrl + w delete word by word.
@mechwarrior83
@mechwarrior83 2 жыл бұрын
Great video! I have been using Linux for 3 years and come from a Windows admin background but this old dog still managed to learn some new tricks.
@cwmoser
@cwmoser 11 ай бұрын
Very good video on the command line. I'm 75 and grew up with UNIX while working with Bell Labs and developing software using C. I've been to a number of Unix Administration schools while working at Western Electric including Unix Internals. Back then there was no GUI and it was all command line interface on the terminal. I still have vi highly ingrained in me and today only use Ubuntu Linux. I really enjoyed your video and picked up a lot of new tips and some that shucked the old cobwebs into remembering. Thanks for the very well done video.
@GglSux
@GglSux 2 жыл бұрын
Thanks for another great video. One small side note, the "ctrl+u" will ((at least on my "Pop-OS 21-04")) indeed work as You demonstrated. How ever what it "really does" is "deletes" all the entered text to the left of the cursor. So if the cursor is "at the end" of the line it will indeed "delete the full line", but if the cursor instead is at the start it will do nothing. And of course if You have the cursor "somewhere in the middle" it will just "delete" the text to the left of the cursor Just thought I'd mention that (possibly petty) detail :) Best regards.
@jonathantx
@jonathantx 2 жыл бұрын
Awesome content, like always. Thank you for not forgetting the beginners like me.
@KodornaRocks
@KodornaRocks 2 жыл бұрын
Instead of 'cd ~' use 'cd' without arguments
@flesz_
@flesz_ 11 күн бұрын
You just taught him something new
@Chemasaurus
@Chemasaurus 2 жыл бұрын
Gosh, a couple reminders here. Things I've learned but never used enough to remember. One thing I think you could have included in the last section (column) was holding ALT while click+dragging can allow you to highlight (and copy) just the contents of a single column or multiple columns (without highlighting the entire line). This trick has been a life saver for me when I have a bunch of columns and I don't want to spend 15 seconds writing out a command to extract just the one column.
@il5083
@il5083 2 жыл бұрын
I just appreciate you record and upload this in 4k so the text is so crisp, this makes me happy.
@null1023
@null1023 2 жыл бұрын
Nice video! There's some good stuff in here I've not seen, like logging timestamps for commands in the history. 6:14 "^Z doesn't work with nano, I don't know why" Yeah, this one hit me a few times on some systems. Turns out, nano actually intercepts it depending on the configuration. If you want it to work, you can run nano with the -z option, or you can add 'set suspend' to your ~/.nanorc file.
@T313COmun1s7
@T313COmun1s7 2 жыл бұрын
I have two that I have found to be very useful. - If you have a large amount of work, and you just need it to go away you can type: exit - If you need to create a large amount of work for somebody else to get them off your back on why you are not doing anything you can SSH into a server and type: shutdown -h now
@tuckertucker1
@tuckertucker1 2 жыл бұрын
The laugh factory called... you've been fired.
@gblargg
@gblargg 2 жыл бұрын
And if you need a day of work: sudo rm -rf /, or alternately, sudo dd if=/dev/zero of=/dev/sda
@bobgreene2892
@bobgreene2892 Ай бұрын
In the first five minutes, you demonstrate your gift for clarity and focus. Immediately on that realization, we subscribed you into our KZbin "Linux" folder for reference. Nice work- -we'll return, often!
@ghillan72
@ghillan72 2 жыл бұрын
1) the " truncate" command to clean the content of a file is pointless. If you want to delete the content of a file you " could" do with echo "" > /file_path/filename, but you can even skip the echo command. Just issue "> /file_path/filename" without the echo works and its much faster. 2) Ok mentioning ctrl +a and ctrl +e , but actually the keys "home" and "end" on your keyboard actually do the same. ( i use those) 3) A command i really like but is quite unkonwn is "tac" ( is like cat in reverse), and it's a "cat" command that reads a file bottom-up. Its quite usefull then you want to read a log file without knowwing how many lines to include. as example: tac /var/log/messages | more you read the logs starting with the most recent line and you can keep going backwards until you find what you are looking for.
@JasonSFuller
@JasonSFuller 2 жыл бұрын
Came here to mention your #1 and #2. Faster than typing out "truncate." Bonus tip: When you're 5 servers deep in SSH sessions, use +D (on an empty line) instead of typing "exit" to end a session.
@wantedru
@wantedru 10 ай бұрын
Thanks. Didn't know about 'truncate'. I once had a problem with one huge log file, and I tried to simply delete it, but it didn't free space used by this file because it was used by program. I think, truncate command could help me in that case.
@Songfugel
@Songfugel 2 жыл бұрын
Ok, one minute in, and already the first tip blew my mind and made the video worth a like
@parth191079
@parth191079 2 жыл бұрын
Man.. I use Linux for last 20 years and I still found several new tricks! Awesome compilation!!
@japes789
@japes789 2 жыл бұрын
cd - and column are game changers thanks for sharing Another one I like which isn't mentioned here is the alias command (written into the .rc file for persistence is a huge time saver for example alias dist-update="sudo apt update && sudo apt upgrade-distro" Will run those commands every time you type dist-update into the terminal
@piratk
@piratk 2 жыл бұрын
I use curly brackets a lot, they allow for neat rename and other things. mv my_{first,second} And it will rename my_first to my_second. To understand a command expansion better, prepend the line with echo, and add more to the brackets, to see what happened before the line was executed.
@meneerjansen00
@meneerjansen00 2 жыл бұрын
Again, some tips I din't know about after using Linux as my daily OS for 15 years! Thanks. :)
@estudiordl
@estudiordl 2 жыл бұрын
Same! Awesome tutorial! 😁
@polliluiz
@polliluiz 2 жыл бұрын
Same here.
@mitchellperry9399
@mitchellperry9399 2 жыл бұрын
Good video, lots of useful things here, only a few things I feel need pointing out/including along with similar topics. Not sure if this will have been said but where Ctrl+Z is being mentioned using the word "background" would be confusing terminology (this point will become clear very soon), Ctrl+Z as the terminal returns is stopping the process, `fg` will foreground it but typing `bg` will actually then allow it to remain running without its output being displayed, similar to running with `&` when initially running the command, thereby actually running in the background, background jobs will still be killed when the terminal is closed and can be viewed using the command `jobs -l` and resumed by running `fg %X` where X is the number listed in square brackets by `jobs -l`. I personally use this for copy operations I don't need to monitor but will take a couple of hours, whilst working on other things. Where && is used to mean run command only if success || can be used to run only if failure. `tail -f | grep ` also works on all systems I've used which can be very useful if you have busy log files and only certain things you want to see (or not see if you include the -v flag of grep).
@BrianSwatton
@BrianSwatton Жыл бұрын
Actually a bit surprised at how much useful new stuff I got out of this, I've been a linux user for 10-11 years.Thanks.
@paulgriffin8566
@paulgriffin8566 2 жыл бұрын
Jay, many thanks for a wonderful set of tips. Like many I have a grab bag of commands that I have picked up the the years to make life easier. These 18 little gems are fantastic. Many thanks. My favourite is CTRL Z and then return with fg. The number of times I have been in vi and need to quickly jump out and in, sometimes I'm to lazy to start another terminal session, this little trick solves that problem.
@danielb.4205
@danielb.4205 2 жыл бұрын
First one and a half minute; using Linux as a programmer for work and already learned something great; was using pushd and popd for scenarios were now I will just use cd -, awesome. Tip for you: you don't need to type cd ~, just cd without argument also works.
@nomadsland7195
@nomadsland7195 10 ай бұрын
Yes, I saw it nowehere but somehow invente it myself. lol...
@cubbyv
@cubbyv 2 жыл бұрын
I haven't finished watching the video but I'm constantly exclaiming 'Ohh!' and 'Ahhh!'. Thank you.
@chriskaprys
@chriskaprys 10 ай бұрын
Love these tips! Adding to your Ctrl + shortcuts, I often use Ctrl + W to erase the whole "word" left of the cursor. (Delimiters for what counts as a "word" is set in a file, I forget where; also affects what gets selected when you double-click on text.) After many years fooling around / learning in bash, I only recently started putting those ".." to good use, to backup and reenter a path tree at a different point. e.g. I'm in /etc/ssl/certs and want to get to /etc/snmp I used to type 'cd ..' 'cd ..' 'cd snmp' But now just use 'cd ../../snmp'
@ReivecS
@ReivecS 2 жыл бұрын
I haven't seen much on this channel so maybe you already covered this but mastering the 'screen' command is a must have skill if you are doing any remote work on linux systems. It just takes one DC during a long task to make you appreciate the value of running long tasks in a dedicated screen so that you don't have to start over.
@alpheusmadsen8485
@alpheusmadsen8485 Жыл бұрын
I would throw in "tmux" as an option, too! It's a "modern" version of screen, but both allow you to do amazing things, above and beyond running tasks even when your connection is cut (which is the reason I was introduced to "screen" in the first place). Theoretically, I'd use tmux on my local machine and screen on a remote terminal, but in practice, I haven't done much remote work in recent years, so I mostly just use tmux.
@CheapNLazyAdventures
@CheapNLazyAdventures 2 жыл бұрын
I hate to say this but many of the tutorials out there, the folks talking are hard to understand. I know that sounds bad, but it's a real issue either way. I greatly appreciate that you are in depth and easy to listen/hear. Thank you very much.
@nischalstha9
@nischalstha9 2 жыл бұрын
Just made my beginner life lot easier in linux!❤️‍🔥
@gwgux
@gwgux 2 жыл бұрын
I don't know how useful it would be everyone, but one of the CLI tricks I do is install lsd (ls deluxe) and then alias ls to lsd in my shell's rc which which replaces ls to lsd. This gives me a more colorful listing output than the default ls command. I find it useful for times when I'm in the middle of project and it's late at night and I'm tired and hungry and that's when seeing the traditional output all starts to blur together from fatigue. The lsd output is in the same format as traditional ls, but has more color coding and if you have the right fonts enabled, will display little icons for the files and directories right withing the terminal session for you. It helps me out when things blurring together and it also looks cool so it's something I recommend people look at as they learn the terminal a bit more.
@minecraftchest1
@minecraftchest1 2 жыл бұрын
I'll have to give it a look.
@ingokrispin3482
@ingokrispin3482 2 жыл бұрын
If you like "lsd" you'll might want to take a look at "exa". It's very similar but even more powerful, and it's in most distributions' repos.
@gwgux
@gwgux 2 жыл бұрын
@@ingokrispin3482 Thanks, I'm looking into it now! ;)
@TheMgaertne
@TheMgaertne 2 жыл бұрын
Not sure whether someone else mentioned that, but instead of tail -f I use less and press Shift-f to follow a file for some time. If something jumps to my attention, I can Ctrl-Z out of the follow mode, and go back to that line. You can also search with / for some particular errors, and they will be highlighted in follow mode, or use &search-string to just show the matching lines for your regex search in there.
@ogcurated
@ogcurated Жыл бұрын
"History | less" and the "!#" are a timesaver!!!! Can't forget "ctrl+c" or "ctrl+z" when stuck,.. lol Thank you for all the work and time you put into these videos!
@D_Ladybug
@D_Ladybug 2 жыл бұрын
you simply have one of the most concise, eloquent and knowledge impacting channel. thank you, sir!
@JayantBB78
@JayantBB78 2 жыл бұрын
As usual, great video for beginners. 👍! Keep it up.
@michelbouchet3605
@michelbouchet3605 2 жыл бұрын
Along with your list Ctrl+A, Ctrl+E, Ctrl+U you could also add Ctrl+K (to delete the line from the cursor up to the end) which I personnally find useful.
@erikisberg3886
@erikisberg3886 2 жыл бұрын
Thanks, many good tips! I agree that You can go long way doing things inefficiently by routine. It is well worth taking time to learn an adequate set of tools for the job. Problem is that the possibilities available are sort of overwhelming, so tutorials like this are really valuable. 👍
@noscreadur
@noscreadur 2 жыл бұрын
One of the most illuminating vids I've seen for ages!
@datgal2u
@datgal2u Жыл бұрын
Really great video. I knew a lot of the stuff from years ago, but you also still showed a few more things that I didn't even know was possible.
@lapsuskryotek
@lapsuskryotek 2 жыл бұрын
instead of using "tail -f filename" I like using "less filename" and then shift+F, to force feed and update output as the file being updated. The advantage is that if I see something I need to troubleshoot or to go up and search for a keyword that draw my attention, I can do so right away while inside the "less" command. Even better I can do "less filename" search for the keyword, then do "shift+f" and if the keyword does show up while its feeding the content to the screen it will be immediately highlighted .
@BradleyBrown
@BradleyBrown 2 жыл бұрын
Thanks for doing this! I've been using Linux off and on for over 20 years and thought I knew my way around pretty well, and I learned a ton!
@rushikeshdeshmukh2034
@rushikeshdeshmukh2034 3 ай бұрын
Thanks a lot for sharing nice tricks. Some of my observations I thought will share here: Font size increase "Control Shift +" works with the plus button from row below the function key row in keyboard. "Control +" does not work with plus button from numeric pad. Command erase using "Control u" actually erases the characters from current position to the beginning.
@DavidUndernehr
@DavidUndernehr 2 жыл бұрын
Nice, used the ; chaining two CMDs to see how my Memory and CPU is doing in a compact view # CMDs connected together to show how my CPU and Memory is currently doing ps -eo comm,pcpu --sort -pcpu | head -5; ps -eo comm,pmem --sort -pmem | head -5 I just added this to a .sh script so I can run it quickly when needed. Keep up the good work!
@cypher3905
@cypher3905 2 жыл бұрын
You may use aliases instead of scripts for this kind of stuff. Aliases are so underrated but it's by far what I use the most when I want a command to be accessed easily
@mikedemba
@mikedemba 2 жыл бұрын
wow! Where have you been all my life! Thank you!
@kychemclass5850
@kychemclass5850 2 жыл бұрын
Thank you Jay (+ Linode for sponsoring things). Love these things.
@BonelessEar
@BonelessEar 2 жыл бұрын
you can also chain commands by using || (pipes) and it will do the opposite of &&. It will run second command only if the first one failed. Another cool command line tool I use A LOT is "screen". Its a console windows manager that allows you have multiple consoles *running*, switch between, split screen and many more. Most cool about screen is that you can detach from it (ctrl+a D D), log out from system, log back in and attach back to it "screen -DR" and continue where you left.
@gblargg
@gblargg 2 жыл бұрын
I think of command && another as saying that they must both run successfully. command || another says that one or the other needs to be successful. It follows the same rules as in C and C++ regarding evaluation, where the second won't be executed unless necessary (i.e. in the && case, only if the first works, and in the second case, only if the first fails).
@TheSulross
@TheSulross 2 жыл бұрын
on the last item of piping output into column -t, I find that very long lines of text that line wrap are confusing to read so I additionally pipe output into less -S where -S option turns off line wrapping. If producing text with embedded terminal escape codes for setting colors on text strings, then can use -R with less command as it will then interpret those escape codes and text will be displayed with intended colors applied. So this allows for making some rather spiffy output that draws attention to headers, use red for errors and green for success, etc
@zoolkhan
@zoolkhan Жыл бұрын
working with linux since ages... but there were a number of useful tricks here i never knew or could not be bothered with at the time. thanks for bringing this back to my attantion, in hindsight its a shame i never used so many of those little things before
@BB-uz4tc
@BB-uz4tc 2 жыл бұрын
I love this channel im so grateful for it. Thanks for making me better.
@milosdedecek8107
@milosdedecek8107 2 жыл бұрын
Great overview indeed! Didn't know about column utility. Btw. Ctrl-U does only delete from cursor position to the left. Ctrl-K kills from cursor to the right...
@xrafter
@xrafter 2 жыл бұрын
Is this EMacs key-bindings?
@milosdedecek8107
@milosdedecek8107 2 жыл бұрын
@@xrafter not really. These are standard bash. You may 'set -o emacs' to get emacs bindings.
@WallaceLearnEngish
@WallaceLearnEngish 2 жыл бұрын
Ctrl+U/K/W are actually cutted and you can paste it by Ctrl+Y
@smokeonthewater5287
@smokeonthewater5287 2 жыл бұрын
control+k also deletes a full line in nano, which is often useful after locating a line with control+dash
@mickaelo466
@mickaelo466 2 жыл бұрын
@@WallaceLearnEngish yes the pasting part is the most useful
@andresberger6240
@andresberger6240 2 жыл бұрын
I didn't knew most of this tricks, some of them are super useful. Many thanks
@noam65
@noam65 2 жыл бұрын
Some I knew, some more I didn't. Thanks for adding to my toolbox.
@monstroPT
@monstroPT 2 жыл бұрын
Very useful tips! Thanks, Jay!
@jawadmehmood6364
@jawadmehmood6364 2 жыл бұрын
In adding timestamps to the history. Those who have edited the .bashrc file at 16:30, you guys need to run the following command after saving the file. source ~/.bashrc The above command will execute the .bashrc file and then after that, you can see the effect. @linode
@sirajul-anik
@sirajul-anik 2 жыл бұрын
`. ~/.bashrc` also does the same, just saying. For him, it's working cause he already had the variable set in his prompt. And in the next shell, it'll always get sourced. So, he might have forgot I guess
@vinothrouger
@vinothrouger Жыл бұрын
thanks
@Sawta
@Sawta Ай бұрын
One (or too) that I've found to be incredibly helpful us holding ctrl + shift + left arrow. It helps me skip through entire words much quicker. Once I get to the right spot, I'll then use ctrl + shift + del (not delete - del) to delete an entire word. It's helpful for me because I might be opening a bunch of pdfs with evince. I can leave the subdirectory structure unchanged, but modify the filename of the specific pdf. Ctrl + U is probably going to be super helpful, too, along with column t. 😀
@comparedtowhat2549
@comparedtowhat2549 2 жыл бұрын
My favorite is using TAB to autocomplete whatever I started to type. This seems to work for any command and any argument to a command, no matter what command. I was surprised you did not mention this as if it would be common knowledge not worth mentioning. It was not for me and I've seen lots of water pass under bridges. Someone else commented about using TAB here but in such an obscure context that one might not notice it or realize what TAB will do. I would say I never fully type in any command or argument knowing full well a simple TAB press will complete what I started. This is particularly useful when dealing with directory names.
@tomate3391
@tomate3391 2 жыл бұрын
For the sake of completeness: autocomplete is great, but it is not always out of the box activated. In this case it has to be activated.
@WR250a
@WR250a 2 жыл бұрын
another useful shortcut is ctrl +right/left arrow . this will (mostly) tab back through the command by the word. EX: you typed a command like "while read file;do a=$(tr [A-Z] [a-z]) ;ehco "$a" >> newfile.txt < file.txt;done" note echo is misspelled, so you hit up arrow to bring the command back up, and hit ctrl+left arrow to go back and correct the spelling. ctrl+right moves one word to the right and ctrl+left goes left by one word. also the end key goes to the end of the line and the home key takes you to the beginning.
@otterhopper
@otterhopper 2 жыл бұрын
"tail -f " to live-monitor new content in a file was a new trick for me, thanks!
@apacheaccountant9757
@apacheaccountant9757 2 жыл бұрын
My best youtube recommended video so far
@Rattenpork75
@Rattenpork75 2 жыл бұрын
Looool I have literally the same background picture from a galaxy in my room ❤️❤️
@maxper75
@maxper75 2 жыл бұрын
Good video, don't know if anyone already pointed out that ctl+z doesn't send the process in three background but the process gets suspended, which means that it will not be scheduled any more, up till you execute fg or bg. The first command sends as your showed up the app to own again the stdin, stdout and stderr, while there other sends the command to the background, writing anyway to stdout and stderr.
@Adiusza
@Adiusza 2 жыл бұрын
Hi, fortunate for me i found this video at the beginning of my journey with linux ... very nice video, thank you :D
@DerEchteAndrej
@DerEchteAndrej Ай бұрын
Thanks! I love the tiny tricks like 'sudo !!' or CTRL+A/E/U I'm new to Linux and wished to have a command history so many times...there it is, even with timestamps. Great!
@easymoney1997
@easymoney1997 2 жыл бұрын
Great Video, I like the history time format. My tip to you, is that the "Home" key and the "End" keys do the same as "ctrl a" and "ctrl e"
@MichaelApproved
@MichaelApproved 2 жыл бұрын
The downside to using HOME/END keys is needing to lift up your hands from the keyboard. It’s a small inconvenience but CTRL+A/E is a bit more comfortable. Also, home/end placement is not consistent across keyboards. Getting used to A/E will allow muscle memory to kick in, regardless of the keyboard you’re using.
@williamevans6830
@williamevans6830 2 жыл бұрын
Awesome video the column command and history navigation was especially helpful thanks again.
@NewJayqwe2
@NewJayqwe2 2 жыл бұрын
This is fantastic Jay, subscribed
@TheOnlyEpsilonAlpha
@TheOnlyEpsilonAlpha 11 ай бұрын
26:11 use tail -f and multiple log files will give you simultaneous results of several logs and list the name of the log file which the new lines appeared That is especially useful if you running into issues with a server and you can’t nail it down to a certain piece of software. So you can accumulate logs to get an overview of everything that is going on
@coma13794
@coma13794 2 жыл бұрын
Very nice. Bang colon number lets you access a numbered argument from the previous command. Bang asterisk repeats all the parameters from previous command.
@ingokrispin3482
@ingokrispin3482 2 жыл бұрын
Yeah ! In addition to those, !-2 refers to the second last command, and !vi to the last command starting with "vi".
@coma13794
@coma13794 2 жыл бұрын
@@ingokrispin3482 !vi I knew, however !-2 is new to me. Thank you!
@albert3407
@albert3407 2 жыл бұрын
what I've learned watching this video is that when i press Ctrl+z push the current process in background and to put it back again i have to run fg that stands for ForGround, Was also very useful the use of !! used to run the last command in case i do mistakes missing the sudo word, I find very useful to use && instead ; has chaining command, other two very useful command that are not shown her are ctrl+n and ctrl+p
@laffinkippah
@laffinkippah 2 жыл бұрын
Great tips. One of my favorites, not mentioned in the video is using Ctrl+x, Ctrl+e to edit complex commands and then execute them.
@kellingc
@kellingc 2 жыл бұрын
a brief word about stopped jobs. If you have stopped jobs and try to exit the shell, or logout, the system will tell you there are stopped jobs and put you back in an interactive prompt. If you let the job run in the background (bg or &), it will kill the job when the parent shell ends, unless you detach the process. If you lose connection with stopped jobs, then that process becomes zombied. On systemd installations, 'journalctl -f' replaces tail -f /var/log/syslog One of the major strengths of linux and UNIX for that matter, is the piping | you can have some really wild commands going with putting in things like sed and awk, sort, cat, and a whole host of other commands. What is the longest pipeline (what I made up to describe the piping of commands, and not necessarily chained) you've ever created?
@xrafter
@xrafter 2 жыл бұрын
The longest I have created is “cat file.txt | sort | uniq | ln”
@WorldWorrier3273
@WorldWorrier3273 2 жыл бұрын
Thanks for your shortcuts, it's really really Helpful for 🙋.
@GPSINGH-gb9ji
@GPSINGH-gb9ji 2 жыл бұрын
Very useful. Thanks for your time creating this video.
@MrWolfSndz
@MrWolfSndz 2 жыл бұрын
We can also use Ctrl+w to delete word by word in a long command where as Ctrl+u removes the whole command. Thank you for your video 🙂
@scheimong
@scheimong 2 жыл бұрын
Besides the `!!` substitution, there is also the `!*` substitution which substitutes everything after arg[0]. So for example if you just finished inspecting a file with `less /path/to/my/file` and decided to delete it, you can simply run `rm !*`. It's not as frequently useful, but when it is you'll be glad you know it.
@ReivecS
@ReivecS 2 жыл бұрын
I could see this being helpful when you need to chown and then chmod a file with a long pathname. This is a task I commonly do.
@odraghi
@odraghi 2 жыл бұрын
In the same way, you can use this to play with the last command args : !* all args !^ the first arg !$ the last arg (I use this a lot..) !:2 the second arg !:2-$ the second to the last args echo hello youtube video echo !:2-3 # this is going to output youtube video
@rodrigogimenez2430
@rodrigogimenez2430 2 жыл бұрын
It's very clear, even to a person who is learning english. Very thanks, new subscriptor from Buenos Aires, Argentina. Cheers!
@somecallmetimelderberries432
@somecallmetimelderberries432 2 жыл бұрын
Very nice video! Here's a couple commands I use regularly that I really like: # Do something repeatedly on a timer. The commands can be anything, here's a useless example: while (true) do date; echo "Checking..."; sleep 20; done # Pipe a command into another command. For example, get the size of all directories in the current directory: ls -d */ | xargs du -sh
@4thatfilm
@4thatfilm Жыл бұрын
Its marvelous to witness evolution from Linux Guy to Linode Developer. It's like Elvis playing county fairgrounds to Vegas! 😎
@da001be
@da001be 2 жыл бұрын
Exrtremely useful! Thanks so much. Always learn a lot from your videos!
@michaelkennedy5126
@michaelkennedy5126 2 жыл бұрын
Good nerdin' on ya! I got learnt about Ctrl-L
@kamiisaacs1724
@kamiisaacs1724 2 жыл бұрын
This cooler than I was expecting
@yashvander
@yashvander 2 жыл бұрын
I'm not sure if you mentioned this one cuz I kinda skipped that part. But just like `Ctrl + u` clears the prompt to the left of cursor, `Ctrl + k` does its reverse i.e. erases everything to the right of cursor :)
@faith_alone
@faith_alone Жыл бұрын
The control e, a, u was most useful. Much better than me looking down for home or end, or pressing control C to get a new terminal line when I want to exit it
@martinb9208
@martinb9208 10 ай бұрын
Excellent! Works really well on my MAcBook and various Linux VM's
@N2AIE
@N2AIE 2 жыл бұрын
Brand newbie. And jumping into Linux. This does help, I’ll watch again and take some notes..I have a project I’ll need to build so there are some commands that I’ll be using thanks
@nishan_nb
@nishan_nb 10 ай бұрын
Thanks for the great video. That cmatrix command and F11 is really cool! And of course all your other tips.
@demil3618
@demil3618 2 жыл бұрын
Enjoyed that! And now I‘m exploring the difference between using ; or && or |
@DasIllu
@DasIllu 3 ай бұрын
The "sudo !!" command has such "Shut up and do as i told you" energy :-D
@nathandilgard6803
@nathandilgard6803 2 жыл бұрын
One of my all time favorite Linux video.
@felipeferreira3906
@felipeferreira3906 2 жыл бұрын
Awesome! Can't believe I didn't know even a half of this tricks.
How to use Multiple SSH Keys | Managing Different SSH Keys on your System
21:29
Linux Operating System - Crash Course for Beginners
2:47:56
freeCodeCamp.org
Рет қаралды 2,4 МЛН
СИНИЙ ИНЕЙ УЖЕ ВЫШЕЛ!❄️
01:01
DO$HIK
Рет қаралды 3,3 МЛН
Support each other🤝
00:31
ISSEI / いっせい
Рет қаралды 81 МЛН
It works #beatbox #tiktok
00:34
BeatboxJCOP
Рет қаралды 41 МЛН
Структура файлов и каталогов в Linux
20:28
Aleksey Samoilov
Рет қаралды 440 М.
12 MORE Commands That Will Change The Way You Use Linux Forever
22:21
Akamai Developer
Рет қаралды 17 М.
I forced EVERYONE to use Linux
22:59
NetworkChuck
Рет қаралды 672 М.
Linux Commands - CompTIA A+ 220-1102 - 1.11
28:43
Professor Messer
Рет қаралды 176 М.
Linux File System/Structure Explained!
15:59
DorianDotSlash
Рет қаралды 4,3 МЛН
Beginner's Guide To The Linux Terminal
42:27
DistroTube
Рет қаралды 421 М.
Making Smallest Possible Linux Distro (x64)
27:43
Nir Lichtman
Рет қаралды 147 М.
The Linux Filesystem Explained | How Each Directory is Used
14:08
Akamai Developer
Рет қаралды 239 М.
Systemd Explained: The Ultimate Deep Dive for Linux Users
47:41
Learn Linux TV
Рет қаралды 213 М.
СИНИЙ ИНЕЙ УЖЕ ВЫШЕЛ!❄️
01:01
DO$HIK
Рет қаралды 3,3 МЛН