Monday, October 12, 2009

11 ways to Completely Remove unwanted files from Ubuntu/Linux

Today i am going to write a new post about "Safely Removing unwanted files from your Linux/Ubuntu partition to free-up more space for new application's and speedup performance of OS" . I have collected some best and safe way to erase unwanted files from linux, and i listed those way for you.

Important's of removing unwanted files:
  • our first gain on removing unwanted files is freeup hardDisk space.
  • large amount of unwanted files will make linux slower under some condition's.
  • getting more space to installing new application's.
  • erasing some evidence of your activity
  • and make your system control in you hand.

Here is the 11 ways:


first of all we should know which folders are used as TMP and cache in linux to delete them.

Thumbnail's:
your photo gallery thumbnails are created in the following folders
home/user/.thumbnails/normal
home/user/.thumbnails/large
home/user/.thumbanils/failedtoload
you can delete these folders. this thumbnails folders takes 28Mib on my PC.

Installed app's Package's:
when ever you use apt or synaptic to install packages. it will download packages and save those packages to this directory.
var/cache/apt/archives
you can delete these packages,but before deleting this files you should remember "these files are your need application's .deb so if you want to install this packages in future without download new files, please move these files to other places.


$ apt:
apt-get have feature to remove no longer needed packages from ubuntu. todo run this commend on terminal:
$ sudo apt-get autoclean

Synaptic Package manager:

in synaptic package manager click on status button on left bottom, and then click on "Not installed (Residual config)".now synaptic will give list of packages that you removed, if anything there mark all for complete removal, and then click apply.


Remove Package configuration files:

When removing a application apt also give you a list of no longer needed dependencies to remove. When you select purge(ie: completely remove) will erase only packages, the configuration files will remain to remove these configuration files you need to run a simple bash code.

Run in Terminal:
#!/bin/bash
echo "Searching for unwanted configuration files..."
purgelist=`sudo dpkg -l | grep ^rc | awk 'print $2 '`
sudo aptitude purge $purgelist
exit 0;



Delete files older than X days:

here we using find utility for this. this code will search for a file that older than X(user decided) days on the directory and delete.
find /path/to/files* -mtime +5 -exec rm {} \;

Auto remove on shutdown:

ubuntu stores many TMp files on /tmp folder. we have an idea to automatically remove these when each time you shutdown.

Sysklogd provides two logging services, one for your system and the other for your kernel. It sits in /etc/init.d/ and is a service that starts and stops with your computer. we need to modify this file to remove tmp folder.

first create backup of this file:
sudo cp /etc/init.d/sysklogd /etc/init.d/sksklogd.bak

Now we can modify our file with a happy conscious knowing we’ve made a backup.Now we can modify our file with a happy conscious knowing we’ve made a backup.
gksu gedit /etc/init.d/sysklogd
here i am used gedit to edit this file.
Once you’ve got it open, look for the part that says:
stop)
log_begin_msg “Stopping system log daemon…”
start-stop-daemon –stop –quiet –pidfile $pidfile –name syslogd
log_end_msg $?
;;

You’ll want to add the below line just before the double semi-colons “;;” above. Note also that “;;” looks something like a spider face, which may be of use to you at some point down the road.

rm -fr /tmp/* /tmp/.??*

That’s the command that will remove just about anything from your /tmp directory.
Once you’ve added it, save the file and exit Gedit. When you shutdown, your /tmp directory will have emptied!


Removing dupe file's:

there is a nice program to find duplicate files from linux named as fdupes.
to install fdupes(15KiB or near):
sudo apt-get install fdupes

fdupes calculates the md5 hash of the files to compare them, and since each file will have a unique hash, the program identifies duplicates correctly. I let it run in the directory which contains my files recursively (which makes it check for duplicates across different directories within the specified directory, and saved the output to a file by doing:
$fdupes -r ./stuff > dupes.txt

Then, deleting the duplicates was as easy as checking dupes.txt and deleting the offending directories. fdupes also can prompt you to delete the duplicates as you go along, but I had way too many files, and wanted to do the deleting at my own pace. The deletion function is useful if you are only checking for duplicates in a given directory with a few files in it.

and also don't forget to clean your trash!


Softwares with GUI:

you can use the following applications to remove unwanted files on linux. these app's can delete some files listed above,the sad newes is still there are no app to remove all unwanted files on linux, we have to do all in manual.
ok here is the list of 3best apps:

KleanSweep
BleachBit
CleanUpCruft
~x------x-------x~

Windows Media Player 11 [NO VALIDATION REQUIRED]

Windows Media Player 11 [NO VALIDATION REQUIRED]


Windows Media Player 11 [NO VALIDATION REQUIRED]
Windows Media Player 11 for Windows XP offers great new ways to store and enjoy all your music, video, pictures, and recorded TV. Play it, view it, and sync it to a portable device for enjoying on the go or even share with devices around your home all from one place.

Simplicity In Design
Bring a whole new look to your digital entertainment.

More of the Music You Love
Breathe new life into your digital music experience.

All Your Entertainment in One Place
Store and enjoy all of your music, video, pictures, and recorded TV.

Enjoy Everywhere
Stay connected with your music, video, and pictures no matter where you are. Check out the new Media Sharing feature.

Downlaod:
http://hotfile.com/dl/12424609/edbb29a/Windows_Media_Player_11_Final___WINDOWS_VALIDATION_CRACK.rar.html

Friday, October 9, 2009

Norton Antibot 1.1.851 cv241-[Full version]

Norton Antibot 1.1.851 cv241

Antibot
Active Behavioral-Based Analysis

Features

Actively monitors your PC 24x7
Real-time protection against Web robot (bot) attacks
Blocks bots from hijacking of your PC
Stops identity theft by bots
Blocks botnets
Detects unusual behavior on your PC and eliminates threat
Detects malicious software at the deepest levels of your system
Adds extra layer of threat protection
Works with other security software
Has minimal impact on PC performance

Download:
pass: Emperor@Inwarez.Org

Tuesday, October 6, 2009

HowTo: BackUp and Restoring Deb/Packages on Ubuntu [Offline restoring]

This is howto guide for *buntu box users to BackUp all installed deb packages and Restoring/installing them quickly and efficiently no need to download again again when reinstalling the OS.

HowTo: BackUp and Restoring Deb/Packages on Ubuntu [Offline restoring]

Features and Uses:
  • No need to download your favourite applications and other required basic things when reinstalling *buntu box
  • This become very useful when you want to install and set same setting for multiple computer's on you school,Company or other places.
  • No need to get very large amount size of update's every time you reinstalling ubuntu. (If you already updated).
There is no real reason to do this if you are already doing a full system backup (e.g. an image of your Ubuntu partition using partimage). This is just something I discovered and feel could be beneficial to other users.

This comments will do that for you:

todo this backup you need to install a small utility named dpkg-repack fakeroot on your *buntu box.
to install fakeroot run this command on terminal
sudo apt-get install dpkg-repack fakeroot
 after that select place for backup, This may be a extranal drive,ThumpDrive or CD/DVD any thing you want. navigate to selected place using cd commend on terminal. Like this
let assume you are saving all backup deb files to "Backup"(this is foldename you haveto save your debfiles) folder on another partition of the same harddisk named "MyDisk"

cd /media/MyDisk; mkdir Backup

Filnally we are ready to backup
$ fakeroot -u dpkg-repack `dpkg --get-selections | grep install | cut -f1`
This code will take some time to finish. (copy the code except $)

Now if you scroll to "MyDisk", you should find a folder called "Backup" which should have all the deb files of all your installed packages.

Re-Installing of Backup:

Reinstalling is so easy, first navigate to your backup folder using cd command on terminal, and then type sudo dpkg -i *.deb in terminal


Examble:

cd /media/MyDisk/Backup
sudo dpkg -i *.deb
the first code will navigate to backup folder, second code will install all deb packages automatically.

Thats it. Now you have a all packages on you hand.

If you have to say somthing, tell me via comment.

Chrome OS by google --unofficial (Download)

Chrome OS by google --unofficial (Download)
Chrome OS by google --unofficial (Download)

Google Chrome OS will not normally available in late 2010. But you can try a custom-built distribution unofficial Linux-based apps and visual styles and focused on Google's browser Chrome. This operating system has been carefully created with SUSE Studio, a manufacturer of custom online distributions that allows anyone to mount a Linux distribution based on openSUSE. Chrome OS is not a Fake, but is also not true chrome OS made by Google and widely expected by the free community. It integrates Google webapps, Calendar, Gmail and other services. You can download an ISO image for free to install Chrome on your OS disc, or try one of the virtual images, pre-built for VirtualBox or VMware.

Download Links:
http://www.megaupload.com/?d=72GG13WS
http://www.megaupload.com/?d=YUQPFNZB
http://www.megaupload.com/?d=G8PVAD1Q
http://www.megaupload.com/?d=8979N8A9
http://www.megaupload.com/?d=B3G14LOG
http://www.megaupload.com/?d=W4BR4DKV
http://www.megaupload.com/?d=82AGTG74
http://www.megaupload.com/?d=KDG4WUJW
http://www.megaupload.com/?d=O9WTZV66
http://www.megaupload.com/?d=P45O4RAW

Mirror:
http://www.crazyupload.com/84u2yivoexzk/Chrome_OS.i686-0.4.207.iso.part10.rar.html
http://www.crazyupload.com/91a03adhlms0/Chrome_OS.i686-0.4.207.iso.part09.rar.html
http://www.crazyupload.com/jsnatgcekgsj/Chrome_OS.i686-0.4.207.iso.part07.rar.html
http://www.crazyupload.com/15vuhizgfabg/Chrome_OS.i686-0.4.207.iso.part08.rar.html
http://www.crazyupload.com/8tizdbjn7cb2/Chrome_OS.i686-0.4.207.iso.part04.rar.html
http://www.crazyupload.com/83i6rw3ui39u/Chrome_OS.i686-0.4.207.iso.part05.rar.html
http://www.crazyupload.com/gc8e3ewmiwpi/Chrome_OS.i686-0.4.207.iso.part06.rar.html
http://www.crazyupload.com/ndzpt1owh8uy/Chrome_OS.i686-0.4.207.iso.part01.rar.html
http://www.crazyupload.com/zk7txds1ur62/Chrome_OS.i686-0.4.207.iso.part02.rar.html
http://www.crazyupload.com/jv07akpdnn8j/Chrome_OS.i686-0.4.207.iso.part03.rar.html

I am on installing chrome OS~unofficial on my pc.(for pre-experience with chrome).

What about you?

Saturday, October 3, 2009

Unlock your SonyEricsson Cell phone using OrignalCable !

A program to unlock sonyericsson without imeis or unlocking boxes only with the original cable.

Unlock your SonyEricsson Cell phone using OrignalCable !

Compatible models:
C510, C702, C901, C902, C903, C905, G905, G705, K630, K660, K850, K858, T700, TM506, V640, W595, W705, W715, W760, W890, W902, W908, W910, W980, Z750, Z770, Z780.

Requirement:
UPS powered PC
Goodworking USB Ports
Cable Required: USB DCU-65 or DCU-60 (comes with the phone)
Drivers: You need to have the usb drivers installed. Included in the archive.
Others: The battery, for greater security, must be loaded entirely when the process will begin.

Todo:
We got the program and installed it. The link is a little below, at the end of this post.  Once installed the program, we open it, and "Tools" -> "Preferences" introduce the user name and password.   Turn the phone off, remove battery, extract the SIM, put the battery back and leave the phone off.   Again in the program, where "Phone Type" select our model of phone, and then click on the padlock that is just right.   In the new tab open, when we see that it says "Instructions" in bold, we take the phone, pressing "2" and "5" simultaneously, and without releasing any time during the entire process, plug the phone to the computer. The old method of pressing the "C" is useless and will fail.

With the phone already plugged into the computer and hold the keys "2" and "5", the program should start working. You hope a little, and when you see a "Successful" in green with a check (or tick) green on your left is that the process finished. When you get to this point you can desonectar the phone on your computer, put the SIM card from the company that want, and start using it.

These all takes only 1minute, Yes your phone will unlock in 1 minute without $$

Download:
 
Sonyeric--Unlocker.zip

careful - be:
  • make sure you have a UPS powered PC or non-interpret power supply.  
  • Connect your mobile with original cable.
  • Dont disconnect cable when  unlocking in process.(if disconnected moble will dead)
  • Be sure you have a good charged battery
GoodLuck !

                                                                                                 source: the net xD