Showing posts with label Hard Drive. Show all posts
Showing posts with label Hard Drive. Show all posts

5 Deadly Terminal Commands in Linux

Terminal is powerful than Command Prompt. It won't ask your confirmation if you type a deadly command. Newbie linux users can be easily fooled by these code spreading as trolls via internet. So you must be aware of these code that will destory you computer.

1.  rm-rf / 
this code deletes everything on your computer. This formats everything possible including Hard drives and connected storage devices.
rm - deletes the following files.
-rf - deletes all the files and folders inside a particular folder.
/ - this instructs rm to start from the root where all your files are located.

2. :(){ :|: & };:
this one is a kind of virus that defines a shell function. It has the ability to replicate itself to many copies which may then eats up your cpu time and memory.

3. mkfs.ext4 /dev/sda1
this one is same as formatting C drive in windows. this will format your first partition and replace them with a new file system.

4. mv ~ /dev/null
This code makes your home folder disappear. in other words will move your home folder into a black hole. 
mv - means to move folder or file.
~ - this indicates your home folder as a whole.
/dev/null - Destroys everything.

5. dd if=/dev/random of=/dev/sda 
This code copies junk files in to hard drive.
Continue Reading

How to change the Icon of Hard Drive in windows 7

Its really boring to see an hard drive always in its old look, why don't we just try to change it.... ?















Step 1: Open Notepad, Paste this code in it.

[autorun]
icon=\CustomIcon.ico

Step 2: Save this as autorun.inf , to any hard drive you want to change the drive icon without creating any folders

Step 3: We have mentioned icon=\CustomIcon.ico in this code, paste a desired image with in the same place. any image you choose, but it must have .ico extension. 
if you want hard drive icons, click here.

if you're downloading it from any other sites, then Just rename it to CustomIcon, don't forget to select ICO.

or you could change  icon=\CustomIcon.ico to any name you want.



Continue Reading