Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 7 years ago.
Improve this question
The version of FFMPEG that came on my server does not have the correct codecs I need for web encoding.
I've followed this guide to completion to recompile FFMPEG on my server https://trac.ffmpeg.org/wiki/CompilationGuide/Centos
Now when I use the FFMPEG, it is still calling the old build as it shows the build date as 2013 and it doesn't have the codecs I chose.
I'm lost as to how I should proceed, I can't find where the new build is located on my server either.
Did I need to uninstall FFMPEG before following the guide? How would I do that?
I'm using CENT OS 6.4
I apologize if this is something obvious, I am new to linux.
Thanks for any help, I'm really stuck on this.
The ffmpeg binary can be found in the bin directory under the directory you passed as the prefix option to configure.
The guide you supplied uses a different installation path which can't be found under default executing environment, you can run the complied ffmpeg with full path which should look like this:$HOME/ffmpeg_build/bin/ffmpeg
Related
Closed. This question is not about programming or software development. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 9 days ago.
Improve this question
Hello guys I'm trying to create an bootable iso from my installed linux distro with systemback but I have too much stuff on / directory, there is any way of pick only the folders like /root /usr /bin
that is necessary for the installation of the system?
There is any software that make a "Clean" version of my current distro, and create an .iso or something like that?
I'm curious about that because you know, it's trash have to install the whole system from the beginning if you have an "cute life distro" already created.
and the limitations of .iso (4.7GB) is annoying.
My current / directory have 91.8GB on it
lol
Help-me please! And thanks ;)
I hope that is possible make this happen...
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 1 year ago.
Improve this question
I know that truecrypt isn't capable of creating a hidden OS but in another post someone describes the steps to do it manually and that he does it to all of his linux computers all of the time. Can anyone elaborate on his steps so that someone (like myself) who is not as experienced could accomplish this?
I would just ask this individual to provide more details but it appears as though their account is "anonymous" or something.
I developed something like you are describing.
Here https://github.com/antonio-petricca/buddy-linux you can find all the information and installation script.
Buddy linux allows you to install linux on (hidden) loop files (like for the link you provided), but providing GRUB loader by an external USB drive. So, removing, it will results in a Windows boot.
The other good stuff is that it is based on LVM, so you can extended file system "simply" by adding loop files as per your needs.
Regards.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 5 years ago.
Improve this question
I am trying to connect to openvpn with google authenticator enabled but it is showing the issue
AUTH_FAILED,Google Authenticator Code must be a number
However I am able to connect it via web.
Please help me and thanks in advance
This looks like an encoding issue. I was facing this after a dist upgrade to Ubuntu Xenial and solved this by simply changing the verbosity level.
Find your configuration file (Usually *.ovpn), find the line which says verb 3 and change it to verb 4. That makes it work.
If you can't find your ovpn file, try running a grep -nar "verb 3" on the root directory. That should help you find the file.
For example: sudo openvpn --config client.ovpn --script-security 2
As in my case configuration file is client.ovpn
I was able to resolve this issue after installing openvpn from source
https://ramzavil.wordpress.com/2016/07/25/how-to-fix-openvpn-not-working-in-ubuntu-16-04/ tutorial over here
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 7 years ago.
Improve this question
We're migrating an application from a very old Solaris box over to a relatively newer Linux machine. I'm having trouble finding an equivalent for a command line option that was used on our old server when running tar on the newer one. I'm assuming that it is obsolete now, as I don't see anything via man or searching online to indicate why it was done away with... but if anyone has any information, it would be very much appreciated.
The version of tar on the old server was 1.12, and the version on the new server is 1.23.
The command we ran was:
tar cEf path-to-tar path-to-tar-up
Does anyone know whether this switch is even necessary anymore? Unfortunately the code using this switch predates my work on the project, so I am unaware of why this particular switch is being used currently.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 8 years ago.
Improve this question
A bit of a silly question , please forgive my lack though, new UNIX user .
I have an setup_test.exe file if there a way that i can make it "run-install" or compile it in UNIX based machine, or I need the source code to start with?
thanks in advance
If this executable came from the Windows environment, it won't run under UNIX/Linux without lots of help.
Two options:
If you have the source code and the application doesn't rely on a lot of Windows specific libraries, you could try compiling it in your current environment.
The WINE emulator can often run Windows executables, depending again on what libraries from Windows are used.
If it isn't a Windows exe and is native to your current environment, then ./exename.exe should work provided you have the permissions to execute it.