You are not logged in.

#1 2015-04-16 14:21:44

Риал Краесис
Member
Registered: 2015-02-19
Posts: 19

[solved]extracting multiple archives won't work after gnome 3.16

hi!
after updating  to gnome 3.16 the archive application won't extract multiple archives and give me "Truncated RAR file data"!!! and some time it just extract the first part. unrar installed.
nope the file is not corrupted and i was able to extract it before update in gnome 3.14.2!
if needed any particular information let me know.
Tnx

Last edited by Риал Краесис (2015-05-18 23:02:59)

Offline

#2 2015-04-16 20:05:51

Goresome
Member
From: Russia
Registered: 2011-12-06
Posts: 67

Re: [solved]extracting multiple archives won't work after gnome 3.16

It is unclear if the archive is indeed valid and wasn't corrupted to make any conclusion. Try installing pcmanfm + xarchiver and unpack archive with it, or test/unpack directly with unrar.

Offline

#3 2015-04-16 20:34:29

brix
Member
Registered: 2014-05-26
Posts: 69

Re: [solved]extracting multiple archives won't work after gnome 3.16

I too have noticed that gnome's file-roller won't unpack multiple RAR archives -- or encrypted RAR archives requiring passwords, either -- since the 3.16 update.

'unrar x', on the other hand, works as expected in both cases.


Enough is more.

Offline

#4 2015-04-17 20:26:21

Риал Краесис
Member
Registered: 2015-02-19
Posts: 19

Re: [solved]extracting multiple archives won't work after gnome 3.16

Goresome wrote:

It is unclear if the archive is indeed valid and wasn't corrupted to make any conclusion. Try installing pcmanfm + xarchiver and unpack archive with it, or test/unpack directly with unrar.

the xarchiver was able to extract it. than why archive manager wasn't able to do that???

Last edited by Риал Краесис (2015-04-17 20:46:37)

Offline

#5 2015-04-18 12:28:22

Lone_Wolf
Member
From: Netherlands, Europe
Registered: 2005-10-04
Posts: 11,920

Re: [solved]extracting multiple archives won't work after gnome 3.16

Риал Краесис wrote:
Goresome wrote:

It is unclear if the archive is indeed valid and wasn't corrupted to make any conclusion. Try installing pcmanfm + xarchiver and unpack archive with it, or test/unpack directly with unrar.

the xarchiver was able to extract it. than why archive manager wasn't able to do that???

Sound like you found a bug in gnome archive manager, don't forget to report it upstream !


Disliking systemd intensely, but not satisfied with alternatives so focusing on taming systemd.


(A works at time B)  && (time C > time B ) ≠  (A works at time C)

Offline

#6 2015-04-18 19:03:40

Риал Краесис
Member
Registered: 2015-02-19
Posts: 19

Re: [solved]extracting multiple archives won't work after gnome 3.16

Lone_Wolf wrote:
Риал Краесис wrote:
Goresome wrote:

It is unclear if the archive is indeed valid and wasn't corrupted to make any conclusion. Try installing pcmanfm + xarchiver and unpack archive with it, or test/unpack directly with unrar.

the xarchiver was able to extract it. than why archive manager wasn't able to do that???

Sound like you found a bug in gnome archive manager, don't forget to report it upstream !

bug reported!https://bugs.archlinux.org/task/44639?project=1&only_watched=1

Offline

#7 2015-04-22 02:34:33

MichaelTunnell
Member
Registered: 2014-07-28
Posts: 14
Website

Re: [solved]extracting multiple archives won't work after gnome 3.16

I am experiencing the same issue.

@Риал Краесис, you provided a link to the Arch Bug Report but not a link to the GNOME/File-roller report. Did you make one of those as well?

Offline

#8 2015-04-22 09:04:31

caseyjp1
Member
From: Denver
Registered: 2009-12-22
Posts: 35
Website

Re: [solved]extracting multiple archives won't work after gnome 3.16

Here is the bugzilla report:  https://bugzilla.gnome.org/show_bug.cgi?id=747141

Offline

#9 2015-04-22 14:06:55

loqs
Member
Registered: 2014-03-06
Posts: 17,371

Re: [solved]extracting multiple archives won't work after gnome 3.16

Might be this issue in part https://bugs.archlinux.org/task/42665
With patch applied rar support should be improved if the unrar package is installed

# $Id: PKGBUILD 236456 2015-04-14 01:52:39Z heftig $
# Maintainer: Jan Alexander Steffens (heftig) <jan.steffens@gmail.com>
# Contributor: Jan de Groot <jgc@archlinux.org>

pkgname=file-roller
pkgver=3.16.1
pkgrel=1
pkgdesc="Create and modify archives"
arch=('i686' 'x86_64')
license=('GPL')
depends=('desktop-file-utils' 'gtk3' 'hicolor-icon-theme' 'dconf' 'libarchive' 'file' 'json-glib' 'libnotify' 'p7zip')
makedepends=('intltool' 'pkg-config' 'libnautilus-extension' 'itstool' 'docbook-xsl')
optdepends=('lrzip: lrzip archive support'
            'unace: extraction tool for the proprietary ace archive format')
groups=('gnome-extra')
options=('!emptydirs')
install=file-roller.install
url="http://www.gnome.org"
source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz
        "301695.patch::https://bug747970.bugzilla-attachments.gnome.org/attachment.cgi?id=301695&action=diff&collapsed=&context=patch&format=raw&headers=1")
sha256sums=('d0e3cf1af1bc30e29e6bbf9444fed859092e999bc4686541c021d6c1f6a58689'
            'eeca1d2bd0aa88bcac4245d4a97104469456490cd04bbf1153ec566921082d7e')

prepare() {
  cd $pkgname-$pkgver
  patch -p1 -i ../301695.patch
}

build() {
  cd $pkgname-$pkgver

  ./configure --prefix=/usr --sysconfdir=/etc \
      --libexecdir=/usr/lib/file-roller \
      --localstatedir=/var --disable-static \
      --disable-schemas-compile
  make
}

package() {
  cd $pkgname-$pkgver
  make DESTDIR="$pkgdir" install
}

Offline

#10 2015-04-22 14:24:18

MichaelTunnell
Member
Registered: 2014-07-28
Posts: 14
Website

Re: [solved]extracting multiple archives won't work after gnome 3.16

caseyjp1 wrote:

Thank you, I just wanted to comment on the report to provide additional confirmation.

Offline

#11 2015-04-22 19:48:11

Риал Краесис
Member
Registered: 2015-02-19
Posts: 19

Re: [solved]extracting multiple archives won't work after gnome 3.16

MichaelTunnell wrote:

I am experiencing the same issue.

@Риал Краесис, you provided a link to the Arch Bug Report but not a link to the GNOME/File-roller report. Did you make one of those as well?


sorry just reported to arch linux!
it seems some other people done that.

Offline

#12 2015-05-15 16:59:56

brix
Member
Registered: 2014-05-26
Posts: 69

Re: [solved]extracting multiple archives won't work after gnome 3.16

The issue recurs with the latest update (file-roller 3.16.2-1). Happily, the patch still works and can be applied with minimal editing.


Enough is more.

Offline

#13 2015-05-17 11:33:51

Риал Краесис
Member
Registered: 2015-02-19
Posts: 19

Re: [solved]extracting multiple archives won't work after gnome 3.16

thnx!
updated and solved!

Offline

#14 2015-05-18 01:14:17

kabbalah
Banned
Registered: 2011-08-23
Posts: 150

Re: [solved]extracting multiple archives won't work after gnome 3.16

Nemo same problem , just install pcmafm and xarchiver and nothing has changed.

As I hit the patch proposed Loqs

Offline

#15 2015-05-18 01:20:13

kabbalah
Banned
Registered: 2011-08-23
Posts: 150

Re: [solved]extracting multiple archives won't work after gnome 3.16

Reached the previous post , I had already solved the problem with the proposal Loqs .
He did not remember how he had done .

This was the solution.

Thanks loqs for your reply, I enter the link and that was the solution, from AUR compile file-roller -temp and change the content of the pkgbuild  with the link and go.

Thanks

Offline

#16 2015-05-18 23:02:25

Риал Краесис
Member
Registered: 2015-02-19
Posts: 19

Re: [solved]extracting multiple archives won't work after gnome 3.16

just update to 3.16.2 an every things will be fine!
ta-da! problem solved!

Offline

Board footer

Powered by FluxBB