compile ffmpeg on stand redhat -
i'm working on redhat server isn't connected internet, can't download things directly onto server. can transfer them via scp server.
is there step step guide compiling ffmpeg redhat?
if can scp server connected internet , wish install using rpm's rather compiling, suggest following:
install yum-downloadonly on server in question:
yum -y install yum-downloadonly
simulate install of ffmpeg using downloadonly save required packages locally:
yum -y install ffmpeg --downloadonly --downloaddir=your_download_directory
transfer downloaded rpm's server without internet access
cd directory rpm's on server , run install of them:
rpm -ivh --nodeps *.rpm
that should it!
Comments
Post a Comment