Menu

Tree [d353c0] master /
 History

HTTPS access


File Date Author Commit
 conf 2018-08-30 DjAmolGroup DjAmolGroup [475d4b] Update php.ini
 inc 2018-10-08 DjAmolGroup DjAmolGroup [d353c0] Update php.sh
 src 2016-08-26 DjAmolGroup DjAmolGroup [d2b339] Add files via upload
 README.md 2018-10-08 DjAmolGroup DjAmolGroup [dbfc59] Update README.md
 apache2 2016-08-27 DjAmolGroup DjAmolGroup [401d81] Create apache2
 database_backup.sh 2017-02-13 DjAmolGroup DjAmolGroup [dcfdc2] Update database_backup.sh
 ffmpeg 2018-10-08 DjAmolGroup DjAmolGroup [214fc8] Update ffmpeg
 ffmpeg-php-0.6.2.tbz2 2016-08-26 DjAmolGroup DjAmolGroup [1c51c4] Add files via upload
 ffmpeg-php.tar.gz 2016-08-26 DjAmolGroup DjAmolGroup [1c51c4] Add files via upload
 ffmpeg-shared 2016-05-15 DjAmolGroup DjAmolGroup [202097] Update ffmpeg-shared
 ffmpeg.old 2018-10-08 DjAmolGroup DjAmolGroup [6a6c64] Create ffmpeg.old
 ffmpeg.rpm 2016-08-26 DjAmolGroup DjAmolGroup [1c51c4] Add files via upload
 install 2016-08-31 DjAmolGroup DjAmolGroup [a17d96] Update install
 mail-up.sh 2017-01-24 DjAmolGroup DjAmolGroup [51200b] Update mail-up.sh
 mirrors-rpmforge 2016-08-26 DjAmolGroup DjAmolGroup [1c51c4] Add files via upload
 php.ini 2018-08-30 DjAmolGroup DjAmolGroup [5ed6ab] Update php.ini
 server.info.sh 2016-09-21 DjAmolGroup DjAmolGroup [5a0f41] Server/VPS Information
 setup 2018-10-08 DjAmolGroup DjAmolGroup [9c2cb0] Update setup
 transmission.sh 2016-08-13 DjAmolGroup DjAmolGroup [932c48] Transmission BitTorrent Client

Read Me

DjAmol-PHP+Apache+OpenSSL+Curl+FFMPEG+More-INSTALLER

Firstly remove old version using command :
yum remove libvpx libogg libvorbis libtheora libx264 x264 ffmpeg ffmpeg-devel

Login Root With Using Puty/Ssh Client ( Copy And paste command in Putty application Using Shift+Insert )
Commands To Start ( SSH Command ):

yum -y install wget unzip;wget --no-check-certificate -O installer.zip https://github.com/djamol/centos-INSTALLER/archive/master.zip; unzip installer.zip;
cd centos-INSTALLER-master;chmod +x setup;chmod +x inc/*.sh; ./setup > /root/output.txt &

Server/VPS Information

wget https://raw.githubusercontent.com/djamol/centos-INSTALLER/master/server.info.sh;sh server.info.sh

Run This Script (With SSH command)

🔶Install Centos Minimal Version Os in Virtual/Dedicated Server

🔶Login SSH With root username and password

🔽Then Type This Command at ssh

yum -y install wget unzip;wget --no-check-certificate -O installer.zip https://github.com/djamol/centos-INSTALLER/archive/master.zip; unzip installer.zip; cd centos-INSTALLER-master;chmod +x setup;chmod +x inc/*.sh;
./setup

Install ffmpeg

./ffmpeg
OR
nohup ./ffmpeg > /root/output.txt &
More info at https://github.com/djamol/FFMPEG-CENTOS/blob/master/README.md

Install Webmin

yum -y install wget unzip;wget --no-check-certificate -O installer.zip https://github.com/djamol/centos-INSTALLER/archive/master.zip; unzip installer.zip;
cd centos-INSTALLER-master;chmod +x setup;chmod +x inc/*.sh; ./setup > /root/output.txt &
Backgroud: nohup ./install > /root/output.txt &
Create Cetificate

mkdir /usr;mkdir /usr/share;mkdir /usr/share/ssl; mkdir /usr/share/ssl//certs;
openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout /usr/share/ssl/certs/ssl.crt -out /usr/share/ssl/certs/ssl.crt

more example watermark ffmpeg :http://ksloan.net/watermarking-videos-from-the-command-line-using-ffmpeg-filters/

Backup DATABASE

Commands : https://github.com/djamol/centos-INSTALLER/blob/master/database_backup.sh

Restore DATABASE (All)

Shell> mysql -u root -p < schema.sql

Find in Files String in( Directory,subdirectory all files )

cd /home/directoy; grep -nr 'yourString'
grep -r --include=
.txt 'searchterm' ./ ...or case-insensitive version... grep -r -i --include=.txt 'searchterm' ./
// /home/directory location directory, find string,word yourString
(* means after yourString any thing word character)

repo files and update package/install clean cache with yum

yum clean all; yum update; yum clean all; yum update;yum clean all; yum update;

One approach could be using find change in subdirectory and all directory in current:

for directories

find . -type d -print0 | xargs -0 chmod 0755

for files( all files in current)

find . -type f -print0 | xargs -0 chmod 0644

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.