695
submitted 9 months ago by [email protected] to c/[email protected]
top 50 comments
sorted by: hot top controversial new old
[-] [email protected] 367 points 9 months ago

If it makes you feel any better, I decided earlier today to experiment with "castnow", a command-line program for casting to a Chromecast device.

I grabbed the url of a video off of Archive.org, used wget on a box I was ssh'd into to download the video, and then ran my "castnow" command to cast it to the Chromecast.

I got a progress bar and current/total time on the TV, but aside from that only a black screen and no audio.

I tried getting the latest version of "castnow" from the Git repo. I tried transcoding 7 different ways with FFMPEG. A bunch of things.

Finally, copied the video to my local machine and ran it in mpv.

The video itself was solid black with no audio and the Archive.org page had comments on it saying "why is there no video or audio?"

I tried a different video and it worked fine.

[-] [email protected] 67 points 9 months ago

Beautiful story. Feel that we've all been there. Every now and then, when the assumption is that the stupid piece of tech isn't working, and there it is, just functioning as intended :)

Thanks for sharing

[-] [email protected] 37 points 9 months ago

This is hilarious

[-] [email protected] 17 points 9 months ago

My desktop background used to be solid black with faint grey text reading "Yes, the monitor works."

[-] [email protected] 157 points 9 months ago

Back in the dark, old days of Linux I spent 5-6 hours digging through dbus events and X11 configs to get my mouse working. It was unplugged.

In my defense, in those days, Linux was such an insane asylum that diving into dbus and X11 as a first step was usually the logical approach.

[-] [email protected] 47 points 9 months ago

Jesus Christ. I've never been so thankful for being a Linux noob in my life. That sounds awful.

[-] [email protected] 41 points 9 months ago

Those days gave me a career so I can't really complain.

[-] [email protected] 22 points 9 months ago

Remember make

Oh wait. Missing something.

Download it.

Tar unzip make missing something else. Tar unzip make.

1 hour later. What was I doing?

[-] [email protected] 15 points 9 months ago

Turns out, I do need therapy.

load more comments (1 replies)
[-] [email protected] 18 points 9 months ago

Had a similar experience with Mint (of all distros) on an old laptop where it would not detect the headphones I plugged in. Spent like 30 minutes troubleshooting the settings/configuration and googling. Turns out the cable was weird and I just needed to not push it in too deep for it to be detected.

[-] [email protected] 14 points 9 months ago

Been there with those old printer cables that had the two thumb screws. I spent way too long troubleshooting print problems turned out with some cables if you dont screw the thumb screws all the way in you don't get a good cable connection.

load more comments (2 replies)
[-] [email protected] 13 points 9 months ago* (last edited 9 months ago)

Back in the dark, old days of Linux I spent 5-6 hours digging through dbus events

That's not possible. In the dark, old days of Linux, dbus didn't exist yet.

load more comments (1 replies)
load more comments (7 replies)
[-] [email protected] 153 points 9 months ago
[-] [email protected] 36 points 9 months ago* (last edited 9 months ago)

mkdir -p eez/nuts

cd eez/nuts

[-] [email protected] 24 points 9 months ago

This is serious, ls not make it a pun thread.

load more comments (2 replies)
[-] [email protected] 126 points 9 months ago

No, you just had a 3 hour learning experience.

[-] [email protected] 18 points 9 months ago

Educator here. This is called "discovery learning". (The alternative to discovery learning, "direct instruction", would be if someone had told OP about these permissions before OP got themselves into a pickle)

When discovery learning is successful, it leads to better learning outcomes. Compared to direct instruction, you learn the material more deeply and will have better recall of the material, often for the rest of your life. The downsides to discovery learning are that it's very time-consuming, very frustrating, and many students will just fail (give up) before learning is completed.

Consider yourself one of the lucky ones, OP.

load more comments (2 replies)
load more comments (1 replies)
[-] [email protected] 71 points 9 months ago

SELinux enters the chat

Sure you own it, your groups owns it, its permissions are 777, SELinux says GEEEEEEET FUUUUUUCKED.

[-] [email protected] 38 points 9 months ago

Selinux is great. It provides actual security to a system

[-] [email protected] 25 points 9 months ago

But it is hard to operate. Source: did more than audit2allow for years.

load more comments (2 replies)
load more comments (1 replies)
[-] [email protected] 64 points 9 months ago

A friend of mine told me a long time ago: "if a windows system is behaving funny, it has to do with virus. If a Linux system is behaving funny, it has to do with permissions"

load more comments (3 replies)
[-] [email protected] 45 points 9 months ago

You wasted 3 hours of your life so far lol

But yeah. I find the most mysterious and time-consuming of problems are usually caused by a very minor detail that is so obvious it gets overlooked immediately.

And even if you know that's probably the case, sometimes your brain will just discard information that isn't consistent with its assumed reality, and it tells you the piece of code you just read is fine when it's obviously not.

Troubleshooting/debugging is fun.

load more comments (1 replies)
[-] [email protected] 44 points 9 months ago

I remember myself asking why directories had x flags in their permissions. Like, you don't execute them. What do they use the x flag for?

[-] [email protected] 33 points 9 months ago

There needs to be a Linux kernel fork that when you try to execute a directory executes all programs in the directory. In parallel. Juuuuuuuust to fuck with people who might accidentally execute the /usr/bin directory.

[-] [email protected] 28 points 9 months ago

And if there's a circular symlink, we fork bomb

[-] [email protected] 16 points 9 months ago

Or worse… In order. Based on last Modified date. And use that as the basis for some scheduling agent where timing and order of execution is essential.

load more comments (2 replies)
load more comments (1 replies)
[-] [email protected] 22 points 9 months ago

For directories, it’s permission to cd into it. Read is whether you can list files, and write is remove, rename, or create new files. Don’t ask questions about the secret sticky bit

load more comments (1 replies)
[-] [email protected] 17 points 9 months ago

The x permission on directories is exactly for this purpose. You can use the directory. You cannot read (requires rx), you cannot write (w), but you can 'cd' and operate on files in the directory.

This is important, you can lock someone out from a directory tree buy not giving them 'x' on the root. So, if your home is rwx------, no one but the owner can do anything in your home. This is effective even if some files and subdirectories have less restrictive permissions.

load more comments (2 replies)
[-] [email protected] 14 points 9 months ago

Executing a list read of the inode?

load more comments (1 replies)
[-] [email protected] 44 points 9 months ago

I love posts like these because they help me avoid mistakes I would've definitely made too. Thanks OP!

[-] [email protected] 40 points 9 months ago

ls reaction to this is unexpected:

$ mkdir foo
$ echo Foo > foo/file
$ chmod a-x  foo
$ ls -l foo
ls: cannot access 'foo/file': Permission denied
total 0
-????????? ? ? ? ?            ? file

I expected to just get a "Permission denied", but listing the content it can still do. So x is for following the name to the inode and r for listing directory content (i.e. just names)?

load more comments (1 replies)
[-] [email protected] 39 points 9 months ago* (last edited 9 months ago)

sudo chmod -R 777 /

Edit: don't do this, it will allow everyone and everything to read and modify all files of all mounted filesystems, this includes your personal files, system wide passwords, config files, everything and might break the whole system as not all files are meant to have these permissions, e.g. mapped hardware settings or your ssh key store.

sudo comes with immense power, do not, under any circumstances, enter commands you found on the internet without an intense look about what they do and what their implications could be. Never sudo or doas, etc., without a strong and valid reason.

[-] [email protected] 51 points 9 months ago

For anyone that didn't recognise this as a joke, do not do this!

load more comments (13 replies)
[-] [email protected] 24 points 9 months ago

the 777 stands for 'lucky jackpot number', as in 'youre lucky if you dont break your entire system'

load more comments (1 replies)
[-] [email protected] 21 points 9 months ago

This is so useful! Now I can just run:

rm -rf /

Without the sudo!

load more comments (1 replies)
load more comments (7 replies)
[-] [email protected] 38 points 9 months ago

No one mentioned ACLs so far. If you see a + using ls -l like this drwxrwx---+, you have an access control list entry.

access control lists

[-] [email protected] 16 points 9 months ago

More than a decade of using linux and I still can't remember setfacl syntax. I have better luck remembering tar syntax.

load more comments (4 replies)
load more comments (1 replies)
[-] [email protected] 33 points 9 months ago

Ouch. I'm sorry you had to find out that way. But in the plus side, you'll never forget.

[-] [email protected] 27 points 9 months ago* (last edited 9 months ago)

I worked in a job with build scripts. Developers would list what they wanted in a drop-down menu on a website, with very few "fill in the blanks." This would create a template, which was sanity-checked.

One of the "fill in the blanks" was "home directory of user, if not default /home/username." Some people filled it in, some didn't. A lot of "users" might be apps with /home being "/opt/appname" "/var/www/html" or something. We checked to make sure that directory existed, if not, create, and set permissions. Easy peasy, all automated. Ran this lots of times.

Then one day, the script failed. Borked the whole box. Sometimes the VM was corrupt, so delete VM and try again. Usually worked. But this time, the build kept failing. The box went down. Wasn't even bootable. This happened several times with this one build. So we mounted the borked drive under a new VM and checked out the logs. Just like the dessert stage of Willy Wonka chewing gum, it always failed at the last stage: making /home directories.

It would create them, then halt that it could not find bash. We looked for bash on the bad drive, and it was the usual /bin/bash shortcut to /usr/bin/bash and we were truly puzzled. I did a chroot to the drive and NOTHING worked. It just hung. That was the first clue.

The second was looking through the build script (in bash, which we didn't write) and checking the steps. Looked it the logs. Always died at creating some user named sapadm, the user for the HANA database. Eventually, I checked the configure file, and noticed it was the only user with the odd home directory "/usr/sap." Then it hit me: the permissions.

The script, thinking it was a home directory, did a chmod - R 755 for all directories and chmod - R 644 for all files! That meant, while creating home, it made everything under /usr not executable anymore! Holy shit, no wonder nothing worked! So we commented out that user in the config, ran the build again, and we were good! We created the sapadm by hand, and then later fixed the bug in the script.

SANITIZE YOUR DATA. Or you might turn Violet Beauregarde into a blueberry.

[-] [email protected] 26 points 9 months ago

Learned that when dealing with Ansible:

  • Folder in most cases 755
  • File in most cases 644 or 755 if executable.
load more comments (2 replies)
[-] [email protected] 17 points 9 months ago

I have wasted lots of time on this once, long ago.

Here's another one I wasted time on. Mount point didn't have proper permissions (SunOS I think it was). Couldn't access the mounted filesystem.

[-] [email protected] 14 points 9 months ago

I once wasted 2 hours on getting an ssl cert working on an irc server by just giving its user access to my nginx certs, which turned out to also need +x. That was when I realized everything I knew about the execute permission was wrong.

load more comments (1 replies)
load more comments
view more: next ›
this post was submitted on 21 Nov 2023
695 points (97.7% liked)

Linux

47293 readers
930 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS