[Discussion] What do you wish you had known years ago?

Here you can discuss every aspect of Debian. Note: not for support requests!
Post Reply
Message
Author
User avatar
Uptorn
Posts: 423
Joined: 2022-01-22 01:07
Has thanked: 331 times
Been thanked: 112 times

[Discussion] What do you wish you had known years ago?

#1 Post by Uptorn »

Is there any tool or command or simpler/faster way of doing something that you wish you'd known about when starting out on Debian? Or when starting out on Linux, generally?

User avatar
Diesel330
Posts: 198
Joined: 2021-11-08 19:57
Location: Eastern Europe
Has thanked: 39 times
Been thanked: 25 times

Re: [Discussion] What do you wish you had known years ago?

#2 Post by Diesel330 »

I wish I had tried Linux and Debian in particular when I learned about it in 2009 instead of 2019 when I actually started using it

User avatar
bbbhltz
Section Moderator
Section Moderator
Posts: 316
Joined: 2024-01-10 14:53
Location: Normandy
XMMP/Jabber: bbbhltz@mailbox.org
Has thanked: 70 times
Been thanked: 76 times

Re: [Discussion] What do you wish you had known years ago?

#3 Post by bbbhltz »

I have dropped money on fad tech a few times.

I got the first generation of EeePC, and then the second gen. Not complaining, but I ended up frying a motherboard on one and selling the other for next to nothing. If I had known, I wouldn't have even looked at them. Nice idea, but no for me.

I rushed around town on another occasion to find a new laptop in my price range. It was junk, but I got a few years out of it. I did need it, and quick, but I should have invested a little more.

Neither of those are as bad as my next purchase: a 2nd gen Chromebook. I didn't do my research and bought a model that, at the time, was incompatible with Linux. I used that for 4 years and made ALL of my many slides and documents on Google Docs. I'm a professor. Had I known that I would quit Gmail 4 years later and finally discover pandoc and start messing around with LaTeX as well to remake all of my presentations and documents...I wouldn't have bought that Chromebook.

Now I've had the same ThinkPad for...7 or 8 years? It turns on in a few seconds and the battery still lasts 9 hours, sometimes 10. If I had only gone to the thrift store and bought a second hand quality laptop I would have saved so much time and money.

Also, to be more on topic with this being a Debian forum, I probably never needed to distro hop. I always end up back on Debian stable. But I guess I learned a lot along the way.
bbbhltz
longtime desktop Linux user; eternal newbie

CwF
Global Moderator
Global Moderator
Posts: 3137
Joined: 2018-06-20 15:16
Location: Colorado
Has thanked: 63 times
Been thanked: 265 times

Re: [Discussion] What do you wish you had known years ago?

#4 Post by CwF »

My personal list, TL;DR

Off that list is one others should realize judging from the continuing post on the subject:
RAID DOESN'T HELP personal sized systems
Mottainai

User avatar
donald
Debian Developer, Site Admin
Debian Developer, Site Admin
Posts: 1423
Joined: 2021-03-30 20:08
Has thanked: 248 times
Been thanked: 298 times

Re: [Discussion] What do you wish you had known years ago?

#5 Post by donald »

The absolute value of installing and using the Screen program. Even on home machines.

The screen program allows you to use multiple windows (virtual VT100 terminals) in Unix.
Typo perfectionish.


"The advice given above is all good, and just because a new message has appeared it does not mean that a problem has arisen, just that a new gremlin hiding in the hardware has been exposed." - FreewheelinFrank

User avatar
thatguychuck
Posts: 56
Joined: 2013-03-25 00:49
Has thanked: 1 time
Been thanked: 2 times

Re: [Discussion] What do you wish you had known years ago?

#6 Post by thatguychuck »

Separating out my ssh configs into ~/.ssh/config.d/
My ~/.ssh/config file grew large and difficult to edit. You can make your ~/.ssh/config have only one line

Code: Select all

include config.d/*
Then you can create the config.d/ folder and then add as many different config files as you need, one for home, one for each different VPS provider, ect. Add whatever file sync program you like and have it everywhere.

User avatar
Uptorn
Posts: 423
Joined: 2022-01-22 01:07
Has thanked: 331 times
Been thanked: 112 times

Re: [Discussion] What do you wish you had known years ago?

#7 Post by Uptorn »

Diesel330 wrote: 2024-03-05 18:34 I wish I had tried Linux and Debian in particular when I learned about it in 2009 instead of 2019 when I actually started using it
The ten years could have represented the difference between fumbling around and mastery. I have a very similar experience to yours, only a gap ranging from 2004-2014. I try not to think about how much more capable I might have become with computers if only I'd persisted trying to get Ubuntu onto my first ever computer. :sad:

User avatar
wizard10000
Global Moderator
Global Moderator
Posts: 1146
Joined: 2019-04-16 23:15
Location: southeastern us
Has thanked: 120 times
Been thanked: 198 times

Re: [Discussion] What do you wish you had known years ago?

#8 Post by wizard10000 »

Let's see...

* Fixing a broken machine is more difficult than not breaking it in the first place.

* Understand what you're doing before you do it, especially if you're running Other People's Code.

* Almost every issue you encounter on a computer can be resolved without reinstalling the OS.

* If you can put something back the way it was before you started messing with it you can hack at just about anything without fear.

* Take the time to develop and test a bulletproof backup strategy.

* Random blogs and YouTube tutorials are of questionable value. Get your help from your distribution's resources first.
we see things not as they are, but as we are.
-- anais nin

User avatar
Uptorn
Posts: 423
Joined: 2022-01-22 01:07
Has thanked: 331 times
Been thanked: 112 times

Re: [Discussion] What do you wish you had known years ago?

#9 Post by Uptorn »

Early on, I could have really benefited knowing the desktop environment =/= operating system, or at least that it's not so highly integrated that it cannot be swapped out for something else.
wizard10000 wrote: 2024-03-06 12:20 * Random blogs and YouTube tutorials are of questionable value. Get your help from your distribution's resources first.
They can even be detrimental since absolute beginners are often walked through complex processes without the tutorials taking the time to explain what is being done and why.

User avatar
pbear
Posts: 526
Joined: 2023-08-27 15:05
Location: San Francisco
Has thanked: 2 times
Been thanked: 82 times

Re: [Discussion] What do you wish you had known years ago?

#10 Post by pbear »

Have learned a lot of tricks over the years. One of which I'm particularly fond is configuring an alias to use the GUI text editor for config files. For short files, I'm fine with nano, but GUI is a lot easier for large files.

Code: Select all

echo "export SUDO_EDITOR='gedit -w'" | tee -a .bashrc ; echo "alias edit='sudoedit'" | tee -a .bashrc ; source .bashrc
To use is as simple as edit /path/to/file (will be prompted for password). Depending on desktop, may need to replace gedit, of course.

dlu2021
Posts: 233
Joined: 2021-08-13 19:55
Location: Minnesota
Has thanked: 8 times
Been thanked: 44 times

Re: [Discussion] What do you wish you had known years ago?

#11 Post by dlu2021 »

My main one would be not to be afraid of the terminal. After all it is the universal GUI of Linux. Lately when trying to do a task, I try to do it though the terminal commands first.

User avatar
Chaussettes
Posts: 57
Joined: 2022-09-29 03:45
Has thanked: 8 times
Been thanked: 21 times
Contact:

Re: [Discussion] What do you wish you had known years ago?

#12 Post by Chaussettes »

Pasting

Code: Select all

FREETYPE_PROPERTIES="cff:no-stem-darkening=0 autofitter:no-stem-darkening=0"
into /etc/environment and rebooting results in crystal clear nearly mac-esque font rendering. I went for years staring at the default unconfigured freetype fonts and can never go back
Creating things on deviantArt - https://www.deviantart.com/chaussettes99

User avatar
cds60601
df -h | participant
df -h | participant
Posts: 771
Joined: 2017-11-25 05:58
Location: Florida
Has thanked: 140 times
Been thanked: 75 times

Re: [Discussion] What do you wish you had known years ago?

#13 Post by cds60601 »

The Pan Galactic Gargle Blaster
Supercalifragilisticexpialidocious

CwF
Global Moderator
Global Moderator
Posts: 3137
Joined: 2018-06-20 15:16
Location: Colorado
Has thanked: 63 times
Been thanked: 265 times

Re: [Discussion] What do you wish you had known years ago?

#14 Post by CwF »

Maybe instead of my long list of stuff I wish I knew then, that which organizes this list will be what I wish I knew then...the OP did include 'tools'
CherryTree! I love it. Using it since before it was accepted into Debian proper, now included, has become the most important element in keeping my mind organized. Sure there are many choices, and the choice should be personal, but 'note' and 'organizer' software continues to be a transient thing with short lives. Abandonware is a real concern for anybody in the game for longer than a decade or more.
Mottainai

User avatar
sinterva
Posts: 24
Joined: 2024-03-10 12:43
Has thanked: 7 times
Been thanked: 5 times

Re: [Discussion] What do you wish you had known years ago?

#15 Post by sinterva »

#Force english fallback
export LANGUAGE="nb_NO:nb:no_NO:no:en"

in my .bashrc makes it so that when my native norwegian is lacking for some reason it falls back to english and not to swedish or danish.
I understand them perfectly, but it is sort of a pride thing, I'd rather not have my workflow interrupted by my computer mistaking me for a swede or dane.

jmgibson1981
Posts: 354
Joined: 2015-06-07 14:38
Has thanked: 18 times
Been thanked: 49 times

Re: [Discussion] What do you wish you had known years ago?

#16 Post by jmgibson1981 »

I wish I had known that learning programming when you are 42 is much harder than when you are a teenager. Instead I spent time playing games on the computer. I could be much further along if I had started learning back then.

friendlysalmon88
Posts: 159
Joined: 2023-12-08 16:48
Location: Seattle,Wa USA
Has thanked: 7 times
Been thanked: 10 times

Re: [Discussion] What do you wish you had known years ago?

#17 Post by friendlysalmon88 »

I wish that i had learned how to respect not only respect figures of authority not just in my immediate physical environment but also in my electronic life as well. Further I wish that while I was still in high-school that i had stuck with my guns and started using Linux and other Unix-Workalike operating systems.

m4c-attack
Posts: 68
Joined: 2023-10-09 05:06
Has thanked: 57 times
Been thanked: 9 times

Re: [Discussion] What do you wish you had known years ago?

#18 Post by m4c-attack »

I regularly saw tutorials on using man to better understand system/user-installed packages, but it took the better part of a year to realize that man has a much wider scope and is typically the best (and quickest) reference for config files (ie: man freshclam.conf), explanations of Linux tools (ie: man systemd.timer), and sub-commands (ie: man systemd-analyze calendar).

Using it solely for packages is only a fraction of its power

friendlysalmon88
Posts: 159
Joined: 2023-12-08 16:48
Location: Seattle,Wa USA
Has thanked: 7 times
Been thanked: 10 times

Re: [Discussion] What do you wish you had known years ago?

#19 Post by friendlysalmon88 »

dlu2021 wrote: 2024-03-07 16:13 My main one would be not to be afraid of the terminal.
I agree, if I hadn't feared taking advantage of the terminal, my development as a Linux user would've progressed at a mildly faster clip.

User avatar
kent_dorfman766
Posts: 570
Joined: 2022-12-16 06:34
Location: socialist states of america
Has thanked: 69 times
Been thanked: 76 times

Re: [Discussion] What do you wish you had known years ago?

#20 Post by kent_dorfman766 »

How ridiuclous the world would be in 2024. Had I known, I would have better prepaired to become an ex-pat, find a nice lakeside cottage in a small village at the base of the Andes, where I'd live simply, and have coffee on my porch every Thursday morning with the local Sheriff...and maybe spend my time painting the mountains.

Post Reply