the file is already encrypted so you aren’t getting much more security
- 0 Posts
- 103 Comments
superbirra@lemmy.worldto Open Source@lemmy.ml•Please don't use Discord for FOSS projects11·1 year agobecause they are a PITA indeed and it’s easy to promote toxic/savant attitudes, just like lemmy but worse :P
it does not work, it says
permission denied
. Is there anything I should do ?
superbirra@lemmy.worldBanned from communityto Linux@lemmy.ml•tell me your experience using zfs/btrfs31·1 year ago[…] there were rumours some French guy got arrested and had his LUKS encryption fail on him, so you never know.
superbirra@lemmy.worldBanned from communityto Linux@lemmy.ml•Switched from Ubuntu to Debian yesterday1·1 year agoRemoved by mod
superbirra@lemmy.worldBanned from communityto Linux@lemmy.ml•Switched from Ubuntu to Debian yesterday11·1 year agoRemoved by mod
superbirra@lemmy.worldBanned from communityto Linux@lemmy.ml•Switched from Ubuntu to Debian yesterday1·1 year agoRemoved by mod
superbirra@lemmy.worldBanned from communityto Rust Programming@lemmy.ml•I made a Gtk GUI to open LaTeX Beamer file, so that you can extract some pages2·1 year agothank you for your reply. Yes it was sadly known to me, but every time I see something done right in gtk I am rekindled in hope that they have put a patch on this totally inexplicable choice to abandon a designer that would allow you not to write xml by hand. I guess I’ll have to make peace with that fact :) anyway, nice work you did!
superbirra@lemmy.worldBanned from communityto Linux@lemmy.ml•Laptop companies: which one?71·1 year agocan confirm that tuxedo is great if you are in Europe. It has been my daily driver for 3 years with debian sid and it’s great!
superbirra@lemmy.worldBanned from communityto Linux@lemmy.ml•Switched from Ubuntu to Debian yesterday11·1 year agoalso, there is not a “specific default”, I don’t care about debian and even if I’m not using since longtime in this thread stupidity has been expressed :P
superbirra@lemmy.worldBanned from communityto Linux@lemmy.ml•Switched from Ubuntu to Debian yesterday12·1 year agoI’ll defend your right to edit your comments if you’ll defend my right not to be bothered by u, ciao
superbirra@lemmy.worldBanned from communityto Linux@lemmy.ml•Switched from Ubuntu to Debian yesterday1·1 year agoRemoved by mod
superbirra@lemmy.worldBanned from communityto Linux@lemmy.ml•Switched from Ubuntu to Debian yesterday1·1 year agoRemoved by mod
superbirra@lemmy.worldBanned from communityto Linux@lemmy.ml•Switched from Ubuntu to Debian yesterday12·1 year agoRemoved by mod
superbirra@lemmy.worldBanned from communityto Linux@lemmy.ml•Switched from Ubuntu to Debian yesterday11·1 year agowhich then I mean, if you don’t have an attention span that lasts at least until the end of other people’s comments, what are you doing here :D
superbirra@lemmy.worldBanned from communityto Linux@lemmy.ml•Switched from Ubuntu to Debian yesterday11·1 year agoRemoved by mod
superbirra@lemmy.worldBanned from communityto Linux@lemmy.ml•Switched from Ubuntu to Debian yesterday1·1 year agoyou obviously can’t use
sudo visudo
if you’re not already in the sudoers file LOL - is the same security, which you also desire, as having a spare set of keys in the bowl at the entrance to your house, where, however, no one comes unless they already have a key to open the door
superbirra@lemmy.worldBanned from communityto Linux@lemmy.ml•Switched from Ubuntu to Debian yesterday1·1 year agoalso let’s be curious about the things we copy-paste in order to prove whatever theory: in literally the first line of your bashrc non-login shells are named. What are those non-login? If we need to defined them like that, do also we have a
non-non-login
ones? How do they get executed? How do they get initialized? Let’s explore and understand some new stuff (that we should have learned already, but who cares, it’s not our job!)
superbirra@lemmy.worldBanned from communityto Linux@lemmy.ml•Switched from Ubuntu to Debian yesterday1·1 year agolol I’m not defensive at all, I swear I don’t need that :D. The theme here is that you keep thinking you don’t have an ass because you’re looking for it on your forehead instead of between your butt cheeks :D
What we can already see:
- sudo is indeed installed, and in path
- bash is running since system is newly installed =>
/usr/bin
is obviously in path (bash lives in/usr/bin/bash
)
set | grep ^PATH
will show that/usr/bin
is indeed in path, also the fact that grep runs tell it path is correct, since grep lives in/usr/bin/grep
:)that said, your user isn’t in the sudoers file because you choose to give login access to root during install (which is strange, because no sudo package get installed if you choose that, so you probably made some other strange not-obvious thing), and no, groupadd can’t be run by the user you keep being after a failed sudo invocation (of course you can invoke it w/ the fully qualified path which is
/usr/sbin/groupadd
w//usr/sbin
not in user’s path because the binary here usually require high permissions).now you have a chance to learn something: where is PATH env var configured? Is it in your home or outside? Why and how it gets parsed?
cmon, let’s explore a bit my good boy, let’s be curious about the world that is not wrong by default and only we are right ;) let’s learn stuff, for real
the problem is you can’t really work around a problem you don’t understand.