just passed my 1102 and got my certification. Thank you professor!!!! and good luck everyone
@vitme0090 Жыл бұрын
Any tips on what to study???
@joebe12311 ай бұрын
i know this is super late but you could check out the professor messer practice exams and crucial exams. the messer exams were the closest to the real exam if yo uask me and they explain all of the wrong and right answers@@vitme0090
@joebe12311 ай бұрын
@@mister4875 I don't know I haven't used them but some people say they are good but contain some information that isn't on the exam objectives. I just did crucial because it was 10 bucks for a lifetime membership. They have PBQs and flash cards. The only issue with Messer is he doesn't make more tests lol. They are really worth the $50 and I feel good supporting someone like him.
@shadowmario11111 ай бұрын
Agreed. I was able to pass 1101 with a 704, but I'm having a harder studying for this one.@@vitme0090
@budimon_4 ай бұрын
doing it tomorrow thanks :D
@elimanator2 жыл бұрын
Definitely the harder of the lessons for me but after revisiting and writing it all down after hearing it I get it a lot better now. Awesome video
@GaryBearIndiana3 ай бұрын
That's how I'm able to comprehend and retain better, too. So much information in this section 😅
@Accuni Жыл бұрын
Doing it in a VM Ubuntu alongside the video is pretty fun, and clears up some misconceptions I had while only writing notes/not testing it out myself. I find the Linux terminal is much more of a cohesive and friendly language to learn than Windows CLI. Thanks as always, professor.
@ReDiiKuLuS Жыл бұрын
I agree, and it helps those like myself who have to do the thing to learn... So a VM has made this a breeze :D
@HughIrons Жыл бұрын
Powershell is definitely easier to use than command prompt and has a lot of the same commands as bash.
@s3thsational Жыл бұрын
Just took 4 pages of notes on this video, there's definitely a lot to remember about Linux commands.
@austintennis2097 ай бұрын
I was overcomplicating chmod and how the octal notation worked but this just showed me how truly easy it is, thank you.
@keniqueanderson54092 жыл бұрын
Man these videos are great. Brand spanking new to the IT world and your videos have dramatically increased my comprehension. Well done Professor Messer. Thanks for this great content.
@mariamhasan37336 ай бұрын
This video is so helpful for those who are starting out to learn cyber security
@CrownedJulz9 ай бұрын
Google IT Professional Support Cert really helped with these concepts - good review here and picking back up like a charm. Thanks Messer!
@PUBBYDO Жыл бұрын
20:21 I thought that was humorous, the way you said that. Excellent video!
@christianwinter202 жыл бұрын
Great video and content- impressive how many informative content you have packed into this one video :-) also thank you for alle the great and free content you have produced so far :-) Many of your videos have helped me to build a foundational knowledge related to managing operating systems, networking, and security related topics 👍🏻 I would love to see more Linux related content from you >> LPIC-1 or Linux +
@jjvexist6 ай бұрын
in regards to the apt-get command: How does linux obtain the files necessary to install wire shark? Does it pull it straight from the web after inputting the command, or are the files pre placed within the OS and the command is unpacking them?
@dcirino246 ай бұрын
They are pulled from servers that are defined as sources in the package manager, your distro will have some defaults but in some cases you may have to add a new source to install something. These are stored at /etc/apt/sources.list.d in Ubuntu
@nolaz010Ай бұрын
breaking down $chmod step by step and only viewing none=0 read=4, write=2, and execute=1 made it insanely easy for me to grasp the concept of what to input for the mode instead of memorizing 778 different modes
@curtislee78522 жыл бұрын
Hey professor. leaning what i can, looks like i am going to be here a longtime.
@phillipivanov74102 жыл бұрын
great video proffesor!!!
@Bosscona Жыл бұрын
Great Summary Professor! The video is concise and very easy to follow
@phu33932 жыл бұрын
To be honest, this video inspired me to study coding lol Have you considered teaching coding classes? 😄 Thank you professor.
@Ceez350 Жыл бұрын
Don’t do coding its like learning a new language
@normalthenormalguy1456 Жыл бұрын
how is the coding journey going?
@AtraxaApologist Жыл бұрын
@@Ceez350 Easier in some ways. With a language if you don't have another person who speaks it to practice with, it's a lot harder. With coding, the best practice is just doing what you learned on a screen.
@Fizz17 Жыл бұрын
@@Ceez350 Let the man learn what he wants to learn lol. It's not overwhelmingly complicated
@PatrickTower-ln7oi Жыл бұрын
If he taught Python the way he’s teaching this then he’d be raising an army of programmers
@DamienThorn132 жыл бұрын
While taking a class for linux, my professor would hammer in not to set permitions to 777 or use the command chmod 777
@whiteguydre Жыл бұрын
As someone who has never touched a Linux machine I wasn't expecting to learn as much as I did in this video! Would you recommend Ubuntu for Linux beginners?
@gregperez90 Жыл бұрын
I have a laptop with Ubuntu, I would recommend it. It's pretty user friendly. The most annoying thing I've encountered is downloading apps. Some must be downloaded via sudo commands, etc. It can get pretty technical.
@girlstarawesome2 жыл бұрын
Thanks for these videos!! You are helping me on my path to the CompTIA certifications
@XyZ-vv1qh9 ай бұрын
Easiest material for me. Been using Linux for years, excited to really dive in.
@akenjigibbons8645 Жыл бұрын
Impressive thank you for imparting
@raymondmoore5113 Жыл бұрын
I love seeing all of the Stargate references!
@joysticksforjesuschrist Жыл бұрын
I like to call this channel Messerpotamia.
@ifraaaxwarsame6962 Жыл бұрын
Thanks prof! Really appreciated for your great content
@hellothisis4u8 ай бұрын
I thought the cat command is used to display the contents of files?
@BrandonVout6 ай бұрын
That's just a helpful side effect, like how Viagra started out as a heart medication. In all serious, it just reads and prints the files you give it in the order you give them. The user can just choose to output it to a file, which works with any command output.
@DougFrantz Жыл бұрын
Does the mv command then actually move the file into a new file and remove the original file? Meaning it would not longer be on the same part of the physical disk?
@arstgkneio Жыл бұрын
Good question. Looked this up and apparently the file itself isn't physically copied and then deleted. Instead, the filesystem efficiently updates the file's metadata, which includes its location. This change in metadata effectively moves the file without altering its actual data blocks on the drive.
@Shanerr2 күн бұрын
It's funny that Ubunto and Mint you can just use the windows commands interchangably, Obviously that only will get you so far as there's linux only commands as well that you can't crutch a windows command for but it's interesting none the less that they're really pushing for UE for Windows users in these newer linux builds.
@Pllutus3 ай бұрын
Honestly, I've been scared about having to learn Linux, but after this lesson, I feel like it's actually easier to use than Windows😅
@nathanwade6726 Жыл бұрын
this was well done!
@gravity_well5627 Жыл бұрын
Would you ever have write access without read access? how would that work?
@BrandonVout6 ай бұрын
Yes, it's not useful for your typical files but there are a few special cases where it can be. For example, log files where you want users' systems to append their logs onto them without letting users read each others' logs. Outside of files, some commands and external devices are write-only. There's no reason to give anyone read-access to those.
@lennoxcrockett7511 Жыл бұрын
If you concatenate 2 files with different permissions what does the new file inherit?
@Bosscona Жыл бұрын
The contents add up when you use for example cat text.txt text2.txt > both.txt this is concatenate the contents of both text file in the new file both.txt
@HughIrons Жыл бұрын
I just tested this and it seems like the new file uses the default permission 644. I used the cat command on files with the permissions of 777 and 644.
@skayakitty62511 ай бұрын
linux my beloved
@hassan57082 жыл бұрын
Thanks, prof!
@youngskeamz72702 жыл бұрын
It’s tuff to learn Linux language
@videogames94152 ай бұрын
I just so happen to have a steam deck so I followed along using that 😂