Search found 4 matches

by FeRDNYC
Thu Sep 05, 2024 9:50 am
Forum: MakeMKV for Linux
Topic: Installing as non-root user
Replies: 14
Views: 23722

Re: Installing as non-root user

It's possible now, from memory: 1) oss part Call configure with --prefix=$HOME. Comment out the call to ldconfig in the Makefile (it would require root). Yeah, I really wish the makemkv devs would remove that, or make it conditional on having UID 0 when 'make install' is run. Despite the assertions...
by FeRDNYC
Thu Sep 05, 2024 8:50 am
Forum: MakeMKV for Linux
Topic: Improperly compressed 1.17.7 archives
Replies: 3
Views: 1298

Re: Improperly compressed 1.17.7 archives

You need to run tar zxf [.tar.gz file name] for a gzip'd file. You don't, any remotely modern GNU tar will auto-detect compressed archives; an explicit z or j or J hasn't been necessary when extracting since like the mid-2000s. When creating the archive, sure, but tar's x-mode is smart. You'd have ...
by FeRDNYC
Fri Jan 31, 2020 1:27 pm
Forum: MakeMKV for Linux
Topic: [solved] sudo make install fails
Replies: 2
Views: 10804

Re: sudo make install fails

I know it's been nearly a month and this is probably solved, but... Yes, it's true that use of the -D flag makes the Makefile install rules incompatible with the fallback autoxxx/install-sh script, surprisingly enough. The reason nobody noticed that before, though, is that the script in that directo...
by FeRDNYC
Fri Jan 31, 2020 1:09 pm
Forum: MakeMKV for Linux
Topic: Failed to get full access to drive?
Replies: 1
Views: 10726

Re: Failed to get full access to drive?

The advice about CAP_SYS_RAWIO reveals that message as pretty outdated, I don't think anything uses capabilities for things like local device IO anymore. More likely there's some other protection mechanism that's blocking your access to the device. One thing you could try is temporarily setting SELi...