LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware
User Name
Password
Linux - Hardware This forum is for Hardware issues.
Having trouble installing a piece of hardware? Want to know if that peripheral is compatible with Linux?

Notices


Reply
  Search this Thread
Old 07-12-2010, 09:25 PM   #16
Paul_Lee
Member
 
Registered: Jul 2001
Location: Cambridgeshire, England
Distribution: Ubuntu 13.10
Posts: 93

Original Poster
Rep: Reputation: 15

Still trying with ls and mount...still perplexed!
 
Old 07-12-2010, 10:33 PM   #17
smoker
Senior Member
 
Registered: Oct 2004
Distribution: Fedora Core 4, 12, 13, 14, 15, 17
Posts: 2,279

Rep: Reputation: 250Reputation: 250Reputation: 250
Did you try copying *.VOB ?
and ls -l gives more information.

Last edited by smoker; 07-12-2010 at 10:39 PM.
 
Old 07-13-2010, 08:21 AM   #18
H_TeXMeX_H
LQ Guru
 
Registered: Oct 2005
Location: $RANDOM
Distribution: slackware64
Posts: 12,928
Blog Entries: 2

Rep: Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301
Ok, now that you have the disk mounted, use 'vobcopy -l' to copy off the vobs, into one file.
http://freshmeat.net/projects/vobcopy/
 
Old 07-13-2010, 08:40 AM   #19
Guttorm
Senior Member
 
Registered: Dec 2003
Location: Trondheim, Norway
Distribution: Debian and Ubuntu
Posts: 1,453

Rep: Reputation: 447Reputation: 447Reputation: 447Reputation: 447Reputation: 447
Hi

sudo cp -r /mnt/VIDEO_TS /home/paul/VOB/

The shell can't expand the * since it doesn't have access to the /mnt/VIDEO_TS directory. It does that before the sudo.
 
Old 07-13-2010, 11:50 AM   #20
Paul_Lee
Member
 
Registered: Jul 2001
Location: Cambridgeshire, England
Distribution: Ubuntu 13.10
Posts: 93

Original Poster
Rep: Reputation: 15
I've managed to copy the VOBs into my home directory, but I can't access them. The default permissions (root is the only one allowed to rwx on the directory) have been retained, and when I do a sudo chmod ug+rw on the directory, even though an "ls -al" shows the permissions
have been changed, I still can't cd into the directory!
 
Old 07-13-2010, 12:03 PM   #21
Paul_Lee
Member
 
Registered: Jul 2001
Location: Cambridgeshire, England
Distribution: Ubuntu 13.10
Posts: 93

Original Poster
Rep: Reputation: 15
vobcopy won't compile, btw:

paul@paul:~/Downloads/vobcopy-1.2.0$ make
cc -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -I/usr/local//include -c vobcopy.c
In file included from vobcopy.c:53:
vobcopy.h:205:32: error: dvdread/dvd_reader.h: No such file or directory
vobcopy.h:210:31: error: dvdread/ifo_types.h: No such file or directory
vobcopy.h:211:30: error: dvdread/ifo_read.h: No such file or directory
vobcopy.h:213:30: error: dvdread/nav_read.h: No such file or directory
vobcopy.h:214:31: error: dvdread/nav_print.h: No such file or directory
In file included from vobcopy.h:217,
from vobcopy.c:53:
dvd.h:9: error: expected ‘)’ before ‘*’ token
vobcopy.c: In function ‘main’:
vobcopy.c:76: error: ‘DVD_VIDEO_LB_LEN’ undeclared (first use in this function)
vobcopy.c:76: error: (Each undeclared identifier is reported only once
vobcopy.c:76: error: for each function it appears in.)
vobcopy.c:99: error: ‘dvd_reader_t’ undeclared (first use in this function)
vobcopy.c:99: error: ‘dvd’ undeclared (first use in this function)
vobcopy.c:100: error: ‘dvd_file_t’ undeclared (first use in this function)
vobcopy.c:100: error: ‘dvd_file’ undeclared (first use in this function)
vobcopy.c:110: error: ‘ifo_handle_t’ undeclared (first use in this function)
vobcopy.c:110: error: ‘vmg_file’ undeclared (first use in this function)
vobcopy.c:111: error: ‘tt_srpt_t’ undeclared (first use in this function)
vobcopy.c:111: error: ‘tt_srpt’ undeclared (first use in this function)
vobcopy.c:112: error: ‘vts_file’ undeclared (first use in this function)
vobcopy.c:113: error: ‘vts_ptt_srpt_t’ undeclared (first use in this function)
vobcopy.c:113: error: ‘vts_ptt_srpt’ undeclared (first use in this function)
vobcopy.c:114: error: ‘pgc_t’ undeclared (first use in this function)
vobcopy.c:114: error: ‘cur_pgc’ undeclared (first use in this function)
vobcopy.c:1188: error: ‘DVD_READ_INFO_BACKUP_FILE’ undeclared (first use in this function)
vobcopy.c:1222: error: ‘DVD_READ_INFO_FILE’ undeclared (first use in this function)
vobcopy.c:1260: error: ‘DVD_READ_MENU_VOBS’ undeclared (first use in this function)
vobcopy.c:1265: error: ‘DVD_READ_TITLE_VOBS’ undeclared (first use in this function)
vobcopy.c:1828: warning: format ‘%d’ expects type ‘int’, but argument 4 has type ‘off_t’
make: *** [vobcopy.o] Error 1
 
Old 07-13-2010, 12:12 PM   #22
Guttorm
Senior Member
 
Registered: Dec 2003
Location: Trondheim, Norway
Distribution: Debian and Ubuntu
Posts: 1,453

Rep: Reputation: 447Reputation: 447Reputation: 447Reputation: 447Reputation: 447
Hi

Permission problem still. You can take ownership:

Code:
sudo chown -R paul /home/paul/VOB/
 
Old 07-13-2010, 12:59 PM   #23
H_TeXMeX_H
LQ Guru
 
Registered: Oct 2005
Location: $RANDOM
Distribution: slackware64
Posts: 12,928
Blog Entries: 2

Rep: Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301
You don't have libdvdread installed, I recommend this version:
http://www.dtek.chalmers.se/groups/dvd/downloads.shtml

There is a newer version made by the people at mplayer.hu, but vobcopy doesn't work with that one for some reason.

If you managed to copy off the VOBs yourself, you can concatenate them using 'cat', just make sure they are in the right order.

Code:
cat 1.VOB 2.VOB 3.VOB > output.vob
P.S. I can't believe Ubuntu doesn't have these somewhere in some repo.
 
Old 07-13-2010, 01:49 PM   #24
Paul_Lee
Member
 
Registered: Jul 2001
Location: Cambridgeshire, England
Distribution: Ubuntu 13.10
Posts: 93

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by Guttorm View Post
Hi

Permission problem still. You can take ownership:

Code:
sudo chown -R paul /home/paul/VOB/
Thanks, I did a bit of checking, and there is a directory within VOB called "VIDEO_TS" and this is also displaying the same problems with
permissions. I can't even change ownership of it.
 
  


Reply



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 Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Create ISO from DVD Vob Files jameshoo LinuxQuestions.org Member Intro 1 10-28-2008 05:42 AM
I need to make a DVD out of VOB Files. How? Balarabay1 Linux - Software 1 12-24-2006 10:11 PM
Kaffeine, won't play a DVD but will play individual VOB files? GameGuru Linux - Newbie 12 07-08-2005 12:33 AM
Burning video dvd - vob files? ksgill Linux - Newbie 3 03-23-2005 03:07 PM
Need Kde dvd - vob ripper and Kde Vob - xvid converter + tutorials phat_fergo Linux - General 0 10-20-2004 08:01 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware

All times are GMT -5. The time now is 03:47 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration