Nieuws:

Ubuntu-NL weer online!

Na een periode van technische problemen en een overbelaste server zijn we eindelijk weer bereikbaar.
Samen met Hobbynet, onze sponsor en hostingpartner, hebben we een oplossing gevonden zodat alles weer soepel draait.

Bedankt voor jullie geduld en begrip. We hopen nu weer verder te gaan waar we gebleven waren.

Het team van Ubuntu-NL

Welkom, Gast. Alsjeblieft inloggen of registreren.
Heb je de activerings-mail niet ontvangen?

Auteur Topic: hellanzb pakt iso bestanden niet uit(opgelost)  (gelezen 5901 keer)

Offline frankske

  • Lid
hellanzb pakt iso bestanden niet uit(opgelost)
« Gepost op: 2009/02/01, 21:51:46 »
hallo,
       hellanzb werkt naar alle tevredenheid bij mij, maar bij het unrarren gaat het soms mis.
       Als er een opgedeeld iso-bestand in zit blijft ie vragen om een wachtwoord.
       na het opgeven van mijn root ww pakt hij hem niet uit.
       bij het uitpakken in windows verloopt het vlekkeloos zonder opgave van een wachtwoord.

       heeft dit te maken met een tekortkoming van hellanzb of moet ik de rechten van een bepaalde map/bestand veranderen.

groetjes
« Laatst bewerkt op: 2009/03/22, 00:18:32 door frankske »

Offline ivo

  • Lid
Re: hellanzb pakt iso bestanden niet uit
« Reactie #1 Gepost op: 2009/02/01, 21:57:28 »
Begrijp ik het goed;
Is dat dan onder Windows exact dezelfde iso die dan wel goed gaat en onder Linux niet?
There are only 10 types of people in the world; those who understand binary and those who don't.

Offline frankske

  • Lid
Re: hellanzb pakt iso bestanden niet uit
« Reactie #2 Gepost op: 2009/02/01, 21:58:22 »
ja, word vlekkeloos uigepakt

Offline ivo

  • Lid
Re: hellanzb pakt iso bestanden niet uit
« Reactie #3 Gepost op: 2009/02/01, 22:02:12 »
ja, word vlekkeloos uigepakt

Hmmm, iemand een idee? Ikke niet.
There are only 10 types of people in the world; those who understand binary and those who don't.

Offline Johan van Dijk

  • Administrator
    • johanvandijk
Re: hellanzb pakt iso bestanden niet uit
« Reactie #4 Gepost op: 2009/02/02, 10:04:35 »
Plaats je configuratiebestand eens hier? (wel even je login/wachtwoorden weghalen ;))

Offline frankske

  • Lid
Re: hellanzb pakt iso bestanden niet uit
« Reactie #5 Gepost op: 2009/02/03, 21:51:39 »
bij deze mijn hellanzb conf.


#
# hellanzb.conf - sample hellanzb configuration file
#
# To quickly get started, change the default defineServer() call and the
# Hellanzb.PREFIX_DIR directory
#
# This is actually interpreted python code: strings must be surrounded by
# quotes, numbers and the 'None' keyword should not
#
# $Id: hellanzb.conf.sample 1057 2007-03-27 04:13:53Z pjenvey $

# Log output to this file, set to None (no single quotes) for no logging
Hellanzb.LOG_FILE = os.path.expanduser('~') + '/.hellanzb/log'

# Uncomment this line to log DEBUG messages to the specified file
#Hellanzb.DEBUG_MODE = os.path.expanduser('~') + '/.hellanzb/log-debug'

# Automatically roll over both log files when they reach LOG_FILE_MAX_BYTES
# size
Hellanzb.LOG_FILE_MAX_BYTES = 0

# Save LOG_FILE_BACKUP_COUNT of those rolled over log files
Hellanzb.LOG_FILE_BACKUP_COUNT = 0


# Define server connections. Servers can have multiple hosts, hellanzb will
# persist the number of connections to each specified server. There may be
# multiple defineServer lines.

# Set both the username and password to 'None' (without the quotes) if your
# usenet server does not require authorization
defineServer(id = 'EWEKA',
             hosts = [ 'newsreader70.eweka.nl.:119' ],
             #hosts = [ 'news.changeme.com', 'morenews.changeme.com:8000' ],


             username = 'xxxx',
             password = 'xxxx',
             #username = None,           # no auth
             #password = None,

             connections = 8,
             antiIdle = 4.5 * 60,        # 4 minutes, 30 seconds, 0 to disable
             #bindTo = '204.31.33.7',    # connect FROM this ip address
             #enabled = False,           # disable this server
             #skipGroupCmd = False,      # skip sending nntp GROUP commands
             #fillserver = 0,            # defaults to 0 (a main server).
                                         # fillservers must have values > 0
                                         # (priority)
             ssl = False
             )

# Uncomment this line to limit all server connections to the specified KB/s
# bandwidth
#Hellanzb.MAX_RATE = 250 # limit to 250kB/s


# Important locations
#Hellanzb.PREFIX_DIR = os.path.expanduser('~') + '/.hellanzb/'
Hellanzb.PREFIX_DIR = 'home/frank/hellanzb/'

# Where to put queued .nzb files
Hellanzb.QUEUE_DIR = Hellanzb.PREFIX_DIR + 'nzb/daemon.queue/'

# Where the fully processed archives go
Hellanzb.DEST_DIR = Hellanzb.PREFIX_DIR + 'done/'

# The .nzb currently being downloaded is stored here
Hellanzb.CURRENT_DIR = Hellanzb.PREFIX_DIR + 'nzb/daemon.current/'

# The archive currently being downloaded is stored here
Hellanzb.WORKING_DIR = Hellanzb.PREFIX_DIR + 'nzb/daemon.working/'

# Archives interrupted in the middle of downloading are stored here temporarily
Hellanzb.POSTPONED_DIR = Hellanzb.PREFIX_DIR + 'nzb/daemon.postponed/'

# Archives currently being processed. May contains archive directories, or
# symbolic links to archive directories
Hellanzb.PROCESSING_DIR = Hellanzb.PREFIX_DIR + 'nzb/daemon.processing/'

# Temp storage
Hellanzb.TEMP_DIR = Hellanzb.PREFIX_DIR + 'nzb/daemon.temp/'

# Filename to store hellanzb state in between CTRL-Cs. The state (includes the
# order of the queue, and smart par recovery information) is intermittently
# written out as XML to this file
Hellanzb.STATE_XML_FILE = Hellanzb.PREFIX_DIR + 'nzb/hellanzbState.xml'


# _Sub directory within the nzb archive dir_ to move processed files to
Hellanzb.PROCESSED_SUBDIR = 'processed'

# Remove the PROCESSED_SUBDIR if the archive was successfully post processed.
# Warning: The normal Hellanzb.LOG_FILE should be enabled with this option --
# for a record of what hellanzb deletes
Hellanzb.DELETE_PROCESSED = True


# Maximum amount of memory used to cache encoded Article data segments.
# hellanzb will write article data to disk when this cache is exceeded
# Available settings:
# -1: Unlimited size
#  0: Disable cache (only cache to disk)
# >0: Limit cache to this size, in bytes, KB, MB, e.g.:
#     1024 '1024KB' '100MB' '1GB'
#Hellanzb.CACHE_LIMIT = 0


# Save archives into a sub directory of DEST_DIR named after their newzbin.com
# category (when queued using the enqueuenewzbin XMLRPC call); e.g. Apps,
# Movies, Music
Hellanzb.CATEGORIZE_DEST = True

# Disable SMART_PAR (download all PAR files)
#Hellanzb.SMART_PAR = False

# Supply a path to the (un)rar command
#Hellanzb.UNRAR_CMD = '/usr/bin/unrar'

# Supply a path to the par2 command
Hellanzb.PAR2_CMD = '/usr/bin/par2'

# Skip unraring during post processing
Hellanzb.SKIP_UNRAR = False


# Supply a path to the optional macbinconv command (for converting MacBinary
# files)
#Hellanzb.MACBINCONV_CMD = None

# hellanzb inherits the umask from the current user's environment (unless it's
# running in daemon mode). The umask can be forced with this option
#Hellanzb.UMASK = 0022


# Supported music types (case insensitive) and optionally their decompression
# executables
# and the file type that executable will decompress to (case insensitive). The
# exes must be in the PATH.
#
# <FILE> will be replaced with the name of music file
# optional <DESTFILE> is <FILE> with the specified extension
#
# None means these files don't need to be decompressed
defineMusicType('wav', None, None)
defineMusicType('mp3', None, None)
#defineMusicType('ape', 'mac <FILE> <DESTFILE> -d', 'wav')
#defineMusicType('flac', 'flac -d -- <FILE>', 'wav')
#defineMusicType('shn', 'shorten -x < <FILE> > <DESTFILE>', 'wav')

# Max files we should decompress at the same time
Hellanzb.MAX_DECOMPRESSION_THREADS = 2


# Enable Mac OS X Growl notifications
Hellanzb.GROWL_NOTIFY = False

# The growl notification server, in the format 'hostname'
Hellanzb.GROWL_SERVER = 'IP'

# The growl password
Hellanzb.GROWL_PASSWORD = 'password'


# Enable libNotify Daemon notifications
Hellanzb.LIBNOTIFY_NOTIFY = False


# Disable ANSI color codes in the main screen (preserves the in place scroller)
#Hellanzb.DISABLE_COLORS = False

# Disable ALL ANSI color codes in the main screen (for terminals that don't
# support ANY ANSI codes
#Hellanzb.DISABLE_ANSI = False


# Hostname for the XMLRPC client to connect to. By default, localhost
Hellanzb.XMLRPC_SERVER = 'localhost'

# IP address on which the XMLRPC Server will be binded to.
# Type '0.0.0.0' for any interfaces, '127.0.0.1' will disable remote access
Hellanzb.XMLRPC_SERVER_BIND = '127.0.0.1'

# Port number the XML RPC server will listen on, and the client will connect to.
# Set to 'None' (without the quotes!) for no XML RPC server
Hellanzb.XMLRPC_PORT = 8760

# Password for the XML RPC server. You might probably never use this, but the
# command line XML RPC calls do -- it should definitely be changed from its
# default value. The XML RPC username is hardcoded as 'hellanzb' -- E.g. URL:
# http://hellanzb:changeme@localhost:8760
Hellanzb.XMLRPC_PASSWORD = 'changeme'


# Username/Password to http://www.newzbin.com for automatic NZB downloading
Hellanzb.NEWZBIN_USERNAME = None
Hellanzb.NEWZBIN_PASSWORD = None


# If any of the following file types are missing from the archive and cannot be
# repaired, continue processing because they're unimportant (case insensitive)
Hellanzb.NOT_REQUIRED_FILE_TYPES = [ 'log', 'm3u', 'nfo', 'nzb', 'sfv', 'txt' ]

# Don't get rid of (move into the PROCESSED dir) the following file types when
# finished post processing (case insensitive)
#Hellanzb.KEEP_FILE_TYPES = [ 'log', 'm3u', 'nfo', 'nzb', 'sfv', 'txt' ]
Hellanzb.KEEP_FILE_TYPES = [ 'nfo', 'txt' ]


# List of alternative file extensions matched as NZB files in the QUEUE_DIR.
# The 'nzb' file extension is always matched
#Hellanzb.OTHER_NZB_FILE_TYPES = [ 'xml' ]

# Support extracting NZBs from ZIP files with this suffix (case insensitive) in
# QUEUE_DIR. Defaults to '.nzb.zip'. Set to False to disable.
#Hellanzb.NZB_ZIPS = '.nzb.zip'

# Support extracting NZBs from GZIP files with this suffix (case insensitive)
# in QUEUE_DIR. Defaults to '.nzb.gz'. Set to False to disable.
#Hellanzb.NZB_GZIPS = '.nzb.gz'

# Delay enqueueing new, recently modified NZB files added to the QUEUE_DIR until
# this many seconds have passed since the NZB's last modification time (defaults
# to 10 seconds)
#Hellanzb.NZBQUEUE_MDELAY = 10

# Optional external handler script. hellanzb will run this script after post
# processing an archive, with the following arguments:
#
# handler_script type archiveName destDir elapsedTime parMessage
#
# type: post processing result, either 'SUCCESS' or 'ERROR'
# archiveName: name of the archive, e.g. 'Usenet_Post5'
# destDir: where the archive ended up, e.g. '/ext2/usenet/Usenet_Post5'
# elapsedTime: a pretty string showing how long post processing took, e.g.
#              '10m 37s'
# parMessage: optional post processing message. e.g. '(No Pars)'
#Hellanzb.EXTERNAL_HANDLER_SCRIPT = '~/bin/post_hellanzb.sh'
« Laatst bewerkt op: 2009/02/03, 21:53:57 door frankske »

Offline Johan van Dijk

  • Administrator
    • johanvandijk
Re: hellanzb pakt iso bestanden niet uit
« Reactie #6 Gepost op: 2009/02/04, 00:32:14 »
#Hellanzb.UNRAR_CMD = '/usr/bin/unrar'
Haal van deze regel het hekje aan het begin weg en start hellanzb opnieuw op.
Doet hij het dan wel goed?

Zorg er ook voor dat je het pakket unrar geïnstalleerd hebt.

Offline frankske

  • Lid
Re: hellanzb pakt iso bestanden niet uit
« Reactie #7 Gepost op: 2009/02/04, 20:40:14 »
hoi johan,
             ik ga het bestand nog een keer binnen halen en ik zal de wijziging doorvoeren.

             unrar is geinstalleerd, want andere bestanden worden gewoon uitgepakt.

             je krijgt in het weekend antwoord of het werkt, heb het op het moment nogal druk bij de baas.

             iniedergeval bedankt zover voor het meehelpen en alle andere medeforumbewooners

Offline frankske

  • Lid
Re: hellanzb pakt iso bestanden niet uit
« Reactie #8 Gepost op: 2009/02/08, 20:36:00 »
hoi.
   wijziging doorgevoerd, het bestand opnieuw gedownload,  maar hellanzb pakt m niet uit.
   naar de map done gegaan,rechts klik context menu met het 1e rar geselecteerd, uitpakken geselecteerd en na enige tijd vraagd hij om een wachtwoord.
helaas werkt de aanpassing niet.

Offline charclo

  • Lid
Re: hellanzb pakt iso bestanden niet uit
« Reactie #9 Gepost op: 2009/02/08, 22:07:36 »
Meestal als er om een wachtwoord gevraagd wordt bij het uitpakken van RAR-bestanden wil dit zeggen dat de bestanden beschadigd zijn. Controleer dit dus eerst eens. Een handige tool hiervoor is gpar2.
HP Pavilion dv6660eb - Intel Core 2 Duo T7250 2 GHz - 2 GB ram - Nvidia GeForce 8400M GS 128 MB --> Dualboot Ubuntu en Windows Vista
P4 2.6 GHz - 1GB ram - NVIDIA GS7600 - 20 inch Benq widescreen --> Dualboot Ubuntu en Windows XP

Offline frankske

  • Lid
Re: hellanzb pakt iso bestanden niet uit
« Reactie #10 Gepost op: 2009/02/14, 20:44:21 »
hoi,
     de bestanden zijn door hellanzb gescand en waar nodig gerepareerd , maar hij kan ze niet uitpakken , omdat er een iso inzit.
     Alle bestanden naar een ntfs windows partitie gekopieerd en met winrar vlekkeloos uitgepakt zonder dat ie zeurde over een wachtwoord.

De bestanden waren wel degelijk goed.

in iedere geval bedankt voor je reactie.

Offline frankske

  • Lid
Re: hellanzb pakt iso bestanden niet uit
« Reactie #11 Gepost op: 2009/03/22, 00:04:22 »
hoi,
     volgens mij heeft het iets met de rechten van de hellamap te maken gehad.

2 weken geleden ging mijn hdd kapot met daarop ubuntu 8.10.
2 nieuwe erin gezet met op de ene het bestuuringssysteem en op de tweede een partitie van 500 gb voor de opslag van al mijn spullen.
deze heb ik home2 genoemd.
volgende probleem waren de rechten van deze partitie.
kon geen mappen aanmaken via de interfase.(alleen de root)
na wat geklungel kon ik dan eindelijk mappen aanmaken via de terminal, maar in die mappen kon je dus ook weer niets aanmaken.
daarna met chmod de rechten veranderd van de map, zodat een program ook mappen aan mag maken.(hellanzb)
vanaf dit moment worden alle iso s gewoon uitgepakt, zonder dat er een wachtwoord wordt gevraagd.

groetjes