1
Tech Tips Tuesday - what do I need to know about KDE Plasma?
25:44
2
Tech Tips Tuesday 2 - Why is Linux the best OS?
18:47
3
Tech Tuesday #3 - All about KDE Plasma
33:39
4
Tech Tuesday #4
10:21
5
Tech Tips Tuesday #5
18:35
6
Tech Tuesday #6
24:30
7
Tech Tuesday #7 - What's the "top" command, anyway?
24:28
8
Tech Tuesday #8 - how to choose between KDE and GNOME
38:53
9
Tech Tuesday 9 - is KDE or XFCE better for you?
24:14
10
Tech Tuesday 10: Linux Malware? What???? No big deal, tho, for most of us.
14:30
11
Tech Tuesday 11: Firefox privacy improved? Does GIMP make you happy? Do you like to customize your Linux life?
15:59
12
Tech Tips Tuesday - Linux Terminal Edition
37:25
13
Tech Tuesday 13: Unity Desktop, memesplanation, terminal tips, FREEdom Consultation, and GNOME...
29:16
14
TTT 14: scary terminal command, memesplanation, SystemD lead Dev to MS...
25:14
15
TTT 15: Battle of the Desktops, memesplanation, Matrix
20:27
16
Tech Tips Tuesday 17: Terminal, Console, TTY, SSH, etc...
9:15
17
Tech Tips Tuesday 18 - Linux Malware All Time High 2022, problem or not?
37:01
18
Tech Tips Tuesday 19 - How to use rsync to back up files, and more...
28:22
19
TTT 20 - How to Make Your Linux Cherry More Enjoyable & More
41:07
20
TTT 21: Moar RISC-V Linux Compatibility & More
24:31
21
Tech Tips Tuesday 22: Cool Stuff You Can Do With Linux Desktop & More
34:44
22
Tech Tips Tuesday 23: OBS Studio 28, 5 GNOME 43 Features, and More
32:35
Tech Tips Tuesday 24: Tips Galore for Terminal
26:14
24
Tech Tips Tuesday 25: 10 More Terminal Tips & KDE News
45:06
25
Tech Tips Tuesday 26: FOSS Not So Popular and More?
13:29
26
Tech Tips Tuesday 28: Danger, Will Robinson and More
16:21
27
Tech Tips Tuesday 29: npm Vulnerability, New Stuff from KDE, and Oracle VirtualBox 7.0 Released
16:12
28
Tech Tips Tuesday 30 – Tips Galore, how-to’s aplenty
27:02
29
Tech Tips Tuesday 32: OpenSSL, Vim, and the AUR, Oh My!
21:46
30
Tech Tips Tuesday 33: AppImages, KDE & LXQt
14:36
31
Tech Tips Tuesday 34 – KDE Updates, a new Cross-Platform Terminal editor, and Dxvk 2.0
14:42
32
Tech Tips Tuesday 35 – Alternatives to htop, Wayland News, and Pi, to boot.
23:27
33
Tech Tips Tuesday 36 – KDE Updates, New LibreOffice Release, and Midori Coming Back.
18:16
34
Tech Tips Tuesday 37 – COSMIC News, GIMP for Apple Silicon, and Bitwarden Password Manager News.
19:16
35
Tech Tips Tuesday 39 – Linux Phones, Unity 7.7, and PeaZip, Oh My!
18:50
36
TTT 40 – Plasma 5.26.5, Open Alternative to Digital Assistants, and More
24:01
37
Tech Tips Tuesday 38 – Video Editor Bonanza & KDE Frameworks 5.101
14:02
38
TTT 41 – Ventoy Brings More Functionality, 3 Big Docker Commands, and More...
18:40
39
TTT 43 – KDE 5.27 beta, GCompris 3, and WINE 8 Released
12:04
40
TTT 42 – KDE Frameworks 5.102, KODI 20 Released, and GNOME chatGPT extension
15:59
41
TTT 44 – ‘head’ command, Flatpak vs Snap, and OnlyOffice 7.3
23:14
42
TTT 45: Wonder Which Command to Use in the Terminal? This And More...
19:20
43
TTT 46: Terminal Through the Browser?
19:52
44
TTT 47: Ever Wondered How to Replace Apple Contacts?
16:41
45
TTT 48: Whats with Directories in Linux?
24:12
46
TTT 50: Don't Get Shocked by Plasma, Be Set Free By LibreOffice
15:57
48
TTT 51: Save Your Desktop & More
14:42
49
TTT 52: Ubuntu PSA & Linux Mobile News
18:59

Tech Tips Tuesday 24: Tips Galore for Terminal

2 years ago
1.01K

19 Useful CLI Tips for Linux

Memesplanation

How to Convert Images from One Format to another Via CLI

Free Your Internet

Plasma 5.25.5 Released

10 Things About TF.pro

TTT 24-1: What Manner of Tips Might There Be Today?

19 CLI Tips for Linux
Everything from how to display data as a table to Sorting processes by Memory or CPU usage to recording your CLI Session to using xargs, and more. Not sure that We’ll talk through it all today, but you are more than free to take a look at the article for yourself.

Ever wanted to make the results of a given command in terminal display as a table for easier reading? Add the following to the end of your command | column -t -s :

How about sorting processes by CPU or Memory Usage?
Run ps aux | sort -nk 3 (for CPU) or ps aux | sort -nk 4 (for memory)

This is useful if it seems as though the system is less responsive than usual… perhaps your browser is being more of a resource hog than usual because some plugin or webpage is misbehaving, these commands will help you to ascertain which process is bogging your computer down.

Ever wondered how to record your CLI session? Just use the script command and give it a filename, then you can go back an review your commands later, and easily rerun them if you’d like to do so.

script <FILENAME>
then type in your string of commands and viola, your commands are now a script for you to review, and if you want to make it executable, you can do that a few ways as well, in the File Manager, You can right click on the file you just made, go to properties, and make it executable, or in CLI, you could navigate to the file, and run this command:
chmod +x <file name>

after that runs, you can simply type ./<filename> into the terminal and your script will run.

What does xargs do?
It passes outputs between commands as arguments. For instance, the following command will create two files with the output from the echo command in them:
echo file01 file02 | xargs touch

Of course you can alter the file names however you wish, rather than just file01 and file02, so that it will be easier to find those files in the future.

This goes along with “Be the change”… If you make your attitude match that which you want to see around you, eventually, your attitude will make a big difference in your environment. If you want your atmosphere to be happier, choose to be happy no matter what. First it will feel weird, and may grate on the nerves of those around you, but eventually they will likely shift into that themselves, at least when they are around you. It is a vibes and atmosphere thing.

#encouragement #atmosphere #attitude #memesplanation #TechFreedom

TTT 24-2: Converting any image file type to another using CLI

Install imagemagick
Open Terminal:
Type
sudo apt install imagemagick (Debian/Ubuntu)
or
sudo pacman -S imagemagick (Arch-based)
or
sudo dnf install imagemagick (Fedora/RHEL)

then navigate to the file(s) in question
cd pictures

then type
mogrify -format <desired format> <*. current format>
and all of the pictures of format “x” will now be in format “y”

I actually used this tool as I was preparing for today’s stories.

https://linux-tips.us/

There are many other Linux tips on this page, but this one is second from the top.

#photos #convert #batchconverter #imagemagick #Linux #Linuxtips #TTT #TechFreedom

Free Your Internet
https://techfreedom.pro/product/free-your-internet/

One-stop shop for getting you and your business transitioned off of Big Tech online platforms and tools, so that you have control of your data once again. I will also help you to find better alternatives.

#TechFreedom #internetfreedom #nogoogle #nometa #noyahoo #nomicrosoft
#parallelEconomy #parallelSociety #shopongab #growwithgab #smallbusiness #gabsmallbusiness

TTT 24-3: New Point Release of KDE out now

What’s new here?

• Kwin crash related to Thunderbird email fixed
• GIMP now reliably appears in the task manager when launched
• Kickoff now has touch scrolling again
• System Monitor widgets now maintain settings across restarts
• among other things

what does that mean for the rest of us that aren’t on a bleeding edge version of KDE? Not a whole lot. Many distros chose to stick with 5.24.6 until 5.26 rolls out, for stability’s sake.

https://9to5linux.com/kde-plasma-5-25-5-is-out-as-the-last-update-in-the-series-improves-multi-monitor-support

#KDE #Plasma #newrelease #Linux #Linuxnews #TechFreedom

10 Things My Wife Thinks You Should Know about Tech Freedom.

https://rumble.com/v19elx6-10-things-about-tech-freedom.html?mref=2jfr3&mc=anr3y

#TechFreedom #wifeysauce #getfree #explainer

Loading comments...