Package Details: fatx 1.17-2

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)

Dependencies (7)

Required by (0)

Sources (1)

Pinned Comments

Bakasura commented on 2021-07-24 22:05 (UTC)

@everyone this package works again!

Latest Comments

« First ‹ Previous 1 2 3 4 Next › Last »

sl1pkn07 commented on 2024-04-17 13:47 (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

t3kk3n commented on 2024-04-16 20:03 (UTC)

I shall take over maintainer duties, noticed someone tried to adopt this, then immediately disowned it. (I have the time nowadays)

Bakasura commented on 2023-01-23 23:04 (UTC)

@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.

dkeruza commented on 2023-01-23 04:12 (UTC)

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.

Bakasura commented on 2022-11-29 17:21 (UTC)

Hi @sl1pkn07, can tell me how to change the dependence by: libboost_program_options.so? I can not find it. Regards

sl1pkn07 commented on 2022-10-03 14:10 (UTC) (edited on 2022-10-03 14:10 (UTC) by sl1pkn07)

Hello, please add libboost_program_options.so to depends instead of boost-libs and change boost to makedepends

greetings

Bakasura commented on 2021-07-27 18:00 (UTC)

@t3kk3n Thanks to you for keeping it all this time, I hope that your way becomes calmer for you and your family.

Regards!

t3kk3n commented on 2021-07-26 15:14 (UTC)

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!

Bakasura commented on 2021-07-24 22:05 (UTC)

@everyone this package works again!

Bakasura commented on 2021-05-09 17:29 (UTC)

@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)