Linux Crash Course - The "watch" Command

  Рет қаралды 15,921

Learn Linux TV

Learn Linux TV

Күн бұрын

Пікірлер: 38
@kote315
@kote315 2 жыл бұрын
At work, I used watch to diagnose scales. There were scales that transmitted data to a computer via USB. The program from the manufacturer allowed me to get the weight once, I ran it through watch with a minimum delay (0.1 second) and moved the cable to determine the bad contact. Worth mentioning, in FreeBSD the built-in watch command does something very different. The command from GNU/Linux is called gnu-watch there.
@wisteela
@wisteela Ай бұрын
I'll have to see what it is in OpenBSD.
@Not-THAT-ChrisPratt
@Not-THAT-ChrisPratt 2 жыл бұрын
I use the watch command in connection with the sensors command to keep an eye on system temps: 'watch sensors -f' The -f flag puts the output in degrees F, the default is degrees C.
@wisteela
@wisteela Ай бұрын
That would be very useful.
@rotflol6666
@rotflol6666 2 жыл бұрын
watch -n 10 -d is my default goto, with df -h or ls -la
@wisteela
@wisteela Ай бұрын
I will be making a lot of use of this command. And for fun, a fortune every minute. I love finding out about new commands to me.
@ritchiebluesman3126
@ritchiebluesman3126 2 жыл бұрын
Hi from France, Former Linux fighter since RedHat 5.5 where you had to install everything in text mode, I am currently on the Zorin OS 16.2 Core. Thanx for your humour and very serious videos... 😎 Best wishes 2023 🥂🍀
@binbashbuddy
@binbashbuddy 2 жыл бұрын
I was gonna recommend you do inotify and incrontab, see someone else also mentioned them. Very important tools on our servers.
@Goldcrowdnetwork
@Goldcrowdnetwork 2 жыл бұрын
Extremely helpful as all of your tutorials have been
@TradersTradingEdge
@TradersTradingEdge 2 жыл бұрын
Love this series, thanks Jay. Have a happy Christmas time.
@damianpodgorski6977
@damianpodgorski6977 2 жыл бұрын
Enjoyed this video! Your channel is a real gem on youtube. Please continue producing such a great content in 2023 :) Happy holidays for you and your family
@Not-THAT-ChrisPratt
@Not-THAT-ChrisPratt 2 жыл бұрын
Great video, as always, Jay! I realized something when you ran 'watch free -h' and you did not go into the details about the free command. Your videos follow one of the Unix principles: Do one thing and do it well. All your videos follow this, and I appreciate this. ;-) Keep up the great work.
@sussusamogus7831
@sussusamogus7831 Жыл бұрын
thanks for the video jay
@remychrist6211
@remychrist6211 Жыл бұрын
very good guy , very good videos - Linux is so easy with it - Thank you very much Jay
@Ranblv
@Ranblv 2 жыл бұрын
good video. I might have the courage to start the bash series this weekend.
@omarcaballero9680
@omarcaballero9680 2 жыл бұрын
Very Cool. Thanks
@Dave-kq7gv
@Dave-kq7gv 2 жыл бұрын
I enjoyed this tutorial
@rotflol6666
@rotflol6666 2 жыл бұрын
use watch to build a custom top-like overview of system resources, files, cluster info or whatever you want to monitor 8-)
@bobsisic5714
@bobsisic5714 2 жыл бұрын
Can I build a web page or server for all my photos for people to look at , thru a iPad only , or is that what Linode is for?
@ar_prichan
@ar_prichan 2 жыл бұрын
really helpful. thank you!
@sayedsareem
@sayedsareem 2 жыл бұрын
thank you for these amazing videos!
@peterjansen4826
@peterjansen4826 2 жыл бұрын
I have been combining watch with sensors for years and of course I aliased it. To see the temperatures of my hardware and the power of my graphics card. Sadly there still is a bug in the drivers for both the fan-rpm (Bad motherboard-support for Linux? The graphics card rpm is shown, the case-fan and CPU-fan RPM are not) and the CPU-power. AMD used to show the CPU-power for Zen2 but quit doing that because it was not always accurate and AMD wanted to prevent users from damaging their hardware because they used wrong data (official communication from AMD).
@rotflol6666
@rotflol6666 2 жыл бұрын
have a look at bpytop to do all that for you
@bobbydigital9323
@bobbydigital9323 2 жыл бұрын
I usually use inotifytools to watch files. When my script detects changes it then does a bunch of stuff like load a file to a database.
@mirlan_sagymbai
@mirlan_sagymbai 2 жыл бұрын
Hello Jay. Can you make some lessons about Linode?
@leondennis4659
@leondennis4659 2 жыл бұрын
Can you watch your router traffic?
@seanfaherty
@seanfaherty 2 жыл бұрын
Wireshark
@leondennis4659
@leondennis4659 2 жыл бұрын
@@seanfaherty Thank you.
@theshowmanuk
@theshowmanuk 2 жыл бұрын
Cool. Thanks.
@wesgould1
@wesgould1 2 жыл бұрын
This seems very similar to inotifywait /inotifywatch. I wonder if the watch command can be used in a comparable way. I have an inotifywait script running that watches my game screenshots folder then posts new screenshots to discord automatically.
@hansisbrucker813
@hansisbrucker813 8 ай бұрын
If you use `watch -n 1 -t date` you'll have a clock 😂
@mihai6564
@mihai6564 2 жыл бұрын
thanks
@farazhassan6417
@farazhassan6417 2 жыл бұрын
Lovely!
@richardpremeaux4493
@richardpremeaux4493 2 жыл бұрын
Hey Jay I enjoy your videos. I would like see a video on the tldr command/apt. It would fit right in with your videos. We could do a: tldr watch and read along as you discribe the use of the command. It's a short version of the --man option. Folks if you want to do something crazy try this command: compgen -c. This will print a list of all the commands to the terminal. You will get about 5000 items scrolling up your screen so do a tldr on it first.
@DL2MBN
@DL2MBN Жыл бұрын
That is so usefull ! :)
@mickhick95
@mickhick95 2 жыл бұрын
Good video
@krishnapillai6157
@krishnapillai6157 2 жыл бұрын
This similar to tail -f command
@rotflol6666
@rotflol6666 2 жыл бұрын
watch -n 10 -d 'kubectl get nodes,pods -A -o wide'
Linux Crash Course - The lsof Command
23:49
Learn Linux TV
Рет қаралды 35 М.
Sigma girl VS Sigma Error girl 2  #shorts #sigma
0:27
Jin and Hattie
Рет қаралды 124 МЛН
I Sent a Subscriber to Disneyland
0:27
MrBeast
Рет қаралды 104 МЛН
Hilarious FAKE TONGUE Prank by WEDNESDAY😏🖤
0:39
La La Life Shorts
Рет қаралды 44 МЛН
Linux Crash Course - The df and du Commands
20:28
Learn Linux TV
Рет қаралды 31 М.
What is $PATH on a Linux Shell? (The Linux Crash Course Series)
21:52
Learn Linux TV
Рет қаралды 36 М.
Linux Crash Course - The head and tail Commands
18:00
Learn Linux TV
Рет қаралды 12 М.
Linux Crash Course - Easy Terminal Commands for Inspecting Hardware
19:39
Demystifying the Top Command in Linux | Linux Crash Course Series
27:08
Linux Crash Course - The /etc/fstab file
30:29
Learn Linux TV
Рет қаралды 111 М.
10 Linux Terminal Tips and Tricks to Enhance Your Workflow
44:16
Learn Linux TV
Рет қаралды 99 М.
Sigma girl VS Sigma Error girl 2  #shorts #sigma
0:27
Jin and Hattie
Рет қаралды 124 МЛН