You are not logged in.
Hello happy archlinux users, i have got a problem in the last fue days, dont really know when this began to appear, but i hope somone got a solution for me ![]()
I can't extract any large files anymore as a regular user. I'm trying to extract a movie thats 4gb large, as a normal user its not possible - as root its possible. I'm using ext3 fs and got enough diskspace ....
[tim@tuxBox some-warez]$ unrar e *.rar
.............
blahblah
.............
Extracting from some-warez.r41
... some-warez.img File Size Limit Exceeded
[tim@tuxBox some-warez]$[tim@tuxBox ~]$ ulimit
unlimited
http://timtux.net/ - my personal blog about almost everything
Offline
ulimit -a
what is the ouput of that.
"Be conservative in what you send; be liberal in what you accept." -- Postel's Law
"tacos" -- Cactus' Law
"t̥͍͎̪̪͗a̴̻̩͈͚ͨc̠o̩̙͈ͫͅs͙͎̙͊ ͔͇̫̜t͎̳̀a̜̞̗ͩc̗͍͚o̲̯̿s̖̣̤̙͌ ̖̜̈ț̰̫͓ạ̪͖̳c̲͎͕̰̯̃̈o͉ͅs̪ͪ ̜̻̖̜͕" -- -̖͚̫̙̓-̺̠͇ͤ̃ ̜̪̜ͯZ͔̗̭̞ͪA̝͈̙͖̩L͉̠̺͓G̙̞̦͖O̳̗͍
Offline
[tim@tuxBox ~]$ ulimit -a
core file size (blocks, -c) 0
data seg size (kbytes, -d) unlimited
file size (blocks, -f) unlimited
pending signals (-i) 6140
max locked memory (kbytes, -l) 32
max memory size (kbytes, -m) unlimited
open files (-n) 1024
pipe size (512 bytes, -p) 8
POSIX message queues (bytes, -q) 819200
stack size (kbytes, -s) 8192
cpu time (seconds, -t) unlimited
max user processes (-u) 6140
virtual memory (kbytes, -v) unlimited
file locks (-x) unlimited
[tim@tuxBox ~]$
http://timtux.net/ - my personal blog about almost everything
Offline
You could try to use rar in AUR.
Offline
Dosent work either, btw i can do a dd if=/dev/zero of=mytestfile bs=1M count=5000... so this is very very mystical ![]()
http://timtux.net/ - my personal blog about almost everything
Offline
Strace output:
write(4, "267", 1) = -1 EFBIG (File too large)
--- SIGXFSZ (File size limit exceeded) @ 0 (0) ---
+++ killed by SIGXFSZ +++
Process 10375 detachedhttp://timtux.net/ - my personal blog about almost everything
Offline
Does your unrar use O_LARGEFILE to open files? You can easily check by doing
strace unrar l /path/to/some-warez.rar 2>&1 | grep "^open.*some-warez.rar"The output should look like
open("/path/to/some-warez.rar", O_RDONLY|O_LARGEFILE) = 3Offline
[tim@tuxBox some-warez]$ strace unrar e *.rar 2>&1 | grep "^open.*.rar"
open("/usr/local/etc/.rarrc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
open("some-warez.rar", O_RDONLY|O_LARGEFILE) = 3btw, this maybe is glibc related? did notice a glibc update for some days ago, and it was some days ago this problem did start to appear:
[tim@tuxBox ~]$ strings /usr/bin/unrar|grep -i glib
GLIBC_2.0
GLIBC_2.1.3
GLIBC_2.1
GLIBC_2.2
GLIBCXX_3.4
[tim@tuxBox ~]$ pacman -Qi glibc |grep Version
Version : 2.5-2http://timtux.net/ - my personal blog about almost everything
Offline