Ive tried linux before mainly manjaro and endevouros and recently mint i havent really stuck to them however and gone back to windows but im willing to give linux another shot
Ive tried linux before mainly manjaro and endevouros and recently mint i havent really stuck to them however and gone back to windows but im willing to give linux another shot
Debian-specific advice
Debian is a stable distro, so software versions will remain pretty much the same over the life cycle. This is good if stability (software not changing out from under you) is desired, but if you want to take advantage of new features as they are added to whatever software you’re running, it’s less beneficial. So, if you’re going to run debian as a desktop os, I would recommend
switching your apt sources to point to the unstable branch: sidswitching your apt sources to point to testing (see below).You’ll probably see a lot of older tutorials and stackoverflow posts that use
apt-get
, which predatesapt
, instead ofapt
as the package manager.apt
is the recommended frontend;apt-get
will work, butapt
will have a nicer user experience.Also, on the topic of
apt
, there are three ways to run updates that you’ll probably see online; this stackexchange post provides a pretty good explanation of the differences between them.General linux advice that I think is worth sharing
Man pages are pretty helpful once you know how to navigate them. Some tips regarding that:
man
is, but just in case:man
is the command that you use to pull up manual pages for basically everything.apropos
orman -k
commands. For example,apropos video
pulls up a list of all the man pages that have the word video in their names or descriptions.foo
in sections 1 and 3, to pull up the one for section 3 you would use the command:man 3 foo
. If you want to read more,man
has it’s own manual page, which you can pull up withman man
.man
with/
and?
./
performs a forward search and?
performs a backwards search. You can jump forward to the next result in the search withn
or back to the previous result withp
.Another good place to look for documentation is the arch wiki. A lot of the information on there translates to other distros fairly well, and it’s got huge amounts of well written information. If you use duckduckgo, the bang for it is !aw.
The shell is pretty intimidating for a lot of new users. While it’s not strictly necessary for most things, I do think that you’ll have a smoother linux experience if you become at least a little bit comfortable using it. Here is a bash guide aimed at beginners.
Finishing Thoughts
Looking back at what I’ve written, I realize that I have dumped a lot of information on you. So I think the best piece of advice that I can offer is this: Becoming comfortable with linux (or any new operating system) takes time and can feel overwhelming. Don’t feel pressured to understand everything immediately and don’t be afraid to go slow; Rome wasn’t built in a day.
I’ve been running linux as a daily driver for 6 or 7 years now, and I run debian on my servers, so if you have any questions now or in the future, I am happy to try to answer them.
Strongly disagree with this. Most users should use Debian stable, or if you needs new versions of specific software, then maybe testing or backports.
Unstable is intented for Debian maintainers, and people who do QC and debug Debian. Unstable means more frequent bugs and breakages, which only makes sense if you’re working on detecting bugs and fixing them before new packages arrive in testing/stable.
Using unstable without being an advanced Debian users is asking for trouble, because you risk more frequent breakages that requires manual intervention and in-depth Debian/Linux knowledge to fix thing. Veteran Linux users may be comfortable with this, but it’s the wrong choice for most new users.
Good point. Testing would probably be a better choice; I’ll edit the parent comment to reflect that
Thanks
As someone who’s mained Debian for last year or two, this is all solid information 👍
Thanks for the detailed explanation i accually didnt know about the man command makes sense though As for apt and apt-upgrade i didnt accually know apt-upgrade existed but that is good to know as for the shell im not that intimidated by it ive used command prompt plenty of times in windows and when trying other different distros one question i remember getting nvidia drivers installed being somewhat dificult on linux is this still the case or has something changed?
I think it largely depends on the distro. There are two nvidia drivers: the official one which generally works better and nouveau, which is open source.
The instructions from the Debian wiki seem to be pretty thorough. Barring any driver issues, it should just be editing one file to add non-foss repos and installing the drivers through the package manager.