Get yourself a Linux cloud server with Linode!!: ntck.co/linode ($100 Credit good for 60 days as a new user!!) 🔥🔥Join the Hackwell Academy: ntck.co/NCAcademy 0:00 ⏩ Intro 0:05 ⏩ ssh 0:21 ⏩ ls 0:30 ⏩ pwd 0:35 ⏩ cd 0:51 ⏩ touch 1:23 ⏩ echo 1:32 ⏩ nano 1:42 ⏩ vim 1:56 ⏩ cat 2:02 ⏩ shred 2:10 ⏩ mkdir 2:15 ⏩ cp 2:26 ⏩ rm 2:28 ⏩ rmdir 2:38 ⏩ ln 2:45 ⏩ clear 2:50 ⏩ whoami 2:57 ⏩ useradd 3:02 ⏩ sudo 3:08 ⏩ adduser 3:15 ⏩ su 3:21 ⏩ exit 3:29 ⏩ passwd 3:50 ⏩ apt 4:12 ⏩ finger 4:20 ⏩ man 4:33 ⏩ whatis 4:55 ⏩ curl 5:05 ⏩ zip 5:13 ⏩ unzip 5:20 ⏩ less 5:29 ⏩ head 5:32 ⏩ tail 5:34 ⏩ cmp 5:42 ⏩ diff 5:50 ⏩ sort 6:00 ⏩ find 6:19 ⏩ chmod 6:24 ⏩ chown 6:34 ⏩ ifconfig 6:40 ⏩ ip address 6:47 ⏩ grep 7:02 ⏩ awk 7:26 ⏩ resolvectl status 7:31 ⏩ ping 7:57 ⏩ netstat 8:08 ⏩ ss 8:14 ⏩ iptables 8:24 ⏩ ufw 8:43 ⏩ uname 8:52 ⏩ neofetch 9:01 ⏩ cal 9:14 ⏩ free 9:21 ⏩ df 9:28 ⏩ ps 9:36 ⏩ top 9:40 ⏩ htop 9:44 ⏩ kill 10:03 ⏩ pkill 10:14 ⏩ systemctl 10:29 ⏩ history 10:35 ⏩ reboot 10:37 ⏩ shutdown
@SNSISNSJISEJSJS2 жыл бұрын
Hey big fan here 🐱 Was this a speed run explanation 😂
@samerkarime97052 жыл бұрын
NetworkChuck please help me I have a virus on my computer it's nuis extension please how can I move this virus
@dolex1612 жыл бұрын
Aint nothin wrong with nano :P
@DirkDS2 жыл бұрын
@NetworkChuck forgot to prepend sudo on your last command? Just type: "sudo !!" 😉
@geowhat2 жыл бұрын
My favourite command is sudo rm -rf /*
@grellkaizer37202 жыл бұрын
No lie, he literally condensed a whole 16 week semester of the Linux class I took a year ago at college in 10 minutes. Sir you are a scholar and a gentleman.
@kiizahillary8472 Жыл бұрын
He makes linux fun and interesting
@osvaldomorinigo Жыл бұрын
Bri'ish
@NathansLife Жыл бұрын
@shext_fps same here
@coolbrotherf127 Жыл бұрын
There are some lazy Linux teachers out there. They just show their students some commands they could read in a book or watch on KZbin and call that "education". A good teacher should get them programming real stuff in C/C++ and how to shell script properly. I happened to have a really knowledgeable Linux professor that made sure we knew Unix and Linux inside and out by the end of that class, not just some commands.
@rudysal1429 Жыл бұрын
@theacp127 that maybe fine for someone already familiar with the CLI but for a complete novice, you need at least 4 weeks of reading and trying things out to get familiar. Another 4 weeks of to heavy use to get comfortable and understand what commands you are running. The last 8 weeks would be for understanding the linuxOS and other stuff. This video is good for reviewing commands that you haven't used in a while.
@jaivardhan84175 ай бұрын
*First 58 commands* : SSH [00:00:05] Usage: ssh user@server Function: Connects to a Linux machine remotely. LS [00:00:18] Usage: ls, ls -l, ls -a Function: Lists files in the current directory, with options for detailed view and hidden files. PWD [00:00:32] Usage: pwd Function: Prints the current working directory. CD [00:00:35] Usage: cd path, cd .., cd Function: Changes the current directory to the specified path. Touch [00:00:51] Usage: touch filename Function: Creates a new file or updates the timestamp of an existing file. Echo [00:01:22] Usage: echo 'text' > file Function: Displays text or redirects it to a file. Nano [00:01:33] Usage: nano filename Function: Opens a file in the Nano text editor. Vim [00:01:44] Usage: vim filename Function: Opens a file in the Vim text editor. Cat [00:01:57] Usage: cat filename Function: Concatenates and displays the content of files. Shred [00:02:04] Usage: shred filename Function: Overwrites a file to hide its contents, and optionally deletes it. MKDIR [00:02:10] Usage: mkdir directoryname Function: Creates a new directory. CP [00:02:15] Usage: cp file destination Function: Copies files and directories. MV [00:02:20] Usage: mv file destination Function: Moves or renames files and directories. RM [00:02:25] Usage: rm file, rm -r directory Function: Removes files or directories. LN [00:02:38] Usage: ln -s file link Function: Creates a symbolic link to a file. Clear [00:02:46] Usage: clear Function: Clears the terminal screen. Whoami [00:02:51] Usage: whoami Function: Displays the current user’s username. Adduser [00:02:57] Usage: sudo adduser username Function: Adds a new user to the system. Sudo [00:03:02] Usage: sudo command Function: Executes a command with superuser privileges. SU [00:03:16] Usage: su username Function: Switches the current user to another user. Exit [00:03:22] Usage: exit Function: Exits the current session or shell. Passwd [00:03:32] Usage: passwd username Function: Changes the password for a user. APT [00:03:52] Usage: sudo apt update, sudo apt install package Function: Handles package installation and updates on Debian-based systems. Finger [00:03:46] Usage: finger username Function: Displays information about a user. Man [00:04:19] Usage: man command Function: Displays the manual page for a command. Whatis [00:04:34] Usage: whatis command Function: Displays a one-line description of a command. Which [00:04:40] Usage: which command Function: Shows the path to the command’s executable. Wget [00:04:49] Usage: wget URL Function: Downloads files from the internet. Curl [00:04:56] Usage: curl URL > file Function: Transfers data from or to a server. Zip [00:05:09] Usage: zip file.zip file Function: Compresses files into a zip archive. Unzip [00:05:16] Usage: unzip file.zip Function: Extracts files from a zip archive. Less [00:05:24] Usage: less filename Function: Views the content of a file one page at a time. Head [00:05:29] Usage: head filename Function: Displays the first few lines of a file. Tail [00:05:34] Usage: tail filename Function: Displays the last few lines of a file. CMP [00:05:36] Usage: cmp file1 file2 Function: Compares two files byte by byte. Diff [00:05:45] Usage: diff file1 file2 Function: Displays the differences between two files. Sort [00:05:50] Usage: sort filename Function: Sorts the lines of a file. Find [00:06:00] Usage: find directory -name filename Function: Searches for files in a directory hierarchy. CHMOD [00:06:17] Usage: chmod +x filename Function: Changes the file mode (permissions). CHOWN [00:06:24] Usage: chown user filename Function: Changes the owner of a file. Ifconfig [00:06:36] Usage: ifconfig Function: Configures network interfaces. IP [00:06:43]42 Usage: ip address Function: Shows and manipulates routing, devices, policy routing, and tunnels. Grep [00:06:47] Usage: grep pattern file Function: Searches for patterns in files. Awk [00:07:05] Usage: awk pattern file Function: A versatile programming language for working on files. Resolveconf [00:07:15] Usage: resolveconf status Function: Manages the system’s DNS resolver configuration. Ping [00:07:33] Usage: ping hostname Function: Checks the reachability of a host on an IP network. Traceroute [00:07:52] Usage: traceroute hostname Function: Traces the route packets take to a network host. Netstat [00:07:59] Usage: netstat, netstat -tulpen Function: Displays network connections, routing tables, interface statistics, masquerade connections, and multicast memberships. SS [00:08:10] Usage: ss -tulpen Function: Another utility to investigate sockets. UFW [00:08:15] Usage: ufw allow port, ufw status, ufw enable Function: Uncomplicated Firewall, a frontend for managing firewall rules. Uname [00:08:42] Usage: uname, uname -a Function: Prints system information. Neofetch [00:08:53] Usage: neofetch Function: Shows system information with an image. Cal [00:09:01] Usage: cal Function: Displays a calendar. Bc [00:09:10] Usage: echo "scale=2; 10/3" | bc Function: An arbitrary precision calculator language. Free [00:09:17] Usage: free Function: Displays the amount of free and used memory in the system. DF [00:09:22] Usage: df -h Function: Reports file system disk space usage. PS [00:09:30] Usage: ps aux Function: Reports a snapshot of the current processes. Top [00:09:39] Usage: top Function: Displays Linux processes.
@SeraphineAdraku28 күн бұрын
i really appreciate your help.. you made it easy here
@raj_gangwani23 күн бұрын
🫡🫡🫡
@Sriram-j3u16 күн бұрын
Thnx dude 😊
@smileorcry72047 күн бұрын
You are so gooood.May you get successful in life.. my notes are made.❤
@splashscreen925 күн бұрын
A gentleman and a scholar! Thank you for this. Didn't even have to watch the video. Just goes to show that it's best to learn through reading the documentation, user manuals. It's not only faster but way more informative than watching KZbin videos. It's best if you actually want to learn these skills and remember them. No more 10 hour long "tutorials" that are often wrong and outdated. Even 10 minutes is too much time lost when you could have been learning something more useful. That combined with hands on experience using the command line and you're in business.
@Average_Josh2 жыл бұрын
As a network engineer, I thoroughly enjoy your videos and appreciate the effort and energy you put into them.
@sulimanmuhammad135010 ай бұрын
hey i have one question, is it possible to contact you? (i am studying to be a network engineer)
@Average_Josh10 ай бұрын
@@sulimanmuhammad1350 just put your question here and I should get back to it within a week since I figured out how to find my old comments.
@ender_380710 ай бұрын
@@Average_Josh How do you memorize concepts like its so hard to try and remember all the info. Im trying to get into cyber but I want to learn networking to be good at it.
@Average_Josh10 ай бұрын
@@ender_3807 I don't tend to memorize things. I am constantly looking things up. However I work to gain an understanding of how things work. I understand how eigrp, ospf, and bgp function, the specifics can always be referenced. I work to make my brain kinda like packet tracer was. So I can simulate in my head what is going on, even if I can't emulate the full process. That's how my brain has always worked. It also helps me that I enjoy doing that.
@LitheInLitotes9 ай бұрын
He is not truly a network engineer. He only knows crappy token ring
@CaptainMooz Жыл бұрын
Side note: "clear" (Ctrl+K) not only clears the viewport, but the history too. Therefore, if you wanna see what command you run before - it will be impossible. Instead, if you want to clear the viewport but retain the history, use Ctrl+L
@simonnt Жыл бұрын
Just tried it on fresh Kali, clear doesnt clear the history and ctrl+K does nothing
@mianzahid8744 Жыл бұрын
Is Ubuntu acceptable to use for Linux commands?
@silentobserver9095 Жыл бұрын
Just use: clear -x It won't clear scroll history
@Nobody-eg4bi Жыл бұрын
@@mianzahid8744 yep
@shadynumbers8561 Жыл бұрын
@@simonnt Ctrl + K erases everything after your cursor Ctrl + U erases the whole line Ctrl + L erases all bottom lines except the line you are typing
@NathansLife Жыл бұрын
bro just taught me more than almost 7 weeks of college classes. Thank you, wish I had lecturers as passionate and well spoken like you.
@gggggggz59 ай бұрын
You should really research your college before signing up. Also should probably learn that Linux commands isn't universal for all Linux os' if you didn't learn that you probably didn't go to college
@FistofSpirit8 ай бұрын
@@gggggggz5😬…
@arandomdude870110 ай бұрын
Being a newbie to linux, I have been taking a course. Its nice to watch something like this and actually know most of the commands already. Feels motivating.
@arandomdude87013 ай бұрын
7 months of studying later. Its funny to think I felt good knowing just these basic commands lol. Just got my linux+ and getting ready for RHCSA.
@xskim63583 ай бұрын
@@arandomdude8701good stuff mane
@tanvir39472 ай бұрын
@@arandomdude8701 So these 60 commands aren't enough?
@hornyjesuz2 ай бұрын
@@arandomdude8701 Which course?
@LordTrashcanRulezАй бұрын
@@tanvir3947Nowhere near enough, they're awesome for beginners but obviously not everything
@moviepracticing9 ай бұрын
This might be the greatest KZbin video ever ever made, not that it helps me, but the ease of information that is not as digestible. Great work. This was a master class in tutorials
@michaelgalloway93625 ай бұрын
Saying this again because you deserve the engagement. You basically condensed the better part of 1-2 Linux courses over 10-14 weeks into a 10-minute video.
@cyrusdeath2 жыл бұрын
I don't comment often, but here's one for ya. I'm a Sr. Neteng at a small Telco, and I've got two peers that are constantly watching your videos and telling me what they learned from you. I'm pretty impressed with how much they have absorbed from your videos, including this one! Keep up the great content, and maybe you can slide over to the dark side of networking and ditch Cisco for Juniper :)
@domxgun Жыл бұрын
Aruba is the way my friend.
@jarvis32aj Жыл бұрын
I love these videos... Not for the initial learning, but as a quick refresher when you're trying to memorize all these or don't use them everyday, it's perfect.
@suraj982222 жыл бұрын
I'm studying for Comptia A+, this video covered many basic command needed to use Linux. Thanks
@TheDrAkira Жыл бұрын
I've been procrastinating your channel for years man, mostly because of my own ego as an IT and Cybersecurity specialist but sometimes you need to step down a notch and start from scratch just to see those many many things you overlooked over the years cutting corners to win the rat race. I just decided to left the rat race and start my own business and BOOM now I have time to properly do all this thing again. Thank you, I really enjoy reviewing my entire career in IT with you Chuck! Not because I want to become a better productive employee, nah., because i want to know stuff better this time just for me!
@bunnysoft11 күн бұрын
@TheDrAkira so how is you business going after the year? I'm just curious random guy from internet :)
@emmap4339 Жыл бұрын
This video nails it!!! Absolutely excellent: No BS, no blabla, just pure knowledge. The BEST of all. Thanks Chuck!
@santosvision Жыл бұрын
I love this dude... im leaning cloud computing (GCP) once i land a job, im defff supporting this channel in everyway i can... thank you Chuck!!
@gggggggz59 ай бұрын
Graduate from highschool first
@muditkhanna81648 ай бұрын
@@gggggggz5 always remember that there is a child behind the keyboard if you see "once i land a job", chill out dude, he's just a kid, we were like him once too.
@weapoolx1826 ай бұрын
@@muditkhanna8164 "there is a child behind the keyboard" yeah, the same kids they use slang acronyms and/or abbreviations such as .... tbh, kewl, sh, yolo ... yada yada 🤣😂
@stayingfitandfocused5 ай бұрын
Here for the same reason rn. Interview I'm 10 minutes lol
@manikandanraman2 жыл бұрын
I didn’t even realised how fast 10 minutes went, but the amount of knowledge shared in that short duration was very helpful.
@Fight011 Жыл бұрын
I finished this while video in 2 days 😀
@maroneda1063 Жыл бұрын
Thank you Chuck. It's been 4 months that I'm using Linux bare metal [11 months if virtual machines is counted, 9 months if wsl is counted]. It all started when your video appears in my feed saying "you need to learn virtual machine right now", still remember that feeling, heart beats so fast, hands are getting cold while setting up my very first virtual machine lol. Thank you, learned a lot in this video, and all of ur vids😊❤️
@gggggggz59 ай бұрын
Hands shaking on making a machine that literally can be fucked up without worry ? Are you a child playing with a pc for the first time ?
@noss4032 жыл бұрын
1:27 > will replace content of existing file. >> will append.
@Zer0kbps Жыл бұрын
this is my kind of video, no pre-yapping, no post-yapping just 10mins of actual. Another Sub here mate.
@gggggggz59 ай бұрын
10 minutes of yapping about non universal commands
@gogogomes70252 жыл бұрын
So happy that i knew 99% of it, i've been studying linux for a couple of months and i guess i just haven't been giving myself enough praised for all i learned so far.
@scary34 Жыл бұрын
that 1% was worth it because the video was just 10minutes
@Awarepine76436 Жыл бұрын
This guy summarized 15 weeks of unix learning in just 10 minutes
@jk95545 ай бұрын
…but didn't explain a lot of what the options or "funky regexes" did. Yes, it's a nice reminder of which commands there are, but otherwise kinda unhelpful.
@NerdyEd2 жыл бұрын
I have been in this industry 20 years and I was sure I must know all of these. Never used cmp before. I usually just use an option on diff. Thanks for the new command.
@brianogram51942 жыл бұрын
For shutdown/restart you can just use "shutdown now" without the -h. Adding -h leaves it up to the system to decide whether to halt or actually shutdown. The -H is for halt which stops processes but doesn't cut the power. I haven't seen anyone halt a system in the field.
@SALTINBANK2 жыл бұрын
reboot & shutdown 0
@marvinmartin13572 жыл бұрын
Good info… our LOP has a shutdown -h now…. Later I learned I could just type reboot
@fritzlb Жыл бұрын
Also, depending on your distro shutdown may not actually do anything or exist as a command. systemctl poweroff is cleaner then. (can also be caused by typing su root instead of su root - before shutdown because only the latter properly changes environment variables…)
@prashlovessamosa2 жыл бұрын
Man you are awesome i want a teacher like you.
@guillermocisneros8632 жыл бұрын
I guess already you have it 😜
@TechieTommy12 жыл бұрын
I was thinking the same thing.
@benbaron32182 жыл бұрын
awesome indeed.
@investasisium6872 жыл бұрын
Gigalinux chad
@deker09542 жыл бұрын
Right here he is.
@rocko6439 Жыл бұрын
I haven't use unix/linux for more than a decade. Watching this video made me feel nostalgic. I remember getting MKS Tools just to get started with Unix commands. Later, I got Coherent (Unix for PCs). When Linux became popular, they close.
@no0bstyle7412 жыл бұрын
It would be a pleasure to have you as a teacher in a week long course. It wouldn‘t be as boring as in most other courses I attended so far and I believe I would take an understanding and knowledge with me as of a week long training. Thank you for all your efforts!
@mridulranjan1069 Жыл бұрын
Make sure you have 15000 coffees ready, he can't do shit without it and a gazillion tantrums! He can barely act professional, can't be a teacher
@Blaxolot Жыл бұрын
This is amazing, I'm just starting my adventure with Ubuntu on M1 MacBook Pro using a virtual machine with UTM and I really needed some interesting and useful commands and boom your video appeared on the home page. You explain everything very simply and in a short time. And I absolutely love your videos, keep it up 🙂
@krishombre2 жыл бұрын
I'm a sysadmin and use Linux for years, I'm glad I knew all the commands shown on this video! :D Keep up the great work Chuck!
@timarmstrong87652 жыл бұрын
I would love to be sys admin as well but with self taught Linux CLI, it take me nowhere. At the end experience matter
@krishombre2 жыл бұрын
@@timarmstrong8765 I don't fully agree, there are many companies looking for people who have no experience and are passionate about Linux and getting better! I've enrolled in Computer Science university some years ago, but I paused it because it was not really interesting, I wanted hands-on experience. I started learning Linux and coding by myself in my free time and started in a hosting company as a Junior Support Engineer up to Senior Technical Engineer in 3 years and then I was mentoring members of our team. After that I joined a company as a sysadmin, so everything is possible if you are passionate about what you are doing! :) Good luck mate!
@aleenajoseph34149 ай бұрын
What is the .awesome extension used with echo?
@harshpanchal1393 Жыл бұрын
@NetworkChuck You are amazin. Saved my 10 hours of studying and your videos are actually the best ones out there. You are always my number 1 choice for anything related networking or learning something new. You are Amazing. Keep up with the good work
@X19-x5f Жыл бұрын
Great video NetworkChuck. I'm a little farther along in my Linux journey that a beginner so this rapid-fire format is great for me. I can do my research on my own for the commands that are unfamiliar to me. Thanks man! Love this channel.
@goldfield782 ай бұрын
The info, pacing, humor and energy of this tutorial was just amazing, a masterpiece.
@FlaxTheSeedOne Жыл бұрын
I also love: tldr - for man but with examples in quick tree - to look how the folder struckture is below the current or specified directory
@FlakeyPM5 ай бұрын
I've been using Linux for 25yrs and you taught me a couple of new ones. Cheers😁
@Zancb Жыл бұрын
@ 10:00 - using 'kill -9' will send a SIGKILL signal to the process, which can cause issues. If the process has an open port or writing to a file, it can cause issues with your operating system. Best practice is to use a regular 'kill' command to send a "SIGHUP" signal, which tells the process to try to clean up what it was doing before exiting.
@billeterk Жыл бұрын
I think the default is SIGTERM rather than SIGHUP
@egor.okhterov2 ай бұрын
If SIGKILL will cause problems to OS then OS will not allow SIGKILL. SIGKILL will not work if the process is in uninterruptable state.
@abrahamsimonramirez2933 Жыл бұрын
I knew them all and more(after over 15 years growing my expertise in linux) but I enjoyed watching this video, I just enjoy anything linux,programming and networks!
@peacefusion6 ай бұрын
whos here because they have forgotten 90% of commands again
@abird82542 ай бұрын
Not me
@M3BusssinАй бұрын
Not all of us are drug users sorry bub
@darviniusb11 ай бұрын
Linux desktop is my daily machine for over 10 years now, but i am in linux space since 20 years and even if i know many of these commands is still watch these videos because it makes me remember other commands i don't use that often or i find out something new even after so long, and makes me love linux flexibility even more. And i love this channel.
@gggggggz59 ай бұрын
So you watch a 10 minute video to hunt down a command instead of just googling it ? Sure ya do
@stayingfitandfocused5 ай бұрын
Hes just wstching it to watch something he enjoys. Not thst deep man lol @@gggggggz5
@graceambassador653 ай бұрын
Wow! 20 years! I am 72 and have been learning for 2 months.
@yohannestadiwos2 жыл бұрын
One of the best videos you ever made.🤜
@Zancb Жыл бұрын
@7:57 - traceroute will list every hop /that responds back to the trace/. Not every node will necessarily respond back to traceroute, FYI.
@MGTRN-tw5uq2 жыл бұрын
Excellent content. Everyone that uses Linux needs to watch this...RIGHT NOW!
@olakunleoni15142 жыл бұрын
Chuck you're a beast! Just know that. This is too powerful. Thanks man!!!🙌🙌🙏
@karthi-h2y10 ай бұрын
Awww....This takes me 12 Years back when i started as a fresher in IT. My first job was to manage ETL & Databases in LINUX environment. Seeing this video takes me back to those days, also remembering some wonderful things i did and hope that helps in a upcoming interview!
@paulosullivan34722 жыл бұрын
I would also add the command locate. I use it all the time as a quick way to find files etc on the system.
@farahdilem73872 жыл бұрын
Man!!!! I learn much better in your videos than at school. You are a genius
@jacquesorde6796 Жыл бұрын
he is
@cutie_dutch3145 Жыл бұрын
As an App Support Engineer, using UNIX OS for support. The commands are almost similar from UNIX to Linux. Thanks for sharing this, Sir. 😊
@gggggggz59 ай бұрын
The commands really aren't relatable ? We get that you know big names but it's almost comical when you just throw them around like that without knowing what you're talking about
@MatteoSuca4 ай бұрын
@@gggggggz5 bro's name is cutie dutch come on how can you be mad at him lol
@LordTrashcanRulezАй бұрын
@@gggggggz5The commands are very similar in naming scheme and function.
@shwn2737 Жыл бұрын
OMFG. Thank you so much for your amazing video. This is the best video I've ever seen for me personally as an inpatient learner. There are thousands of Linux command videos around on KZbin, but they either talk slowly or are unprepared. I am glad I found your video. Thank you!
@johnd9424 ай бұрын
@shwn2737: You disrespectful asshole! Be careful you don't get struck down using such blasphemy.
@joebashour2 жыл бұрын
This is amazing! I wish I found out about your channel when I first started uni. I would have saved a lot of the hours being lost.
@Sawta Жыл бұрын
I wasn't familiar with shred, so I looked it up, and found an interesting warning that users should be aware of: "Take note that shred relies on an important assumption: that the file system overwrites data "in-place." This assumption is the traditional way to do things, but many modern file systems do not do things exactly this way." It goes on to explain that if you use log or journal structured file systems like XFS, Ext3, RAID, etc. the command may not work as expected.
@Xalimeo2 жыл бұрын
Absolutely incredible video! I already knew almost all of them but you created a masterpiece of compressed informative walkthrough of important and handy linux commands!
@jsaenz425 ай бұрын
Been in linux every day for like 12 years and still got some gems from that. Well done
@theREALfrancyz Жыл бұрын
Love these kinds of content. Brief, concise, and packed with so much knowledge.
@darlingred60549 ай бұрын
Hey. I have ADHD. It's really bad and its hard to focus. Your video pacing, energy, and humor is really fun and helpful to me and enables me to learn and even be enthusiastic about this. Thanks for this video and the one about SQL basics. an SQL advanced tutorial would be awesome, learning things like how foreign keys work and how to manage more advanced SQL systems.
@geofreypejsa542 жыл бұрын
Excellent video. You present it in an easy-to-learn fashion. Thanks!
@okunoyesouleiman911710 ай бұрын
Everytime I watch your video, I always have a reason to watch it more. Thanks so much sir
@400volts2 жыл бұрын
Awesome! And you timestamped all the commands. Kudos man.
@darkerthanblack85942 жыл бұрын
This guy timestamps!
@mouadaloubi1836 ай бұрын
we need a linux course from you bro your explanations and the way you hand the information are literally the best
@theguyinthefunnyhat Жыл бұрын
I've used Linux for almost a decade as my primary OS on my desktop and laptop, and I never knew about shred. 95% of this stuff I knew already. About 5% of it I use on a regular basis - Vim, sudo apt update and ssh/sftp mostly. Sometimes mv for moving a boatload of files around, or some combination of commands to grab a list of certain files and move/delete them.
@ShashiPaswan-s8u2 ай бұрын
Best Linux Commands tutorial video on the KZbin, very effective and straight forward. Thank you so much.
@seddiec7875 Жыл бұрын
Took a month long Linux intro course. This video teaches everything that took that month but in a much more to the point and easier to understand way.
@viswavenkat51743 ай бұрын
excellent video. I usually don't comment on any of the videos. but he made me do it. He taught me all the Linux commands that I learned in my 4 year engineering course. Hats off to you sir
@tgmct2 жыл бұрын
Beware! netstat is NO longer included with some Debian based distros. They say it's depreciated. Maybe they are really trying to depreciate the knowledge of us that have been around for a while. You can install it again with the net-tools package available in some distros.
@joltrail3588 Жыл бұрын
It has it issues and was replaced, which was partially mentioned netstat -> ss ipconfig -> ip
@rahimzaghdar30262 жыл бұрын
Seriously this dud has some serious teaching skills great video!
@gracienlebel48242 жыл бұрын
Very nice! I am surprised to know that I already know half of the commands that you listed, thanks!! ❤️
@RzariRzari3 ай бұрын
I usually watch these type of videos to relax as I know all basic commands. I'm not super user in any means, just regular guy working on Linux, but 'cd (space)' will be so useful
@TechTravoSandeep2 ай бұрын
I made a video on password cracking and short videos on Linux Commands.kindly watch it and do support ☺️
@johnny7sk925 Жыл бұрын
Could be little bit slower, but content is great and useful. Ďakujem.
@FlamingCockatiel Жыл бұрын
I found myself pausing to practice. Yeah, it was fast.
@graceambassador653 ай бұрын
@@FlamingCockatiel I changed the 'speed' to 3/4 and "still Paused to practice" :)
@satsukynolife4094 Жыл бұрын
as a first year student in informatics, you are my hero and i love you
@vivekpandey952 жыл бұрын
Great video, really helpful. please continue making more awesome stuff like this
@jamesa.5052 Жыл бұрын
Honestly, all your videos are amazing> Thank you> Thank you
@stefandemerov84232 жыл бұрын
Nice list, also made me happy, that I know them all :)
@avi.chan238 ай бұрын
Damn... that´s probably the best linux basic commands training ever put into the internet. I am completely new to linux and got a bit scared but your video is amazingly informative, only giving information about what command, what to use it for and how it basically works. Thanks a lot
@Kr3m_2 жыл бұрын
10:45 Just wanted to point out that it's faster to use sudo poweroff than sudo shutdown -h now
@mariamhammatto57532 ай бұрын
u r right
@New_Genesis_dev5 ай бұрын
This has to be the video that has had the most impact on me! I recently transitioned into DevOps and i need to learn Linux and this is so straightforward! Coupled with ChatGPT i think I'm gonna soar!!!!!
@zajlord29302 жыл бұрын
that feels pretty good to already know most of these commands
@Boyfred1 Жыл бұрын
i literally have a operating systems test next week and cried when this video popped up on my screen. Thank you so much Network Chuck. someday when I become an actual programmer, i will buy you a coffee :)
@jessica.roberts2 жыл бұрын
Thank you 😊
@pavileanumircea1446 Жыл бұрын
One of the best videos on internet. Also, every second in this video is useful which is crazy. Thanks Chuck
@devanshkanda96182 жыл бұрын
Awesome Chuck❤️❤️
@kiiiburn2 жыл бұрын
I teach a group Afghan refugees (network/security/linux) and this video is great for them. Thanks!
@TKontent4 ай бұрын
My dad was watching me type “finger dad” and was looking at me like 🤨
@shurikensage2 жыл бұрын
I recently started learning linux, i think this video is for me, it just came the right time . Thanks
@steaksbeers2 жыл бұрын
Personally I'd add "cd -" to go back to the last directory, sed and tr are useful with grep and awk, and "while read do done", super useful when looping through find results (which can use a command that's escaped with "{} \;". I used to pipe stuff into perl -e a lot too but I haven't done much scripting for the last decade or so, I started about 25 years ago in the late 90's on Solaris and sh & ksh before bash.
@steaksbeers2 жыл бұрын
oh, also must suggest 'dd' command for super useful way of converting data. About a handful of times I've done a full disk replication using an Ubuntu recovery loaded from USB drive, and these handful of times have saved my system state without loss of data, at no cost and enabling me to fix a problem with a backup state. I couldn't find a Windows equivalent that didn't involve substantial cost for drive duplication.
@SimplifyingChaos2 жыл бұрын
Everyone should know this command "sudo !!" It repeats your last command with sudo infront, for those times when you forget to sudo your commands.
@Conzales Жыл бұрын
👌Awesome video Chuck to get people started quickly. It all begins with being pointed in the right direction when trying to learn, newbies en pro's alike. These things took me years to learn by googling it together. 👍 Thank you, nice work.
@AlonsoVPR2 жыл бұрын
This video is directly going to my favs! even though I have 10+ experience with linux you never stop learning Thank you sir!
@HTWwpzIuqaObMt2 жыл бұрын
Awesome. Good vid :)
@VacumOvale Жыл бұрын
as a linux user i can confirm the best tool to have is google, because most of the commands are rarely used and will be forgotten sooner or later. videos like these are great way to refresh your memory of the things i learned in the past and forgot.
@shreyasnair022 жыл бұрын
Also tell us about plugins you use, like fzf or j and stuff. It's hard to find out what people are doing that make their experience productive
@Shywizz2 жыл бұрын
Tbh i think the whole point is that you create your own productivity
@gnarlin4964 Жыл бұрын
When you forget to add sudo to the front of the command that you just executed, just type: "sudo !!" (without the quotes) to run the previous command with sudo. Clear the terminal with Ctrl+l (lowercase L). Much faster than typing clear everytime. Type: ll (lowercase LL) instead of "ls -al". When running ps there's no need to add the dash (-) for the aux. "ps aux" works exactly the same as ps -aux. Save one character. Type: "cd -" to go to the previous directory that you were just in. Extremly useful.
@bgodley5042 жыл бұрын
Could you do a video on bash tricks from beginner to advanced? Beginner would be like piping and redirecting stdin, stdout, and stderr. Advanced would be like all the alt hot keys and similarly esoteric tricks.
@Psiaqu2 жыл бұрын
You don't have to add a space after cd to go home also, shutdown now without -h works fine Amazing video, thanks.
@Bussysaka2 жыл бұрын
Continue python course please!!
@CattopyTheWeb2 жыл бұрын
Yes!
@renerivera81152 жыл бұрын
I'm so recommending this video to on board newbies in my development team. Thanks.
@th33clipse2 жыл бұрын
Can we ALL vote to get chuck his own school?
@vishtem332 жыл бұрын
fd > find. Yes, you may need to install it. And if you have a really complex query, you may need to fall back on find. But for common searches, it's simpler, more concise, easier to understand, and faster. Personally I just .. don't use find, ever, anymore. It's unnecessary. On another topic, the grep example also seemed like it was really an interactive task and so using fzf instead of grep would be more effective.
@razorwire1112 жыл бұрын
Thanks for putting this together. Been messing around with Linux for awhile and this has helped put all the great commands in one place to reference.
@NASAcoverage7 ай бұрын
Im brand spankin new to Linux & Cyber Security field & your vids have been awesome! Im making my way through the Google cert Foundations to Cyber Security. Thanks for providing legit value in this world!
@DarriusLondon Жыл бұрын
I watch these on the way to work and play around once I’m off work these help with my IT courses thank you!
@r.c8756 Жыл бұрын
It reassured me that I knew about 97% of these. Thanks for the remaining 3%. I’dd add the shutdown and reboot commands is the "logoff" command which can also be helpful when you f*ed up your session or it has become buggy for some reason and you want to give it a chance to fix it without having to restart the entire system. I’d also mention the "du" command that is a bit similar to the "df" command but more appropriate to look into the disk usage of a specific directory tree for example.
@harshanaini15098 ай бұрын
You are the man who explained in a short time! kudos sir
@rogerhuston82872 ай бұрын
As an MS DOS user 20 years ago, this was perfect for me to get back into cmd line.