How do i do it?
what if i have to compile it? what do i do?
ex: i want to try xvidcap can you walk me through the steps?
__________________
TP t20 700mhz/384mb/12hd ubuntu 6.10
![]() |
|
| Forums Blogs Tips Articles Screens Polls | |
User loginNew on forums
Recent blog posts |
I don't have time to check out xvidcap and write a walktrough specific to that package, but I guess this generic explanation I wrote a while ago could be helpful.
CAN I HAS FIXD CAPSLOK KEE PLZ?
Login or register to post comments 1 point
You need to download "Source .gz" package (xvidcap-1.1.4p1.tar.gz), open terminal and cd to folder where it is downloaded (on my system it's MyDownloads:
Then decompress it and cd to newly created directory:
Now you configure it:
If configure script says that you're missing some libraries, you need to install them (you'll probably need -dev packages, eg libglade2-dev if it says you don't have libglade-2.0) and re-run configure. Use your package manager to find and install these.
Now you would normally type make to build it, but in this case configure also builds the package, so you only need to install it after it builds. Become superuser and install it:
Run it and have fun:
If you decide that you wish to uninstall it later, you need to do this (in the same directory you did make install in):
You may also uninstall libraries you installed when configuring it, as you don't need them anymore. Use your package manager to uninstall these.
Login or register to post comments -1 points
If you're using Ubuntu (or an Ubuntu derivative), you should use
instead of
.
Similar for uninstall.
CAN I HAS FIXD CAPSLOK KEE PLZ?
Login or register to post comments -1 points
also,
make uninstallis not always supported well - many programs actually skip that option ÂThomas Jollans
GnuPG key: 1024D/A6B5 9461 B60F 2C80 2399 6B1E 2698 A70E F421 434B
Login or register to post comments 1 point
also,
make uninstallis not always supported well - many programs actually skip that option Â... as you could have read in the initial reply
CAN I HAS FIXD CAPSLOK KEE PLZ?
Login or register to post comments -1 points
One way to replace make uninstall might be usage of checkinstall instead of make install to create a RPM- or DEB-package and then installing this through package-management. In case the package has to be removed later this can also be easily done through package-management.
I usually use this when I just want to test a program and I'm not sure if I'll keep it.
Login or register to post comments 1 point
A semi-off-topic note:
When using 'su', you should almost always use 'su -', which will import the root user's environment variables, etc.
"I do not fear computers. I fear the lack of them." -- Isaac Asimov
Login or register to post comments -1 points
Well, in this particular case it is supported.
Login or register to post comments 1 point