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Ай бұрын
I'll have to see what it is in OpenBSD.
@Not-THAT-ChrisPratt2 жыл бұрын
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Ай бұрын
That would be very useful.
@rotflol66662 жыл бұрын
watch -n 10 -d is my default goto, with df -h or ls -la
@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.
@ritchiebluesman31262 жыл бұрын
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 🥂🍀
@binbashbuddy2 жыл бұрын
I was gonna recommend you do inotify and incrontab, see someone else also mentioned them. Very important tools on our servers.
@Goldcrowdnetwork2 жыл бұрын
Extremely helpful as all of your tutorials have been
@TradersTradingEdge2 жыл бұрын
Love this series, thanks Jay. Have a happy Christmas time.
@damianpodgorski69772 жыл бұрын
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-ChrisPratt2 жыл бұрын
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 Жыл бұрын
thanks for the video jay
@remychrist6211 Жыл бұрын
very good guy , very good videos - Linux is so easy with it - Thank you very much Jay
@Ranblv2 жыл бұрын
good video. I might have the courage to start the bash series this weekend.
@omarcaballero96802 жыл бұрын
Very Cool. Thanks
@Dave-kq7gv2 жыл бұрын
I enjoyed this tutorial
@rotflol66662 жыл бұрын
use watch to build a custom top-like overview of system resources, files, cluster info or whatever you want to monitor 8-)
@bobsisic57142 жыл бұрын
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_prichan2 жыл бұрын
really helpful. thank you!
@sayedsareem2 жыл бұрын
thank you for these amazing videos!
@peterjansen48262 жыл бұрын
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).
@rotflol66662 жыл бұрын
have a look at bpytop to do all that for you
@bobbydigital93232 жыл бұрын
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_sagymbai2 жыл бұрын
Hello Jay. Can you make some lessons about Linode?
@leondennis46592 жыл бұрын
Can you watch your router traffic?
@seanfaherty2 жыл бұрын
Wireshark
@leondennis46592 жыл бұрын
@@seanfaherty Thank you.
@theshowmanuk2 жыл бұрын
Cool. Thanks.
@wesgould12 жыл бұрын
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.
@hansisbrucker8138 ай бұрын
If you use `watch -n 1 -t date` you'll have a clock 😂
@mihai65642 жыл бұрын
thanks
@farazhassan64172 жыл бұрын
Lovely!
@richardpremeaux44932 жыл бұрын
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 Жыл бұрын
That is so usefull ! :)
@mickhick952 жыл бұрын
Good video
@krishnapillai61572 жыл бұрын
This similar to tail -f command
@rotflol66662 жыл бұрын
watch -n 10 -d 'kubectl get nodes,pods -A -o wide'