<body><script type="text/javascript"> function setAttributeOnload(object, attribute, val) { if(window.addEventListener) { window.addEventListener('load', function(){ object[attribute] = val; }, false); } else { window.attachEvent('onload', function(){ object[attribute] = val; }); } } </script> <div id="navbar-iframe-container"></div> <script type="text/javascript" src="https://apis.google.com/js/platform.js"></script> <script type="text/javascript"> gapi.load("gapi.iframes:gapi.iframes.style.bubble", function() { if (gapi.iframes && gapi.iframes.getContext) { gapi.iframes.getContext().openChild({ url: 'https://www.blogger.com/navbar/33142127?origin\x3dhttp://fishyweb.blogspot.com', where: document.getElementById("navbar-iframe-container"), id: "navbar-iframe", messageHandlersFilter: gapi.iframes.CROSS_ORIGIN_IFRAMES_FILTER, messageHandlers: { 'blogger-ping': function() {} } }); } }); </script>

NTFS Partition in Fedora Core

Fedora Core (FC) distribution of Linux doesn't support NTFS drives by default. Last week i was in a desperate condition to mount NTFS drives in to FC.

To solve this problem i installed ntfs-3g tool with yum. Then mounted the drive by adding the command in to /etc/fstab.

If you don't want to add anything into /etc/fstab then it can be done manually by executing

mount -t ntfs-3g /dev/sda1 path_to_folder_where_to_mount -o force

this command should be executed as root.

ntfs-3g is available in rpm format also.

PS: Installation of ntfs-3g would connect to internet. at console proxy settings won't work. to handle this problem you have to export proxy settings with proper value and port.
ex. export http_proxy 'xxx.xx.xx.xx:xxxx'

You can leave your response or bookmark this post to del.icio.us by using the links below.
Comment | Bookmark | Go to end