I'm trying to install dvdbackup and I'm having some trouble and I don't understand why.
The install file gives the following for code to install:
Quote:
Compile dvdbackup.c in the src dir like this gcc -o dvdbackup \
-I/my/prefix/to/libdvdread/include -L/my/prefix/to/libdvdread/lib \
-ldvdread dvdbackup.c
NOTE: The "\" indicates that it's one line - i.e. remove the "\" from the command
line
|
I'm using libdvdread 0.9.4 and this is the code I'm entering in at the terminal:
Code:
gcc -o dvdbackup -I/usr/include/dvdread -L/usr/lib -ldvdread dvdbackup.c
After I enter this code nothing happens this is just what it looks like:
Code:
[USRNAME@localhost src]$ gcc -o dvdbackup -I/usr/include/dvdread -L/usr/lib -ldvdread dvdbackup.c
[USRNAME@localhost src]$
If i try and run dvdbackup I get the following error:
Code:
bash: dvdbackup: command not found
So it appears to not be installed. I also tried this:
Code:
[USRNAME@localhost src]$ which dvdbackup
/usr/bin/which: no dvdbackup in (/usr/kerberos/bin:/usr/local/bin:/usr/bin:/bin:/usr/X11R6/bin:/home/USRNAME/bin)
[USRNAME@localhost src]$
Here is the output of whereis libdvdread:
Code:
[USRNAME@localhost src]$ whereis libdvdread
libdvdread: /usr/lib/libdvdread.so /usr/lib/libdvdread.a /usr/lib/libdvdread.la
[USRNAME@localhost src]$
I'm assuming I'm doing something wrong with the install script. Please help me out. I run FC4
![Smilie](https://www.linuxquestions.org/questions/images/smilies/smile.gif)