LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 02-21-2009, 07:54 AM   #1
khodeir
Member
 
Registered: Feb 2009
Distribution: Debian
Posts: 243

Rep: Reputation: 33
capture Desktop


Hi
I really searched for a program that can capture any changes on the screen
and save them in video format
I searched for them but i only found windows applications
any help??
 
Old 02-21-2009, 08:15 AM   #2
Simon Bridge
LQ Guru
 
Registered: Oct 2003
Location: Waiheke NZ
Distribution: Ubuntu
Posts: 9,211

Rep: Reputation: 198Reputation: 198
Search term:

linux video screen

you must put the "linux" part in to avoid windows programs.
another trick is to locate tho biggest two windows programs to do what you want, then google their names with "linux" added to find equivalents.

Anyway: have you seen:
http://sourceforge.net/projects/xvidcap/
http://fosswire.com/2008/03/17/video...cordmydesktop/
http://www.linux.com/articles/113764

You may even find screencasting software in the repositories for your distro.
 
Old 02-21-2009, 04:09 PM   #3
khodeir
Member
 
Registered: Feb 2009
Distribution: Debian
Posts: 243

Original Poster
Rep: Reputation: 33
i tried the first program and when i made make install
Quote:
[ahmed@khodeir xvidcap-1.1.7]$ make install
Making install in doc
make[1]: Entering directory `/Data/xvidcap-1.1.7/doc'
Making install in xvidcap
make[2]: Entering directory `/Data/xvidcap-1.1.7/doc/xvidcap'
Making install in C
make[3]: Entering directory `/Data/xvidcap-1.1.7/doc/xvidcap/C'
make[4]: Entering directory `/Data/xvidcap-1.1.7/doc/xvidcap/C'
make[4]: Nothing to be done for `install-exec-am'.
/bin/sh ../../../mkinstalldirs /usr/local/share/omf/xvidcap
mkdir -p -- /usr/local/share/omf/xvidcap
mkdir: cannot create directory `/usr/local/share/omf': Permission denied
make[4]: *** [install-data-local-omf] Error 1
make[4]: Leaving directory `/Data/xvidcap-1.1.7/doc/xvidcap/C'
make[3]: *** [install-am] Error 2
make[3]: Leaving directory `/Data/xvidcap-1.1.7/doc/xvidcap/C'
make[2]: *** [install-recursive] Error 1
make[2]: Leaving directory `/Data/xvidcap-1.1.7/doc/xvidcap'
make[1]: *** [install-recursive] Error 1
make[1]: Leaving directory `/Data/xvidcap-1.1.7/doc'
make: *** [install-recursive] Error 1
[ahmed@khodeir xvidcap-1.1.7]$
why did this error happens?
 
Old 02-21-2009, 05:09 PM   #4
colucix
LQ Guru
 
Registered: Sep 2003
Location: Bologna
Distribution: CentOS 6.5 OpenSuSE 12.3
Posts: 10,509

Rep: Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983
Because the step make install tries to write files in system directories that can be modified only by root. So you have to run this step as root. If you're not the system administrator of this machine, you can always install the software in your home directory, specifying the path as argument to the configure script. For example:
Code:
$ ./configure --prefix=/home/ahmed/xvidcap-1.1.7
$ make
$ make install
 
Old 02-21-2009, 05:24 PM   #5
David the H.
Bash Guru
 
Registered: Jun 2004
Location: Osaka, Japan
Distribution: Arch + Xfce
Posts: 6,852

Rep: Reputation: 2037Reputation: 2037Reputation: 2037Reputation: 2037Reputation: 2037Reputation: 2037Reputation: 2037Reputation: 2037Reputation: 2037Reputation: 2037Reputation: 2037
I recommend using the checkinstall program as a substitute for "make install". It will wrap your program up in a package (rpm, deb, or tgz) that can be installed and controlled by your distro's package manager. Makes uninstalling later easier too.

But actually, you probably didn't need to go to the trouble compiling xvidcap anyway. I'll bet you even money your distribution* already has a packaged version of it you can use. The vast majority of FOSS programs out there can be found in any decent distro's repositories


(*It's always a good idea to state what distro you're using when you post. You can set it up in your profile.)
 
Old 02-21-2009, 07:59 PM   #6
Simon Bridge
LQ Guru
 
Registered: Oct 2003
Location: Waiheke NZ
Distribution: Ubuntu
Posts: 9,211

Rep: Reputation: 198Reputation: 198
Quote:
mkdir: cannot create directory `/usr/local/share/omf': Permission denied
This is the line which the others have noticed - it tells them that make does not have a needed permission.

Look at the command - what is it trying to do? Make sure it is trying to do something you want it to do.
In this case it wants to make a directory in /usr/local/share for the program to live in. That's OK, because you want the program.

The next step is to check the write permission on /usr/local/share and make sure you are running make with those permissions.

That turns out to be root.

So you need to run make with root permissions.

However - as the others have pointed out - it is much more desirable to learn to use your distribution's package manager. Is there a reason you must install this from source?

Whichever - please edit your profile to show your location and distribution.
 
Old 02-22-2009, 11:34 AM   #7
khodeir
Member
 
Registered: Feb 2009
Distribution: Debian
Posts: 243

Original Poster
Rep: Reputation: 33
i don't know how to thank you
 
Old 02-22-2009, 07:16 PM   #8
Simon Bridge
LQ Guru
 
Registered: Oct 2003
Location: Waiheke NZ
Distribution: Ubuntu
Posts: 9,211

Rep: Reputation: 198Reputation: 198
The thumbs up is nice - you cannot pay me back, so pay forward instead. Find someone to help - you may have to search for the information needed to help them - but that only helps you too.

Of course - following the advise would be a nice touch. You have yet to edit your profile.

Cheers, have fun.

Last edited by Simon Bridge; 02-22-2009 at 07:17 PM.
 
  


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
desktop screen capture with video help neverwhere Linux - General 5 01-17-2012 01:38 AM
capture munna_dude Programming 2 03-06-2007 08:34 AM
TV Capture ivoencarnacao Slackware 5 12-21-2005 10:53 PM
tv capture with 10.2 android6011 Slackware 4 11-03-2005 09:05 PM
Capture support for dvd and video capture in linux is it even going to be real ever? maximalred Linux - Distributions 3 07-06-2003 07:29 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 07:53 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