Skip Navigation

InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)MV
Posts
18
Comments
1,773
Joined
2 yr. ago

  • Aight, almost every time It seems like audio is working but you actually hear nothing, getting alsamixer out and selecting each output channel and making sure it's unmuted and full volume, on every sound device that shows up ( hit f6 I think to switch device to ) makes a difference. I've never figured out why it gets f'd up but I think it has to do with the service that saves and restores alsamixer state during shutdown and startup

  • Excellent comment, I completely agree.

    Anyway I want to add that Linux does not seek market share, it's an escape hatch for those of us fed up with commercial software.

    Linux is used to build plenty of commercial distros like Ubuntu and rhel that do seek market share which is something their companies can worry about.

    Plus, more Wayland support won't break existing X software. If you want to use old systems, don't expect new software to run on it.

  • Discretionary access control let's you specify read write and execute permission flags for three different classes of user: the user that owns the file, members of the group that owns the file, and other users. These three classes are often abbreviated with u g and o for user, group, and other. The permissions are abbreviated with r w and x for read write and execute. By calling chmod with o-x you are "subtracting" the x permissions for o users.

    The file may still be executable by the files owner or users in the group that owns the file. To check, run ls -l and look at the part that shows rwxrwxrwx (any of which may be replaced with a -). This shows the permission flags in order for the owner, the group, and other users. If the flag is set you will see the letter abbreviation, if it is not set you will see -, so you would want the file to have permissions like r-xr--r-- and be owned by root, so only root can execute the file.

    You can change the owner with chown root /path/to/file

    If you want to get more crazy with permissions look up Linux ACLs or the setfacl and getfacl commands