Linux Sysadmin Basics 02.1 -- More Basic Commands

Linux Sysadmin Basics 02.1 -- More Basic Commands

tutoriaLinux

10 лет назад

143,477 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

@lakshyakhandelwal3389
@lakshyakhandelwal3389 - 24.08.2017 08:00

remove the sound of typewriter ITS SO FRUSTATING

Ответить
@oprabin
@oprabin - 08.10.2017 12:01

damn! the energy in me just got recharged when I saw Behemoth over there... \m/

Ответить
@dimuthrs
@dimuthrs - 20.10.2017 00:19

In German language is :

A for Anfang (Start)
E for Ende (end)

Ответить
@mohamedaltairy3570
@mohamedaltairy3570 - 21.10.2017 05:58

dose the bash symbol as you mentioned in the last video $ or in this video # i feel like confused since the begging of this video please tell me more about it ?!

Ответить
@nemanjavukovic2355
@nemanjavukovic2355 - 01.11.2017 19:30

Great and awesome tutorials, you help to learn linux in a simple way. :)

Ответить
@1OmniDude1
@1OmniDude1 - 06.11.2017 03:21

A - afore (as in aforementioned)
A - advance (as in advance notice)

Are two off the top of my head

*Sidenote: Thinking about a possible mnemonic also helps to solidify the concept. Bonus

Ответить
@dimashur
@dimashur - 04.01.2018 21:11

Vi not present but nano is? how is that possible? what sort of distro were you recording this on?

Ответить
@AmxCsifier
@AmxCsifier - 23.02.2018 23:33

Learned something new, thank you

Ответить
@AnShett
@AnShett - 28.02.2018 09:06

I'm a little lost. Are there some videos I missed after 2?

Ответить
@beconfident5482
@beconfident5482 - 03.03.2018 08:55

Hi Dave,
Until the last video it was as Dave@mylinuxmachine
But in this it starts with root@fel
Can you please explain me this to me soon, to continue learning it
?

Ответить
@Hari-888
@Hari-888 - 12.03.2018 13:28

I think you were having a bad day when you made this video, it's not as good as the previous ones. It's like you are rushing to get it over with.

Ответить
@dan9337
@dan9337 - 23.03.2018 17:05

A) Appetizer. The beginning of the meal. E) Espresso. The end of the meal.

yeah, that's reaching.

Ответить
@spaceiswater6539
@spaceiswater6539 - 28.04.2018 15:38

You videos are the best i have seen thank you so much.

Ответить
@ivansavelyev2640
@ivansavelyev2640 - 05.06.2018 15:22

tnx

Ответить
@ericjeansonne2973
@ericjeansonne2973 - 30.06.2018 14:12

Hey bro love the videos keep it up very informative to me thanks

Ответить
@nathanacuna
@nathanacuna - 30.07.2018 04:41

hahaha quit the script kiddie bs, that was hilarious! good to know.

Ответить
@miigoy
@miigoy - 17.10.2018 01:01

Bit confused but I'm catching.

Ответить
@stefanspinu5381
@stefanspinu5381 - 06.11.2018 00:04

If I do tail -f file_name I can indeed see the text being updated if I am writing something in it from another terminal using "nano". However, if I use "vim", I will not see the update and I won't even see the update from nano in that session - I would have to start another session. Why is that?

Ответить
@masaharu10k
@masaharu10k - 08.11.2018 00:23

Thank you Dave!!

Ответить
@thrillacious
@thrillacious - 26.11.2018 07:32

A is for Alpha - The beginning of it AAAAAALLLLLL.

Ответить
@Bergerons_Review
@Bergerons_Review - 23.01.2019 23:57

I was looking how the cat file3 will write me out "edited from link" for 20 minutes. I didn't realize it wasn't an auto information, but what he actually wrote into the file ;)

Ответить
@AbdulRahman-cb8rc
@AbdulRahman-cb8rc - 24.01.2019 09:21

The way You navigated from your last video to this was not correct for the beginners to understand

Ответить
@AbdulRahman-cb8rc
@AbdulRahman-cb8rc - 24.01.2019 10:06

->You should tell how to save a file edited in nano (i guess it's, ctrl+O and ctrl+x)
->Shutdown, restart section was good
->and please brief on the use of "vi" or "vim" command
->And, link(ln -s filename pathname) was a bit confusing at the beginning but understood later on
-> Head,tail section was easy to understand

Ответить
@vincentdejong1818
@vincentdejong1818 - 29.01.2019 21:26

Chapter 2: Linux Sysadmin Basics 02.1 -- More Basic Commands

------- General notes: ----------------------

CTRL + A To return to the beginning of a command (while typing)
CTRL + E To return to the end of the command (while typing)

UP (key) move through the bash history
DOWN (key) move through the bash history

CTRL + R search previously typed commands with specifc keyword
use multiple times (press CTRL + R) to search from most recent to oldest.
Prompt will change to: "(reverse-i-search)'keyword': command
Accept/Use found command = ENTER; Cancel = CTRL + C

CTRL + C keyboard interrupt (used to cancel things)

-------- Notes on symbols and codes: ----------

-------- Basic Codes: --------------------------

# Allows you to make comments that are not evaluated

head provides the FIRST 10 lines of a file
tail provides the LAST 10 lines of a file
tail -f provides real-time logging of last 10 lines (if a file is being written or added to, it will be displayed)

ls -l use long listing format

shutdown [options...] [time] [wall...]
shutdown -r reboot
shutdown -h halt (same as shutdown unless halt is specified)
shutdown -k don't shutdown or reboot, just write to wall
NOTE: Time can be added as "+XX" (e.g. +30) which will be counted as minutes, or write "now"
poweroff powers off machine


----------- Things and places: ----------------------

ln link
ln -s symbolic link, used to create a pointer that links to the original file
used when trying to control access to certain files for multiple parties

---------- Long notes: --------------------------

Sharing files with other users:

1. Create a file in a secure directory (users cannot enter directory)
2. Give user permission to access file (NOT directory)
3. Create a link/pointer (to that file) in a directory they can access.

Interesting to understand:

init is part of systemd (system and service manager), used to control what 'units' are running.
interesting to follow up by using the "man init" command.

Ответить
@fredhair
@fredhair - 04.02.2019 14:33

When you have a missing sudo emergency, stay in control & go to A&E ! I always come up with silly mnemonics for remembering these commands

Ответить
@compphysgeek
@compphysgeek - 19.02.2019 07:05

CTRL-r is the single most useful thing to me that I took out of this video .. ever since watching this video for the first time about 8 months ago I've been using it every day.

Ответить
@eddieoconnor4466
@eddieoconnor4466 - 02.04.2019 05:39

I'm assuming when you say "Command" R or "Command" "P" you mean the CONTROL key?....(I have no Command button on my keyboard!..)

Ответить
@markdunn756
@markdunn756 - 16.04.2019 13:42

Just wanted to say thanks for the great content. This is the first video (series) I've watched where it's really beginning to click.

Ответить
@MsJavaWolf
@MsJavaWolf - 18.05.2019 20:17

The video was fine. People serm to think that ssh and ports were the content of the video, while they were just examples.
It was mostly navigation and not that complex when you pay attention to what it's about.

Ответить
@smudgepost
@smudgepost - 31.05.2019 07:18

CTRL + R is default but I prefer fzf for fuzzy match. It's easy to install in Ubuntu based systems just watch for the option in the install to update your baschrc file or you'll miss it and wonder why it doesn't work!

Ответить
@adir6375
@adir6375 - 27.09.2019 20:59

A for Home E for End ...

Ответить
@MyTube4Utoo
@MyTube4Utoo - 28.11.2019 16:14

"Dicking around in the Kernel." If that was, "Dicking around in the Colonel," I'd know I was on the wrong channel!

Ответить
@yarek-karey6902
@yarek-karey6902 - 04.12.2019 21:47

init0 has fewer keystrokes. Didn't you say something about being lazy in a previous video?

Ответить
@electron1343
@electron1343 - 12.12.2019 02:59

E for eternal or A for Anglo

Ответить
@usingvancedplzdontban1128
@usingvancedplzdontban1128 - 12.12.2019 21:50

Fantastic shortcuts, thank you for taking out the time to show these as well. Very time saving.

Ответить
@chescarino
@chescarino - 06.01.2020 19:01

thank you

Ответить
@Charles_King1
@Charles_King1 - 20.01.2020 08:48

Whenever I try to do: tail -f /var/log/dmesg. It doesnt work, dmesg isnt there for me, I could use a little help.

Ответить
@michelecarey9668
@michelecarey9668 - 03.02.2020 06:43

Fantastic video -- the best Linux instruction I have viewed to date.

Ответить
@yuntaozhang666
@yuntaozhang666 - 20.02.2020 11:28

tail -f is very useful.

Ответить
@johnmcgiv1
@johnmcgiv1 - 10.03.2020 11:29

Well Dave I sent a couple of comments on a previous video how organised and methodical you were etc I am afraid this video went from a to e in an instant sorry for the pun. Disheartening after such an excellent start. But your heart is in the right place mate carry on with the vids I will be 70 shortly but I will stick with it well

Ответить
@garretmkiii
@garretmkiii - 12.03.2020 13:33

It was an interesting experience running $ tail -f /var/log/auth.log; lots of connection attempts from over seas. Now I see why you suggest changing the default ssh port and why I've heard so many suggesting disabling password login and strictly using keys. Today I learned someone (read: bots) is actively trying to poke my network. :/

Ответить
@brunobalbino7461
@brunobalbino7461 - 07.04.2020 13:54

HI Dave not sure if you still check the comments . Could you or someone else explain the reason for link ?
I have created a file inside a folder which is located in Desktop. After move the link of that file to Desktop , I cannot open the link , only if I move it bacl to the folder where the original file is

Ответить
@jeanrodrigues6249
@jeanrodrigues6249 - 11.12.2021 03:13

Texto

Ответить