Ffmpeg error in linux [closed] - linux

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
Any help on how I can solve this error:
ffmpeg: error while loading shared libraries: libavdevice.so.52: cannot open shared object file: No such file or directory

Basically, to find the file:
sudo find / -name libavdevice.so.52
For example, you've found this file in the /usr/local/lib. Next include that library into your library path. Add this to your /etc/ld.so.conf:
/usr/local/lib
And finally after modifying this file run this:
sudo ldconfig
Reference: Ffmpeg: error while loading shared libraries: libavdevice.so.52: cannot open shared object file

Related

Terraform not reading Symlink file [closed]

Closed. This question is not reproducible or was caused by typos. It is not currently accepting answers.
This question was caused by a typo or a problem that can no longer be reproduced. While similar questions may be on-topic here, this one was resolved in a way less likely to help future readers.
Closed 1 year ago.
Improve this question
I have a global variables file that i want to use in different subfolders. For that i put it in a folder called shared then i did a symlink in the other subfolders.
shared
.global_variables.tf
s3
.gloabl_variables -> shared/global_variables.tf
.main.tf
.output.tf
.variables.tf
I created the symlink using this command : ln -s shared/global_variables.tf s3/global_variables.tf
Now in the S3 folder if i run terraform init i'm getting this error :
Error: Failed to read file
The file "global_variables.tf" could not be read
It seems like terraform is not recognizing the symlink of the file.
How to solve that ?
Thanks

Can't get yuidoc running on Mac OS X Mountain Lion [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
On installing yuidoc I'm getting the following warning.
npm WARN package.json connect#1.9.2 No README.md file found!
When trying to start yuidoc --server later it shows me:
info: (yuidoc): Scanning for yuidoc.json file.
error: (yuidoc): Scanned 5001 directories looking for a yuidoc.json file, something is probably wrong here..
Thanks for help!
The warning is nothing to worry about.
The error is that you haven't provided a yuidoc.json file:
http://yui.github.com/yuidoc/args/index.html#json

How to install TBB on Ubuntu? [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I downloaded tbb40_233oss_lin.tgz file from http://threadingbuildingblocks.org/ver.php?fid=174
I set "TBBROOT" variable to the directory in my bash_proflie and I unzipped the tar file and navigated to the bin folder and run tbbvars.sh file
I typed
sh tbbvars.sh intel64
I was trying to run examples but it complains as shown bleow
count_strings.cpp:38:37: fatal error: tbb/concurrent_hash_map.h: No such file or directory
I tried to set up the library path manually and I typed
g++ file.cpp -o output -L/path/to/the/lib/-ltbb
but it still complains.
How do I compile the sample code on Ubuntu?
Thanks in advance.
I installed it from the Ubuntu repository, and it works without any problems.

Installing JDK in Linux - the download file appears to be corrupted [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 11 years ago.
Improve this question
I have downloaded JDK, but when I am trying to extract it, I am facing these errors:
[root#ras java]# . jdk-6u26-linux-i586.bin
Unpacking...
tail: cannot open `bash' for reading: No such file or directory
Checksumming...
The download file appears to be corrupted. Please refer
to the Troubleshooting section of the Installation
Instructions on the download page for more information.
Please do not attempt to install this archive file.
You have new mail in /var/spool/mail/root
[root#ras ~]#
What do I do to fix it?
You want
chmod +x jdk-6u26-linux-i586.bin
./jdk-6u26-linux-i586.bin

how to navigate to a directory in linux? [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I downloaded ndk and then uncompressed it. How to change to that directory in linux?
This is my directory: /home/embdes/projects/android1/android-ndk-r5/
When I enter that into the terminal I get: android-ndk-r5: is a directory
Uhm I am not sure if you mean..
To RENAME a directory:
mv old_directory_name new_directory_name
To MOVE to a new directory:
cd path_to_new_directory

Resources