Fedora Linux Support Community & Resources Center
Sections ›› Home | Forums | Guidelines | Forum Help | Fedora FAQ | Fedora News 

Go Back   FedoraForum.org > Fedora Support > Software

Software Help on software problems.

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 2005-03-11, 04:21 PM CST
desipher's Avatar
desipher Offline
Registered User
 
Join Date: Jul 2004
Location: Arlington VA
Posts: 237
Problems with DVD Shrink

Hello Everyone

Having problems backup dvd in dvd shrink. It detects the drive me I get this error messgae, dvd shrink encountered an error and cannot continue "failed to initialize ASPI device" Can you please help thank you.
__________________
Desiph3r
_________________________________________________
System Engineer
Anystream
bspadetti@anystream.com
www.anystream.com
Reply With Quote
  #2  
Old 2005-03-13, 02:23 PM CST
mungoose Offline
Banned
 
Join Date: Feb 2005
Posts: 163
As far as I remember DVDShrink is a program for the windows from Redmont and not for linux. On M$ you need to install the aspi4all drivers.
Reply With Quote
  #3  
Old 2005-03-13, 03:10 PM CST
desipher's Avatar
desipher Offline
Registered User
 
Join Date: Jul 2004
Location: Arlington VA
Posts: 237
Thx for the reply but you can run dvdshrink threw wine on linux. I know you can do it but problem with it detecting my drive. Oh well.
__________________
Desiph3r
_________________________________________________
System Engineer
Anystream
bspadetti@anystream.com
www.anystream.com
Reply With Quote
  #4  
Old 2005-03-13, 03:15 PM CST
jtang613's Avatar
jtang613 Offline
Registered User
 
Join Date: Apr 2004
Location: Ottawa, Canada
Posts: 1,901
I've been using DVDShrink under wine for over a year. The way I get around the drive issue is to rip the movie to an ISO file first, then use DVDShrink on the ISO.
Code:
dvdbackup -M -i /dev/hdc -o ./ && mkisofs -dvd-video -V"DVD_LABEL" -o dvd.iso DVD_LABEL/
hth,
Jason
Reply With Quote
  #5  
Old 2005-03-13, 03:22 PM CST
desipher's Avatar
desipher Offline
Registered User
 
Join Date: Jul 2004
Location: Arlington VA
Posts: 237
ah nice thx for your help!!!
__________________
Desiph3r
_________________________________________________
System Engineer
Anystream
bspadetti@anystream.com
www.anystream.com
Reply With Quote
  #6  
Old 2005-03-13, 03:29 PM CST
desipher's Avatar
desipher Offline
Registered User
 
Join Date: Jul 2004
Location: Arlington VA
Posts: 237
I just be doing something wrong I'm getting command not found? Sorry kind new to backup dvd on linux and I don't want to go back to windows for burn dvd if can be done in linux
__________________
Desiph3r
_________________________________________________
System Engineer
Anystream
bspadetti@anystream.com
www.anystream.com
Reply With Quote
  #7  
Old 2005-03-13, 03:50 PM CST
jtang613's Avatar
jtang613 Offline
Registered User
 
Join Date: Apr 2004
Location: Ottawa, Canada
Posts: 1,901
Ah right - forgot to mention that You need dvdbackup or vobcopy for this to work. I recommend dvdbackup only because it's newer - but either will work.

You can find dvdbackup at: ftp://ftp.freshrpms.net/pub/dag/pack...c3.rf.i386.rpm

hth,
Jason
Reply With Quote
  #8  
Old 2005-03-13, 05:08 PM CST
jtang613's Avatar
jtang613 Offline
Registered User
 
Join Date: Apr 2004
Location: Ottawa, Canada
Posts: 1,901
Funny thing - I've been doing some work lately to get my Wine setup properly configured and I seem to have inadvertantly SOLVED this exact problem

There are two areas that need to be addressed: The 'dosdevices' directory and the 'config' file. If you don't have a config file, I suggest downloading winetools and using it to get a preliminary configuration up and running.

Your ~/.wine/dosdevices directory likely has a CD/DVD symlink similar to this:
Code:
lrwxrwxrwx  1 jtang613 users 18 Mar 11 20:06 d: -> /media/cdrecorder/
But what you need is two symlinks, like this:
Code:
lrwxrwxrwx  1 jtang613 users 18 Mar 11 20:06 d: -> /media/cdrecorder/
lrwxrwxrwx  1 jtang613 users  8 Mar 11 20:06 d:: -> /dev/hdd
Note the two colons on the block-device symlink.

You will also need to add the following to your ~/.wine/config file:
Code:
[Drive D]
"Path" = "/media/cdrecorder"
"Type" = "cdrom"
"Label" = "CD-Rom"
"Filesystem" = "win95"
Put this before the [wine] section - right up at the top.

Let us know if this works for you - others are probably interested.

Jason
Reply With Quote
  #9  
Old 2005-03-13, 06:22 PM CST
desipher's Avatar
desipher Offline
Registered User
 
Join Date: Jul 2004
Location: Arlington VA
Posts: 237
real quick how does k3b find the c drive for dvd shrink?
__________________
Desiph3r
_________________________________________________
System Engineer
Anystream
bspadetti@anystream.com
www.anystream.com
Reply With Quote
  #10  
Old 2005-03-13, 06:32 PM CST
jtang613's Avatar
jtang613 Offline
Registered User
 
Join Date: Apr 2004
Location: Ottawa, Canada
Posts: 1,901
The C: drive for Wine is usually located in your home directory ~/.wine/drive_c or ~/.wine/dosdevices/c:
Reply With Quote
  #11  
Old 2005-03-13, 07:18 PM CST
desipher's Avatar
desipher Offline
Registered User
 
Join Date: Jul 2004
Location: Arlington VA
Posts: 237
ok so you might have figured out way so I can compress right from the dvd in dvdshrink?
__________________
Desiph3r
_________________________________________________
System Engineer
Anystream
bspadetti@anystream.com
www.anystream.com
Reply With Quote
  #12  
Old 2005-03-13, 07:22 PM CST
desipher's Avatar
desipher Offline
Registered User
 
Join Date: Jul 2004
Location: Arlington VA
Posts: 237
ok so I did the first step with winetools but second step not sure of what to do I have this /media/cdrecorder/ but I don't think I have this /dev/hdd. I was able to get iso for dvd and I was able to shrink it but problem now is trying to burn with k3b now. Haven't used k3b that much rather then burning iso images.
__________________
Desiph3r
_________________________________________________
System Engineer
Anystream
bspadetti@anystream.com
www.anystream.com
Reply With Quote
  #13  
Old 2005-03-13, 08:10 PM CST
jtang613's Avatar
jtang613 Offline
Registered User
 
Join Date: Apr 2004
Location: Ottawa, Canada
Posts: 1,901
Yes, I have been able to get DVD Shrink to rip directly from DVD - no intermediate steps required. The settings that I referenced above, naturally, will need to be adjusted to suit your specific configuration. But the concept should work for everyone. Most people will have /dev/hdc as their /media/cdrecorder. I have a DVDROM *and* a DVDRW, hence /dev/hdd.

To see what device your system uses: cat /etc/fstab | grep cdrecorder
Then create a d:: symlink to complement the d: symlink: ln -s /dev/hdc ~/.wine/dosdevices/d::
The above step assumes that /dev/hdc is the device associated with /media/cdrecorder
Then edit the wine config file to add the [Drive D] entry as descibed above.

Also, you mentioned that you only have used K3B to burn ISO images? Well, DVDShrink is capable of outputting ISO images, so this shouldn't be a problem.

Jason
Reply With Quote
  #14  
Old 2005-03-14, 05:00 AM CST
desipher's Avatar
desipher Offline
Registered User
 
Join Date: Jul 2004
Location: Arlington VA
Posts: 237
here is what I got "/dev/hdc /media/cdrecorder auto pamconsole,exec,noauto,fscontext=system_u:object_r :removable_t,managed 0 0" Please help I really want to get this to work then I can quit windows all together.
__________________
Desiph3r
_________________________________________________
System Engineer
Anystream
bspadetti@anystream.com
www.anystream.com
Reply With Quote
  #15  
Old 2005-03-14, 07:00 AM CST
jtang613's Avatar
jtang613 Offline
Registered User
 
Join Date: Apr 2004
Location: Ottawa, Canada
Posts: 1,901
*sigh* Open and terminal and issue these commands exactly as they appear:
Code:
wine
cd ~/.wine/dosdevices/
rm d:*
ln -s /media/cdrecorder d:
ln -s /dev/hdc d::
Now, download and decompress the attached 'config' file and place it in your ~/.wine directory. Make a backup of your current config file if necessary. There are three sections I've added to this config file, in case you just want to copy the relevant sections into your config file:
[Drive D] ;-- 5 lines, near the top of the file
[AppDefaults\\DVD Shrink 3.2.exe\\DllOverrides] ;-- 2 lines, near the bottom
[AppDefaults\\DVD Shrink 3.2.exe\\Version] ;-- 2 lines, near the bottom

Oh, and if you haven't already done so, install dvdshrink

Jason
Attached Files
File Type: gz config.tar.gz (4.5 KB, 393 views)
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Does "shrink target" mean "shrink to" or "shrink by"? SpectrumDT Installation Help 2 2009-10-14 09:08 AM CDT
How well does Vista shrink? Dan General Support 10 2009-04-22 03:22 AM CDT
shrink fc9 partition Rita G. General Support 4 2008-09-25 05:11 AM CDT
Shrink an LVM? cbw34 Installation Help 13 2008-02-13 10:02 AM CST
dvd shrink 3.1 under wine? Valent Software 0 2004-05-27 07:42 PM CDT

Automatic Translations (Powered by Powered by Google):
Afrikaans Albanian Arabic Belarusian Bulgarian Catalan Chinese Croatian Czech Danish Dutch English Estonian Filipino Finnish French Galician German Greek Hebrew Hindi Hungarian Icelandic Indonesian Italian Japanese Korean Latvian Lithuanian Macedonian Malay Maltese Norwegian Persian Polish Portuguese Romanian Russian Serbian Slovak Slovenian Spanish Swahili Swedish Taiwanese Thai Turkish Ukrainian Vietnamese Yiddish

All times are GMT -7. The time now is 07:54 AM CST.

TopSubscribe to XML RSS for all Threads in all ForumsFedoraForumDotOrg Archive
Hosting provided by ThePlanet



All trademarks, and forum posts in this site are property of their respective owner(s).

FedoraForum.org is privately owned and is not directly sponsored by the Fedora Project or Red Hat, Inc.

Privacy Policy | Term of Use | Posting Guidelines | Archive | Contact | Founding Members
Designed By Ewdison Then | Powered by vBulletin ©2000-2009, Jelsoft Enterprises Ltd.
FedoraForum is Powered by Open Source Projects and Products
Translations made by vBET