Showing posts with label fedora. Show all posts
Showing posts with label fedora. Show all posts

Thursday, September 28, 2017

UBUNTU CENTOS SUSE FEDORA Automount HDD NTFS type in linux system

UBUNTU CENTOS SUSE FEDORA Automount HDD NTFS type in linux system


Note :

If your system can mount your hdd driver (not automount)  skip this step and go to Main Action

Prepare Action

While older ntfs drivers were prone to eat your data in r/w-mode, ntfs-3g seems to be r/w safe. See the ntfs-3g page for more information.
 

<!> As of CentOS 5.4 (kernel 2.6.18-164 or newer), the fuse kernel module is included in the kernel itself. Therefore, dkms and dkms-fuse are no longer required. If you have previously installed dkms-fuse, please uninstall it by a yum remove dkms-fuse command. Please note that CentOS-4 users need those 2 packages.
Make sure you have the rpmforge repo installed. If not, refer to Repositories.
Install the following packages.

yum install fuse fuse-ntfs-3g  (*)


If the rpmforge repo is disabled by default,

yum --enablerepo=rpmforge install fuse fuse-ntfs-3g (option)


<!> Note for CentOS-5 users: If you are still running CentOS 5.3 or older, then you would need to install kmod-fuse from ELRepo.
For CentOS-7 and CentOS-6 the EPEL repository is carrying later NTFS packages. EPEL is also usable for CentOS-5. To install, after enabling the repo per the Repositories page:

yum install ntfs-3g  (*)


or if you prefer to leave EPEL disabled by default

yum --enablerepo epel install ntfs-3g (option)


You may also want to

yum install ntfsprogs ntfsprogs-gnomevfs  (*)


for additional functionality. (Take, for example, ntfsclone to copy ntfs-partitions with or without empty space.)

 

Main Action 

Mounting an NTFS filesystem

Suppose your ntfs filesystem is /dev/sda1 and you are going to mount it on /mymnt/win, do the following.

First, create a mount point.

mkdir /mymnt/win


Next, edit /etc/fstab as follows. To mount read-only:

/dev/sda1 /mymnt/win ntfs-3g ro,umask=0222,defaults 0 0


Or to mount read-write:

/dev/sda1 /mymnt/win ntfs-3g rw,umask=0000,defaults 0 0


You can now mount it by running:

mount /mymnt/win


download file now

Read more »

Sunday, September 3, 2017

Fedora Watch video and listen to music in fedora 21

Fedora Watch video and listen to music in fedora 21


Please note that most of this software is potentially patent encumbered and therefore will not be included in the default official Fedora repositories. Please read this wiki page for more information: https://fedoraproject.org/wiki/Forbidden_items

Step 1:

Install RPM Fusion (Free & Non-Free) repositories:

su

dnf install http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm

 


Step 2:
Install the multimedia codecs:


If you are using GNOME:

su -c yum install gstreamer{1,}-{ffmpeg,libav,plugins-{good,ugly,bad{,-free,-nonfree}}} ffmpeg


If you are using KDE, you might prefer xine instead of Gstreamer:

su -c yum install xine-lib* k3b-extras-freeworld


Step 3:
If you also plan to listen to internet radio streams via rhythmbox for example, you need a few more packages:

su -c yum install gstreamer{1,}-{plugin-crystalhd,ffmpeg,plugins-{good,ugly,bad{,-free,-nonfree,-freeworld,-extras}{-extras}}} ffmpeg libmpg123 lame-libs


Step 4:
Install VLC media player:

su -c yum install vlc

Good luck :)

 

Source: https://ask.fedoraproject.org/en/question/9111/sticky-what-plugins-do-i-need-to-install-to-watch-movies-and-listen-to-music/

 


download file now

Read more »

Fedora Ubuntu Opensuse Install Adobe Flash player on all Linux system

Fedora Ubuntu Opensuse Install Adobe Flash player on all Linux system


Prepare:

 Information: Base on your linux system, mozilla plugin directory will place in one of the below:

if your linux architecture is x64:
$HOME/.mozilla/plugins
program_directory/plugins
/usr/lib64/mozilla/plugins
/usr/lib64/xulrunner/plugins


if your linux architecture is x86:
$HOME/.mozilla/plugins
program_directory/plugins
/usr/lib/mozilla/plugins
/usr/lib/xulrunner/plugins


In my fedora system x64 architecture it is:
/usr/lib64/mozilla/plugins



Do it:

Step 1: Go to Adobe Flash player download page http://get.adobe.com/flashplayer/
Step 2: Select .tar.gz for linux in "Your system" selection.
Step 3: Click "Download now" and save this file (example : Downloads folder) in Downloads directory
Step 4: Open terminal, navigation to downloaded file and extract it.

mkdir adobeflash
tar -xzvf flashPlayer.tar.gz -C adobeflash
 

Step 5: Login with root user (su root, enter and type password for root user) and move to adobeflash directory
Step 6: cp -r usr/   /usr

Step 7: cp libflashplayer.so  /usr/lib64/mozilla/plugins

Step 8: Restart firefox and enjoy :)

Note: If it still not effect, it is because your selinux is turn on, you can turn it off by open terminal -> login with root -> execute command setenforce 0 -> restart firefox


download file now

Read more »

Saturday, September 2, 2017

Fedora Install 7zip on fedora

Fedora Install 7zip on fedora


Open terminal, type command

su
[password of root]
yum install p7zip p7zip-plugins 

There are some useful commands with 7zip:

7z a <archive-filename> <list-of-files>  

7z e <archive-filename> 

7z x <archive-filename> 

7z l <archive-filename> 

7z u <archive-filename> <list-of-files-to-update>

7z d <archive-filename> <list-of-files-to-delete> 

7z t <archive-filename> 

Create archive file:  a

Extract archive file in current directory: e or x

List all files in archive file: l

Update file in archive file: u

Delete file in archive file: d

Test the integrity: t 


download file now

Read more »