<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.g?targetBlogID\x3d879254769318713469\x26blogName\x3dTechnology+at+your+finger+tips\x26publishMode\x3dPUBLISH_MODE_BLOGSPOT\x26navbarType\x3dBLACK\x26layoutType\x3dCLASSIC\x26searchRoot\x3dhttps://techytux.blogspot.com/search\x26blogLocale\x3den\x26v\x3d2\x26homepageUrl\x3dhttp://techytux.blogspot.com/\x26vt\x3d-7444655384734913477', where: document.getElementById("navbar-iframe-container"), id: "navbar-iframe" }); } }); </script>

Technology at your finger tips

Get your fingers dirty

 

How to format pendrive in linux

If you are using linux but dont have enough knowledge to format a pen drive, give a look at following commands. You can format USB pen drive with the help of following commands:

[a] fdisk : Partition table manipulator for Linux

[b] mkfs.ext3 : Create an ext2/ext3 filesystem by formatting given
partition name (/dev/partition)

[c] e2label : Change the label on an ext2/ext3 filesystem

First make sure USB pen is not mounted. Click on Places > Computer >
Select USB pen >

Right click > Select Unmount Volume.

Let us assume that /dev/sda1 is your partition name for USB pen. To
format type the following
command (Open X terminal and type the command)

$ sudo mkfs.ext3 /dev/sda1

Caution: Careful while entering device/partition name; wrong name can
wipe out entire hard disk!!!

Now use e2label command to change the filesystem label on the ext3
filesystem located on device /dev/sda1:

$ sudo e2label /dev/sda1 usb-pen

You can also create an MS-DOS/Windows XP file system under Linux,
enter:

$ sudo mkfs.vfat /dev/sda1
Now you are ready to use USB pen.
there is a link of the web page from where i got this
** Ubuntu Linux format USB pen drive **
How do I format a USB pen drive under Ubuntu Linux for ext3 file
system?