Really only SSH and sudo broke. sudo would still work but you'd have to re-enter your password every time. It was a painful experience and I'm glad I know better now.
As a one time noob I may have done this once or more.
To get one thing working I borked everything.
Understanding permissions is pretty basic. But understanding permission requirements for system and user apps and their config and dirs can be a bit overwhelming at first.
Thinking a little change to make your life simpler will break something else doesn't always register immediately.
Shit, even recently, wondering why my SSH keys were being refused and realising that somehow i set my private keys world readable.
Nah, there's something broken, I think it's because group render under the container has a different GID than the container so the acl fails and you either sudo or chmod.
I use podman and since it runs as my user it has exactly same same permissions as me. I just add my user to the proper group and it works.
Anyway for LXC you could just passthough a folder and then create a file. From there you can look at the file on the host to see who owns it. That will give you the needed information to set permissions correctly
Ahh, I'm running priveleged containers, I wrote my own scripted framework for containers around lxc in mostly python.
Basically I fell head over heels in love with freebsd jails and wanted them on Linux, then started running x11 apps in them, it's my heroin.
Haven't used podman outside proper k8s for work, did proxmox for a bit, but it was just a webgui for the same thing.
There were a bunch of online bug reports about the /dev/dri issue, maybe there's a better solution now, but since this is my workstation I wasn't as worried about security.
Possibly but my role was such Im really only supposed to be working on my project and not monkey with the server which is used by other projects. I don't think it was a restriction I think it was just laziness by whoever set it up.
And this is why I never get bonuses. I just can't be bothered with kissing upper management ass... tried it once... I walked out of the meeting with me telling them "less talking, more doing"... no one from upper management called me ever again. Even if they did have a computer problem, they just told the secretary to call me.
Sometimes your package manager asks you for root password every minute while doing few hours long update and cancelling process if you don't enter anything for few minutes, "yay" aur manager looking at you, and you got to do other things than sit and look in the monitor all day long, things like cleaning house or touching grass for example
That's the supported configuration. There support will not support anything else. It is total BS which makes sense because they want to silo you to the cloud
Our crappy vendor software will only function if IPv6 is disabled network wide. Even if one machine has it enabled, the whole thing breaks
Lol our former crappy vendor solution required to be run directly from AD Administrator. Pure luck the entire business didn't collapse before we replaced it.
Ubuntu uses Snaps for a lot of the software, thus, when you write sudo apt install firefox that is actually an alias for "install firefox from snap". Snaps get installed locally, not on the system (globally, for all users), but as a user, so you really can't do much damage when you actually didn't do anything to the system in the first place.
Do sudo shit on any other distro that doesn't have a company behind it, see what happens.
Because if you have sudo, you have root. Side effect of being a server system, too. During install, if you specify a root password, sudo is not installed. If you don't, it is. Ubuntu just defaulted to the latter.
So that is why I always have to install sudo manually π€¦.
And I think older versions also left you at root, you had to define a user account manually. I think that's not the case now as I recall (I haven't installed Debian in a while).
Credentials are inherited by every child process that the parent process invokes. Thus, if you give root credentials to a command, every subsequent command that the original one invokes will have root credentials.
There are some exceptions, but these are special case scenarios and are literally only a few.
Sorry (again π, this happens quite a lot with you, lol), it's early in the morning here, didn't have my coffee yet.
If the question is can privileges be escalate later on while a command or a script is executing, the answer is yes. You can also deescalate them once the root creds stuff is done executing. You just have to make it clear in the script or the command that "you do this with root creds, but then you continue with user creds".
The point I was trying to make with my previous comment was that, if a process (command, script, whatever) is ran with root privileges, every program, command, script it invokes later on is ran with root privileges, unless it's specifically noted to run this or that part with some other privileges.
111 Comments
betterdeadthanreddit@lemmy.world · 92 pts · 1y
Real pros shuffle across the carpet to build a static charge and do their system administration by electrical fault injection.
negativenull@lemmy.world · 49 pts · 1y
REAL pros use butterflies!
https://xkcd.com/378/
kamen@lemmy.world · 17 pts · 1y
Dammit, emacs.
lemmyng@lemmy.ca · 57 pts · 1y
Still not as bad as
chmod -R 777.Dhs92@programming.dev · 30 pts · 1y
Once had a friend run
sudo chmod -R 777 /on a (public) Minecraft server we were running back in highschool. It made me die a bit on the inside.rikudou@lemmings.world · 24 pts · 1y
Doesn't it break a lot of things? Half the stuff refuses to work when some specific files have too permissive chmod.
Dhs92@programming.dev · 17 pts · 1y
Really only SSH and sudo broke. sudo would still work but you'd have to re-enter your password every time. It was a painful experience and I'm glad I know better now.
AngryPancake@sh.itjust.works · 8 pts · 1y
Goodbye ssh access
masterofn001@lemmy.ca · 24 pts · 1y
As a one time noob I may have done this once or more.
To get one thing working I borked everything.
Understanding permissions is pretty basic. But understanding permission requirements for system and user apps and their config and dirs can be a bit overwhelming at first.
Thinking a little change to make your life simpler will break something else doesn't always register immediately.
Shit, even recently, wondering why my SSH keys were being refused and realising that somehow i set my private keys world readable.
Thank god SSH checks file and dir permission.
InverseParallax@lemmy.world · 6 pts · 1y
Jesus, every time I have to run glx or vaapi under a container I end up having to do this then cringe.
corsicanguppy@lemmy.ca · 1 pts · 1y
from the chmod or from the containers?
InverseParallax@lemmy.world · 1 pts · 1y
From the chmod, I love running games and shit under containers.
possiblylinux127@lemmy.zip · 1 pts · 1y
You don't need to
InverseParallax@lemmy.world · 1 pts · 1y
Nah, there's something broken, I think it's because group render under the container has a different GID than the container so the acl fails and you either sudo or chmod.
Lxc is still a little wobbly in places.
possiblylinux127@lemmy.zip · 3 pts · 1y
I use podman and since it runs as my user it has exactly same same permissions as me. I just add my user to the proper group and it works.
Anyway for LXC you could just passthough a folder and then create a file. From there you can look at the file on the host to see who owns it. That will give you the needed information to set permissions correctly
InverseParallax@lemmy.world · 3 pts · 1y
Ahh, I'm running priveleged containers, I wrote my own scripted framework for containers around lxc in mostly python.
Basically I fell head over heels in love with freebsd jails and wanted them on Linux, then started running x11 apps in them, it's my heroin.
Haven't used podman outside proper k8s for work, did proxmox for a bit, but it was just a webgui for the same thing.
There were a bunch of online bug reports about the /dev/dri issue, maybe there's a better solution now, but since this is my workstation I wasn't as worried about security.
HubertManne@moist.catsweat.com · 38 pts · 1y
just worked a job where I did not have privlages to sudo commands. except su. had to sudo su so I could run a script.
flashgnash@lemm.ee · 9 pts · 1y
Could you not just use root to give your user sudo? Seems like a pretty dumb restriction
HubertManne@moist.catsweat.com · 3 pts · 1y
Possibly but my role was such Im really only supposed to be working on my project and not monkey with the server which is used by other projects. I don't think it was a restriction I think it was just laziness by whoever set it up.
flashgnash@lemm.ee · 6 pts · 1y
Fair enough. Got a colleague who sudo nanos everything then wonders why he keeps getting permission denied errors later lol
0x4E4F@sh.itjust.works · 3 pts · 1y
...file in
~/.config...-
sudo nano /path/to/file... yeah, I wanna fucking save changes... OK, let's see if it works... damn it, this distro fucking sucks man!flashgnash@lemm.ee · 1 pts · 1y
Worst part is he's the sysadmin
0x4E4F@sh.itjust.works · 1 pts · 1y
Jesus π€¦...
And this is why I never get bonuses. I just can't be bothered with kissing upper management ass... tried it once... I walked out of the meeting with me telling them "less talking, more doing"... no one from upper management called me ever again. Even if they did have a computer problem, they just told the secretary to call me.
flashgnash@lemm.ee · 2 pts · 1y
Oh god no not upper management lol we're just in a small company
BigDanishGuy@sh.itjust.works · 38 pts · 1y
Come on! I've stopped logging on as root, can't we just leave it at that?
0x4E4F@sh.itjust.works · 3 pts · 1y
Stopped being fun after you destroyed the system a few times... am I right π.
datelmd5sum@lemmy.world · 36 pts · 1y
then at first day of work:
laurelraven@lemmy.zip · 3 pts · 1y
"You're absolutely right, we wouldn't want to take too long to break the network or open god rights vulnerabilities"
0x4E4F@sh.itjust.works · 2 pts · 1y
And you give them the look and they shut up.
therealjcdenton@lemmy.zip · 36 pts · 1y
sudo steam
veni_vedi_veni@lemmy.world · 35 pts · 1y
I'm in jail because I was not in the sudoer file
nebulaone@lemmy.world · 10 pts · 1y
This incident was, in fact, reported.
0x4E4F@sh.itjust.works · 6 pts · 1y
Well, you were warned π€·.
bruhduh@lemmy.world · 34 pts · 1y
Sometimes your package manager asks you for root password every minute while doing few hours long update and cancelling process if you don't enter anything for few minutes, "yay" aur manager looking at you, and you got to do other things than sit and look in the monitor all day long, things like cleaning house or touching grass for example
ikidd@lemmy.world · 9 pts · 1y
sudo visudoAt the end:
Defaults:USER timestamp_timeout=30USER is obviously changed to your username.
bruhduh@lemmy.world · 4 pts · 1y
Thank you
SavvyBeardedFish@reddthat.com · 7 pts · 1y
If I remember correctly the default sudo timeout is set to 5 minutes on Yay, you should be able to increase it to something more reasonable
bruhduh@lemmy.world · 2 pts · 1y
Thank you
bruhduh@lemmy.world · 1 pts · 1y
JustAnotherKay@lemmy.world · 2 pts · 1y
Man if only there was an option like --sudoloop to ensure that doesn't happen
0x4E4F@sh.itjust.works · 2 pts · 1y
See, this is why I love xbps. Does everything in one blow, no bullshit.
possiblylinux127@lemmy.zip · 26 pts · 1y
Reminds me of all of those vendors that require Windows Admin for no reason.
Landless2029@lemmy.world · 7 pts · 1y
Looking at you quickbooks network shares...
possiblylinux127@lemmy.zip · 2 pts · 1y
Its not like QuickBooks are sensitive data or anything
Landless2029@lemmy.world · 1 pts · 1y
More like I come in to fix someone's aging infrastructure and find a QuickBooks share with read/write everyone because people are too lazy to RTFM.
Ahem...
possiblylinux127@lemmy.zip · 1 pts · 1y
That's the supported configuration. There support will not support anything else. It is total BS which makes sense because they want to silo you to the cloud
Ziglin@lemmy.world · 0 pts · 1y
Then encrypt itβ¦
possiblylinux127@lemmy.zip · 1 pts · 1y
Tell that to Intuit
Ziglin@lemmy.world · -1 pts · 1y
joyjoy@lemm.ee · 18 pts · 1y
sudo -sfor auditabilitybarsquid@lemmy.world · 13 pts · 1y
Reminds me of software saying to put your docker socket into the docker container you are starting for convenience.
0x4E4F@sh.itjust.works · 3 pts · 1y
Oh yeah, I'm docking the shit ot of that container!
mlg@lemmy.world · 13 pts · 1y
A thread I read a long time ago on r/sysadmin
possiblylinux127@lemmy.zip · 5 pts · 1y
That's at least once a week
corsicanguppy@lemmy.ca · 13 pts · 1y
Wasn't it 2017 where they had the race condition in
sudo suas the command elevates up to root and drops back down?Every other year,
sudo suwas not unsafe but merely ghetto. 'sudo su' is the dutch-rudder of 'sudo'.SuperIce@lemmy.world · 11 pts · 1y
run0is the newsudo sulemmyng@lemmy.ca · 10 pts · 1y
You're going to start a fight with the
doaspeople.0x4E4F@sh.itjust.works · 6 pts · 1y
And the people that don't use systemd.
rikudou@lemmings.world · 18 pts · 1y
All five of them.
0x4E4F@sh.itjust.works · 1 pts · 1y
There are a few of us, but our 2nd gen i3s will eat the shit out of your 5th gen i5s π.
desktop_user@lemmy.blahaj.zone · 0 pts · 1y
there are dozens of us
Illecors@lemmy.cafe · 2 pts · 1y
OpenRC represent!
0x4E4F@sh.itjust.works · 2 pts · 1y
π₯Ή π
tabularasa@lemmy.ca · 9 pts · 1y
Guilty as charged, officer.
0x4E4F@sh.itjust.works · 2 pts · 1y
I bet you distro hop a lot.
helenslunch@feddit.nl · 9 pts · 1y
LunchMoneyThief@links.hackliberty.org · 46 pts · 1y
helenslunch doesn't know about
sudo !!Manzas@lemdro.id · 8 pts · 1y
Not even arrow keys
ytg@sopuli.xyz · 9 pts · 1y
Why does
sudo suexist?sudo -idoes exactly what you want.mvirts@lemmy.world · 1 pts · 1y
It's much easier to type sudo su π
PerogiBoi@lemmy.ca · 9 pts · 1y
chmod 777 /directory go brrrrrrrrrrrr
mvirts@lemmy.world · 2 pts · 1y
You mean sudo chmod -R 777 /that/path/I'm/trying/to/share ?
PerogiBoi@lemmy.ca · 2 pts · 1y
Ya probably. Iβm dumb enough to type that in and just see what happens π
Thcdenton@lemmy.world · 8 pts · 1y
:p
TuEstUnePommeDeTerre@midwest.social · 8 pts · 1y
sudo viMajorHavoc@programming.dev · 7 pts · 1y
Yeah. After that everything can be done with
!sh.(Edit: This is a joke. There's a lot of reasons not to do this.)
TuEstUnePommeDeTerre@midwest.social · 12 pts · 1y
sudoedit is what you're looking for. Don't elevate the text editor.
masterofn001@lemmy.ca · 3 pts · 1y
sudo -s vi &fmstrat@lemmy.nowsci.com · 8 pts · 1y
Tell me you use Ubuntu without telling me you use Ubuntu.
Wait till you try this on Debian or non Ubuntu variants.
MrPoopbutt@lemmy.world · 1 pts · 1y
I ask out of ignorance - why would it be different?
laurelraven@lemmy.zip · 3 pts · 1y
Debian doesn't have sudo by default, you have to install it manually
Not sure what they mean by "non Ubuntu variants" though since most other distros add it even when they aren't Ubuntu based
0x4E4F@sh.itjust.works · -2 pts · 1y
Ubuntu uses Snaps for a lot of the software, thus, when you write
sudo apt install firefoxthat is actually an alias for "install firefox from snap". Snaps get installed locally, not on the system (globally, for all users), but as a user, so you really can't do much damage when you actually didn't do anything to the system in the first place.Do
sudoshit on any other distro that doesn't have a company behind it, see what happens.fmstrat@lemmy.nowsci.com · 1 pts · 1y
True, but not actually the reason, it's because Debian doesn't discourage the use of the root account, and
suis used instead ofsudo.0x4E4F@sh.itjust.works · 1 pts · 1y
Really? But why?
fmstrat@lemmy.nowsci.com · 1 pts · 1y
Because if you have sudo, you have root. Side effect of being a server system, too. During install, if you specify a root password, sudo is not installed. If you don't, it is. Ubuntu just defaulted to the latter.
0x4E4F@sh.itjust.works · 1 pts · 1y
So that is why I always have to install sudo manually π€¦.
And I think older versions also left you at root, you had to define a user account manually. I think that's not the case now as I recall (I haven't installed Debian in a while).
fmstrat@lemmy.nowsci.com · 1 pts · 1y
Yea I switched from Ubuntu on my past few installs to avoid snaps. Glad I did, basically the same experience.
Ashiette@lemmy.world · 7 pts · 1y
sudo -i ?
dohpaz42@lemmy.world · 7 pts · 1y
sudo -u root bashftwlemmyng@lemmy.ca · 3 pts · 1y
Missing the
-i.dohpaz42@lemmy.world · 2 pts · 1y
The
-iis not required.0x4E4F@sh.itjust.works · 6 pts · 1y
It's silent.
possiblylinux127@lemmy.zip · 2 pts · 1y
Or sudo bash
rickyrigatoni@lemm.ee · 6 pts · 1y
sudo su -c "man man"
LodeMike@lemmy.today · 4 pts · 1y
Can't programs steal sudo access if the timeout isn't 0?
0x4E4F@sh.itjust.works · 1 pts · 1y
If on a brand new rig, it's allowed.
LodeMike@lemmy.today · 1 pts · 1y
What?
0x4E4F@sh.itjust.works · 2 pts · 1y
Oh, sorry, I misread programs as programmers π.
And no, I don't think so. Credentials need to be cleared before exectution.
LodeMike@lemmy.today · 1 pts · 1y
Okay. So you must invoke sudo fr on the exact same shell? It cant be taken from a subsequent script?
0x4E4F@sh.itjust.works · 2 pts · 1y
Credentials are inherited by every child process that the parent process invokes. Thus, if you give root credentials to a command, every subsequent command that the original one invokes will have root credentials.
There are some exceptions, but these are special case scenarios and are literally only a few.
LodeMike@lemmy.today · 1 pts · 1y
That doesnt at all answer my concern but I'll interpret the answer as no it doesn't do that.
0x4E4F@sh.itjust.works · 2 pts · 1y
Sorry (again π, this happens quite a lot with you, lol), it's early in the morning here, didn't have my coffee yet.
If the question is can privileges be escalate later on while a command or a script is executing, the answer is yes. You can also deescalate them once the root creds stuff is done executing. You just have to make it clear in the script or the command that "you do this with root creds, but then you continue with user creds".
The point I was trying to make with my previous comment was that, if a process (command, script, whatever) is ran with root privileges, every program, command, script it invokes later on is ran with root privileges, unless it's specifically noted to run this or that part with some other privileges.
mvirts@lemmy.world · 3 pts · 1y
I'm partial to sudo bash myself π
dunz@feddit.nu · 3 pts · 1y
Use Sudo -i instead. Sudo su is like cat file | grep pattern vs grep pattern file. You're wasting resources.
cplusplus@programming.dev · 2 pts · 1y
sudo rm -rf /* what could go wrong? (don't try it)
kekmacska@lemmy.zip · 2 pts · 1y
sudo chmod +x * can solve it sometimes
Unyieldingly@lemmy.world · 1 pts · 1y
sudo su - ?