sabato 24 novembre 2012

From .mkv to .avi in CentOS6

To convert from .mkv to .avi in CentOS6 use this command:


ffmpeg -i input.mkv -sameq -acodec copy output.avi

More informations here


Mount NTFS partitions on CentOS6

With a few steeps the problem is gone:

1. open the terminal window with the root account.

2. download rpmforge for centos 6 to your system:

wget http://packages.sw.be/rpmforge-release/rpmforge-release-0.5.2-2.el6.rf.x86_64.rpm

3. now install the rpmforge for centos 6:

rpm -Uvh http://packages.sw.be/rpmforge-release/rpmforge-release-0.5.2-2.el6.rf.x86_64.rpm

4. just install/update the package fuse-ntfs-3g:

# yum install fuse-ntfs-3g

5. mount your units:

# mount -a


More informations here