error: failed to commit transaction (conflicting files) fatx: /usr/sbin exists in filesystem (owned by filesystem)
seems needs -DCMAKE_INSTALL_BINDIR=/usr/bin or something similar
Git Clone URL: | https://aur.archlinux.org/fatx.git (read-only, click to copy) |
---|---|
Package Base: | fatx |
Description: | XBox filesystem support for linux |
Upstream URL: | http://sourceforge.net/projects/fatx/ |
Keywords: | filesystem xbox |
Licenses: | GPL |
Provides: | fatx |
Submitter: | t3kk3n |
Maintainer: | t3kk3n |
Last Packager: | t3kk3n |
Votes: | 10 |
Popularity: | 0.006428 |
First Submitted: | 2014-08-09 19:19 (UTC) |
Last Updated: | 2024-04-17 15:37 (UTC) |
error: failed to commit transaction (conflicting files) fatx: /usr/sbin exists in filesystem (owned by filesystem)
seems needs -DCMAKE_INSTALL_BINDIR=/usr/bin or something similar
I shall take over maintainer duties, noticed someone tried to adopt this, then immediately disowned it. (I have the time nowadays)
@dkeruza I do not have an HDD to try at this time, however, I remember that with the "fusefatx" command even with GID and UID, in Nautilus the mount point seemed to belong to root, but at the time of making an "ls" in the terminal, the permits were correct.
In conclusion, I perform all operations by the terminal
I think it's a bug in software.
How do you mount a partition as my user , not as root? I tried --uid 1000 and --gid 1000 but doesnt work. It always mounts as root.
Hi @sl1pkn07, can tell me how to change the dependence by: libboost_program_options.so
? I can not find it.
Regards
Hello, please add libboost_program_options.so
to depends instead of boost-libs
and change boost
to makedepends
greetings
@t3kk3n Thanks to you for keeping it all this time, I hope that your way becomes calmer for you and your family.
Regards!
My apologies for not getting to this sooner! Life got busy, then even busier within the last few months, as I landed a new full time job within the IT world. I woke up this morning with an influx of emails regarding this package, and the previous emails got drowned out from work emails and such.
My sincere apologies for not taking the time with this package. @Bakasura, thank you for taking the time to maintain this.
Cheers!
@everyone this package works again!
@morcar try this patch @t3kk3n please update the patch
--- fatx.cpp 2018-02-15 12:27:26.000000000 -0500
+++ fatx.cpp 2021-05-09 12:16:25.971134000 -0500
@@ -61,7 +61,7 @@
}
if(container.size() + vv.size() > capacity) {
typename container_type::right_iterator b = container.right.begin();
- advance(b, container.size() + vv.size() - capacity);
+ std::advance(b, container.size() + vv.size() - capacity);
#if defined DEBUG && defined DBG_CACHE
dbglog((format("Xx. fatbuf: reduce (%d)\n") % container.size()).str())
#endif
@@ -1969,8 +1969,8 @@
dskmap:: dskmap(const fatxpar& par) :
memnext(
- bind(&dskmap::real_read, this, _1, _2),
- bind(&dskmap::real_write, this, _1, _2),
+ bind(&dskmap::real_read, this, boost::placeholders::_1, boost::placeholders::_2),
+ bind(&dskmap::real_write, this, boost::placeholders::_1, boost::placeholders::_2),
#define CACHESIZE (par.clus_fat * par.chain_size / max_cache_div > par.clus_size ? par.clus_fat * par.chain_size / max_cache_div : par.clus_size)
CACHESIZE,
(CACHESIZE / nb_cache_div > par.clus_size ? CACHESIZE / nb_cache_div : par.clus_size)
Pinned Comments
Bakasura commented on 2021-07-24 22:05 (UTC)
@everyone this package works again!