sudo pacman -Syu
Ain’t nobody got time for apt-get. apt all the way.
Yeah it’s crazy to me that people default to it. For scripts, sure, but apt is so much prettier.
Be me -
Gets the Ok from IT to switch to a Linux Distro for my work desktop.
Gets the Ok from my direct manager.
Gets the Ok from our contracts manager who used to be in my direct managers position before.
Direct manager reaches out to lead developer, who happens to be a windows fanboy, for the web app we use to ensure “compatibility”, gets told to be careful of what I do and our cybersecurity insurance won’t cover it.
Be me, looking around at all the minuscule pieces of hardware connected to the internet likely running some form of Linux or Unix.
It’s a fucking web app. Make sure it works for a browser. You suck as a web developer if your shit web app needs to work on a specific OS.
And those are fighting words because I build web apps.
Man they get really up in your business if you aren’t using Chrome and their dinky extension, that I swear he pulled from someone’s GitHub and rebranded as his own, which all it does is open file links in the file browser.
I made a point by switching my user agent on Zen Browser to report as Chrome, Ubuntu haven’t heard a peep about it yet.
Side note at one point in time the clock-in we use, which is also a web app, had its admin/manager panel exposed to everyone in the company, I reported it and all I got was a thanks.
cd /etc/nixos nix flake update sudo nixos-rebuild switch git add -A . git commit -m "Update"
🙆♀️
I gotta say, apt-get is not my favorite way to update… yay is so much simpler.
Yay but especially apk keep it much simpler than apt.
Meanwhile in Fedora:
It is done that way for better reliability. It is optional and not even needed with Silverblue.
Wait what? I have been running silver blue and vanilla fedora recently and I don’t remember this happening. I always run my update script manually every day or so though. When do you see this screen?
It updates just like Windows automatically, in Discover. Then it asks to restart and upgrade and it’s just like Windows. I did this just today. Nice UI and UX with Fedora with Plasma.
When it updatedssystem files it’ll do this when you shut down your computer.
If you never shut it down it never will lol
At least you get the option to disable, I have it disabled, I’ll reboot when I say I will reboot.
What? I’ve never had fedora reboot itself. Sometimes it asks if I want to install updates on reboot or shutdown. But I am always in charge of when that happens.
The poster would be more convincing if you hadn’t inverted
apt-get update
andapt-get upgrade
…I mean, it’s definitely faster this way around
Wait I’m confused, did OP invert it or did you?
😭😭
It’s fine! You were trying to show how Windows is better because you can’t make a mistake like that and succeeded!
I’m joking
I mean technically you did “update” the OS. It wasn’t a particularly useful command by going second, but I bet it was fast.
Maybe OP knew all along that they wanted to use the previous package list to upgrade and fetch the new one after! Maybe we’re all actually inverting it…
(I’m just being silly, I recognize that an old package list would probably cause issues with installing or upgrading packages.)
Thank you, I mostly use pacman but have Debian (rasbian?) on raspberry pi and was fully willing to believe I’d been updating it wrong this whole time
That’s the best part of this post. Windows is fully automatic, while on Linux you need to tell apart two terminal commands with confusing naming.
On linux, you can do what you wish. You can use a desktop environment with a GUI software center that pops up a notification that prompts you to install updates. Or update by opening the software center and selecting the ones you want. Or use the terminal commands. Or write an alias so you can type “update” and have it execute all your commands in the right order. Or script it to run silently in the background on an automated schedule.
And you can use your computer during updates, there’s no mandatory update during shutdown/boot.
If I try to update my GPU while I’m running a game sometimes it falls back to integrated graphics and gets slow+warm til I restart. That’s a fuckup I just couldn’t make on windows. Sorry, checkmate fosscommie.
Curious what happens in windows now
fun fact: GPU drivers on Windows run in userspace, because MS got fed up with all the blue screens they caused and kicked them out of the kernel. if the GPU driver crashes, the screen will go dark for a second and then flick back on. if the GPU driver can’t restart then Windows will fall back to software rendering.
Not necessarily. On Arch it’s just “sudo pacman -Syu” and on Fedora it’s just “sudo dnf update”.
I just type “yay”.
I just type “paru”.
I just type help
I just click the “Install Updates” notification when it pops up.
See, it’s super easy on Linux, just different on every distribution.
You dont though. Most linux also have an automatic/GUI option.
On Mint I set up an automatic update schedule and have been double checking it when I think to. All GUI, no terminal commands. So far it’s been seamless. (Knock on wood)
yay -Syu
Also just
yay
Nothing like the joy of my system upgrading without a hassle… just need to press the up arrow key until I find the command… I’ll get there eventually
I did this until my coworker got annoyed enough that they told me to start using
history | grep
lmaooOr ctrl+r and start typing what you’re searching for, and repeat ctrl+r to find the next newest match.
For example,
[C-r] ssh [C-r] [C-r]
will auto fill the 3rd most recent ssh command you’ve run. Try it, your life will be filled with rainbows and unicorns.Wait until they tell you about ctrl+r!
There are even better ways built into the shell, but I can never remember any of them. I also never thought of
history|grep
, I think I might actually remember that one. Thanks!Wow, thank you for this.
Even better:
sudo apt update && sudo apt upgrade -y
sudo apt --update upgrade -y
sudo apt --update upgrade -y && sudo apt autoremove -y
sudo apt --update --autoremove upgrade -y
note
this doesn’t actually do the same thing as the previous comment running autoremove afterwards does; the former will remove things which were rendered removable by the upgrade while the latter will only remove things which were already autoremovable prior the upgrade.
This is so cursed.
- Wrong order
- Dont use apt-get in the terminal
- Reboot
Who even uses apt-get these days?
Yeah
apt-get
is so old it officially misses packages thatapt
… gets.Whoa, do you have something to read up on that? I’d be extremely surprised, since
apt-get
is supposed to be the script-safe variant, i.e. I’d imagine it’s the more stable of the two.It’s actually just personal experience, but I stopped using
apt-get
a few years back now because I noticed if I didapt
afterapt-get
there would often be a bunch of packages it missed.Edit: looks like it might be because
apt-get
can’tsatisfy dependenciesinstall new packages when upgrading whileapt
can sinceapt
is a suite of differentapt
tools rolled into one.apt-get upgrade --with-new-pkgs
Yeah I’m reading a little bit on it, and it seems like
apt-get
can’t install new packages during an upgrade. On initial reading I was thinking there were specific packages it couldn’t download or something, but this makes sense too. Regardless, this is news to me; I always assumed thatapt
andapt-get
were the same process, just withapt-get
having stable text output for awk’ing andapt
being human-readable. I’ve been usingnala
for a long time anyway, but this is very useful knowledge.I’ve been using
nala
for a long time anywayDoes Simba know about this?
Wait what.
apt-get
is made for scripting,apt
is interactive. Both should resolve dependencies.dpkg
does not resolve them.But for interactive usage always use apt, guides using apt-get have no idea what they are doing
You’re right, I misspoke, it’s that it can’t install new packages, it can only upgrade existing ones. I guess I was thinking the only reason it would need to install new packages was if that was a new dependency.
Very weird
apt
generally downloads more things thanapt-get
on my Debian machine.apt-get
never broke anything, but I tend to eye it suspiciously now.
Legitimately didn’t know this and occasionally type
apt-get
just for a bit of frivolity
have been out of the loop for a while. what am I missing, what should I use in the future?
Last week my brother had to use my laptop and install Rstudio(for some University project) because his Mac was too old and slow. I was out of home so I had to instruct him through the phone and I could hear his awe while he explained how easy was to install the program. He told me laughing that he could see the pacman and started to cheer for it, this made my day.
I really like Linux but I just wish I understood how to use it better. I keep having to look up how to do things.
I had the same problem trying to use a Windows 11 laptop after running linux at home for years. Turns out the “looking stuff up” part is how you learn how to use it better.
That’s literally everything ever that is worth it.
Imagine saying “I really wanna play piano but I just wish I understood how to play it better. I keep having to look up how to do things”.
That’s how you learn to use it better!
sudo dnf up
sudo zypper dup