Monday, September 28, 2009

Corel Paint Shop Pro Photo X2 Ultimate 12.5 [MultiLanguage]

Corel Paint Shop Pro Photo X2 Ultimate 12.5 [MultiLanguage]

Corel Paint Shop Pro Photo X2 Ultimate 12.5 [MultiLanguage] Plus Portable | 508.9 MB
A complete photo-editing software solution.
Corel® Paint Shop Pro® Photo X2 Ultimate combines ease of use with full professional power. Fix brightness, color and photo imperfections like red eye in a few clicks, or use precision photo-editing controls to create photos you'll be proud to share.

The Ultimate edition features valuable extras like media recovery software, a creative content pack, Corel® Painter™ Photo Essentials 4 and a 2 GB Toshiba flash drive.

Paint Shop Pro Photo X2 has everything you need to create stunning photos. The integrated Learning Center and a selection of one-click photo-fixing tools make it easy to correct common photo flaws such as red eye, color and sharpness.
Unique makeover tools let you whiten teeth, remove blemishes and paint on a tan, so you can make everyone look their best before printing or posting photos online.

As your skills and confidence grow, you can harness the power of professional-quality features such as HDR Photo Merge, Histogram, Curves and Levels Adjustment tools to make precision edits.
You can even get creative with artistic effects and filters to turn your favorite photos into fun projects to share with family and friends.

Includes everything in Paint Shop Pro Photo X2, plus:
  • Enhanced! Support for more than 250 camera raw formats
  • New! Background remover plug-in to change the background of a photo
  • Enhanced! Creative content pack with 150 new photo frames, photo edges and Picture Tubes™
  • New! Certified for Windows Vista® for better performance and enhanced security
  • Bonus! 2 GB USB flash drive to store and transfer your digital photos
  • Bonus! Corel® Painter™ Photo Essentials 4 to turn photos into paintings in 3 easy steps
  • Bonus! Media recovery software to retrieve images, movies and sound files, even from reformatted memory cards
http://hotfile.com/dl/13649637/71e38a6/CPSPPX2U12.5PP.part1.rar.html
http://hotfile.com/dl/13649638/ac4e6c5/CPSPPX2U12.5PP.part2.rar.html
http://hotfile.com/dl/13649639/98de678/CPSPPX2U12.5PP.part3.rar.html
http://hotfile.com/dl/13649640/0fa5f61/CPSPPX2U12.5PP.part4.rar.html
http://hotfile.com/dl/13649641/4e0c43b/CPSPPX2U12.5PP.part5.rar.html
http://hotfile.com/dl/13649642/8d17c59/CPSPPX2U12.5PP.part6.rar.html

Saturday, September 26, 2009

HowTo: NFS Server/Client [Linux]

Why NFS?
I simply wanted to experiment with NFS, and couldn't seem to find the documentation here on the forums. I found using NFS just as easy if not easier than using Samba for sharing between a few of my Unix based systems. In order to share a folder it only required a single line in a configuration file under /etc/exports, and a single line under /etc/fstab on the client to mount the share on each client at boot.

I mostly edited and moved things around from these guides to make a more complete single guide to getting this working using Ubuntu.

http://www.cyberciti.biz/tips/ubuntu...nfs-share.html (for client configuration)
http://www.redhat.com/docs/manuals/l...nfs-mount.html (for mounting using fstab)
http://www.freebsd.org/doc/en_US.ISO...twork-nfs.html (contains more info about NFS)


Install NFS Server Support
at the terminal type
sudo apt-get install nfs-kernel-server nfs-common portmap
When configuring portmap do =not= bind loopback. If you do you can either edit /etc/default/portmap by hand or run:
sudo dpkg-reconfigure portmap
sudo /etc/init.d/portmap restart


Editing /etc/exports
the /etc/exports file is used for creating a share on the NFS server

invoke your favorite text editor or
sudo vi /etc/exports

Here are some quick examples of what you could add to your /etc/exports

For Full Read Write Permissions allowing any computer from 192.168.1.1 through 192.168.1.255
/files 192.168.1.0/24(rw,no_root_squash,async)
Or for Read Only from a single machine
/files 192.168.1.2 (ro,async)
save this file and then in a terminal type
sudo /etc/init.d/nfs-kernel-server restart

Also aftter making changes to /etc/exports in a terminal you must type
sudo exportfs -a

Install NFS client support
sudo apt-get install portmap nfs-common

Mounting manually
Example to mount server.mydomain.com:/files to /files. In this example server.mydomain.com is the name of the server containing the nfs share, and files is the name of the share on the nfs server

The mount point /files must first exist on the client machine.
cd /
sudo mkdir files

 to mount the share from a terminal type
sudo mount server.mydomain.com:/files /files
 Note you may need to restart above services:

sudo /etc/init.d/portmap restart
sudo /etc/init.d/nfs-common restart


Mounting at boot using /etc/fstab
Invoke the text editor using your favorite editor, or

gksudo gedit /etc/fstab
In this example my /etc/fstab was like this: 
server.mydomain.com:/files /files nfs rsize=8192,wsize=8192,timeo=14,intr
 You could copy and paste my line, and change “servername.mydomain.com:/files”, and “/files” to match your server name:share name, and the name of the mount point you created.

Test before Reboot:
type
mount /files
 in a terminal, and the mount point /files will be mounted from the server.     (source: ubuntu forums)

Friday, September 25, 2009

Show Orignal Size of the Image in Summary of Post/Readmore [ Blogger ]

Here is the solution for those bloggers, Who want to Show orignal size of the image with specifed number of characters. This is Rehacked "Readmore.." which adds "Read More..." expandable link automatically to all their posts with orignal size of the image ('No resizing of images').
View Demo here

In old readmore hack, you have to specify the number of characters after which the post will be truncated. If you select it as 500, then all your posts in the home page will show only first 500 characters. and also you have to specify to resize the images  in your post. If you select it as width:200, height:150, then all your posts first image will be resized to your specifed size.

But this image resizing will effect on some photo based blogs, for example if your blog niche is games downloading, you should need to show the full size of the game screen short to your reader for attract and some message about  the game....

Instructions for fresh install:
(if you already have installed "Read More" hack see below for How to re-hack?)

Step 1: 
Download this file: Readmore_Rehacked.js
Step2:
Upload the file to any host site that allows .JS like HotLinkFiles.com,
BOXSTR.com
or your own host.


Step3:

Log in to Blogger, go to Layout -> Edit HTML, and mark the Expand Widget Templates box.

 Now find (CTRL+F) this in the template code:
</head>
And immediately ABOVE/BEFORE that, paste this code:
<script src="http://softwareroxer.110mb.com/summary-posts_edited.js" type="text/javascript"/>
<script type='text/javascript'>
var thumbnail_mode = "float" ;
summary_noimg = 50;
summary_img = 50;
img_thumb_height = max-width;
img_thumb_width = max-height;
</script>
<script type="text/javascript">

Step 4:
Now again in the template, find (CTRL+F) this:
 <data:post.body/>

Then REPLACE that line, with this code:

<b:if cond='data:blog.pageType != "item"'>
<div expr:id='"summary-" + data:post.id'><data:post.body/></div>
<script type='text/javascript'>createSummaryAndThumb("summary-<data:post.id/>");</script>
<a class='readmore' expr:href='data:post.url'><img src='http://saer.sm.googlepages.com/readmorenow.png'/></a>
</b:if>
<b:if cond='data:blog.pageType == "item"'><data:post.body/></b:if>

Finally preview and save the template.



Instructions for who already have a Read more hack on their blog:


Step 1: 
Download this file: Readmore_Rehacked.js

Step2:

Upload the file to any host site that allows .JS like HotLinkFiles.com,

BOXSTR.com

or your own host.

Step3:

Log in to Blogger, go to Layout -> Edit HTML, and unmark the Expand Widget Templates box. to make it easy.

Now find (CTRL+F) this in the template code:
summary_noimg = 500;
summary_img = 450;
img_thumb_height = 100;
img_thumb_width = 120;

The numbers are may veary so look for similar to this on you template.

after this 4 or 6 lines or above these 4 or 6 lines you can find the script source link of the JavaScript file, Just replace the link with your link (that is where you upload the rehacked readmore.js file). this script will work with same codes for old readmore hack, no need to edit .

(Note: if you have any problem change img_thumb_height to "max-height", img_thumb_width to "max-width")

Thats it! 

Pidgin – cannot connect to Yahoo messenger [Solution]

I just noticed the abnormality with Pidgin 2.5.5 (running on Ubuntu) these few days, I couldn’t connect my Yahoo messenger account at all. According to the discussion of Bug #389278 it appears that Yahoo was trying to change its protocol.
A quick way to have Pidgin connecting to Yahoo messenger server again is to change the Pager server setting for the Yahoo account in Pidgin.

To do this, from Pidgin:
Manage Accounts (Ctrl + A)
Select the Yahoo account from the list, and click Modify
Click on Advanced tab, under the Yahoo Options, in the Pager server field replace scs.msg.yahoo.com with cn.scs.msg.yahoo.com
save and restart Pidgin, Then  try to connect yahoo messenger. It works for me.
GoodLuck.

Wednesday, September 23, 2009

ESET Smart Security & Antivirus AIO [Include KeyGeN] 74 MB

ESET Smart Security & Antivirus AIO [Include KeyGeN]


The AiO Pack contains:
  • ESET Smart Security 4
  • ESET.NOD32.Antivirus 4
  • ESETLogin Viewer v1.4
  • NodEnabler
  • Portable MiNODLogin
  • TNODUP
  • Serials Sites
Download info:

File Size: 74 MiB
Hosted Site: HotFile
Download

BurnAware Professional 2.4 Portable [InclUdE kEygEn]

BurnAware Professional 2.4 Portable [InclUdE kEygEn]
BurnAware Professional is the professional’s choice for quality CD & DVD media duplication and Blu-ray Disc recording. Apart from the standard features, such as data, audio and video burning, BurnAware Professional offers a wide scope of advanced functionality, allowing you to duplicate CDs and DVDs, make exact copies of discs on your hard drive, write to multiple drives simultaneously. Also it is permitted for commercial use.

Keep original discs scratch free
Duplicate CDs and DVDs or store them as ISO image files on your hard disk. You can always burn them later to create and backup copy of the original movie/game/software.

Create data backups
Burn your photos, spread sheets, home work results etc. to CD/DVD/Blu-Ray Disc. A hard disk crash would no longer be fatal to your work or family archives.

Update existing discs
You can use the same media for sequential recording daily. New data would perfectly co-exist with previously recorded data. The only limitation is the physical media capacity.

Key Features:

Create data, bootable and mutlisession CD/DVD/Blu-ray Discs
Create Audio CDs and jukebox CD/DVD/Blu-ray Discs
Create DVDs-Video
Copy and backup CDs/DVDs
Create and burn disc images, bootable images
Erase / Format rewritable discs
Supports all current hardware interfaces (IDE/SCSI/USB/1394/SATA)
Supports UDF/ISO9660/Joliet Bridged file systems (any combination)
Supports true, simultaneous image writing
Supports parallel erasing
On-the-fly writing for all image types (no staging to hard drive first)
Auto-verification of written files
Supports CD-Text
Clean, flexible, easy to use interface
Supports unicode for multi-byte languages
Supports Windows NT/2000/XP/Vista (32 and 64 Bit), no drivers required

Changes in BurnAware 2.4 (21-Sep-2009):
  •  Added OS support Windows 2008 Server R2.
  • Solved compatibility issues with Windows 7.
  • Added Support for BDR DL and BD-RE DL media.
  • Updated user rights service.
  • Fixed bug with USB drives detection.
Click this image to Download setup with Keygen:
File size: 17Mib
Hosted site: HotFile



If this software commercially useful to you, Then don't use crackeee*  Please buy it from its owner. Because programmers need some support.

Google Earth v4.2.205.5730 Pro -Full | 10.8 MB

Google Earth combines satellite imagery, maps and the power of Google Search to put the world’s geographic information at your fingertips. Fly from space to your neighborhood.

Type in an address and zoom right in. Search for schools, parks, restaurants, and hotels. Get driving directions. Tilt and rotate the view to see 3D terrain and buildings. Save and share your searches and favorites. Even add your own annotations.

Google Earth lets you do smooth sailing flybyes of the entire Earth. You can easily fly to any spot on the globe, by entering any associated data, like street addresses, place names or lat/long coordinates. There are overlays that put additional information on the map, like roads, international boundaries, terrain, 3D buildings, crime statistics, schools, stadiums, any number of interesting stuff. You can do Local searches in the program, with icons on the map and a display on the side showing your results.

You can leave notes, called "placemarks" all over the map, so you can remember where all sorts of places are. Searches and placemarks can be saved as bookmarks in "My Places". Everything can be output in an XML format called KML, that will allow the vast popularity of Google Maps to continue in Earth. You can also email a JPEG of the map, or send a KMZ file if you know the recipient has Earth installed.
Features:

• Sophisticated streaming technology delivers the data to you as you need it.
• Imagery and 3D data depict the entire earth - Terabytes of aerial and satellite imagery depict cities around the world in high-resolution detail.
• Local search lets you search for restaurants, hotels, and even driving directions. Results show in your 3D earth view. Easy to layer multiple searches, save results to folders, and share with others.
• Layers show parks, schools, hospitals, airports, retail, and more.
• Overlays – import site plans, design sketches and even scanned blueprints.
• Annotate the view with lines and polygons.
• Spreadsheet import - ingest up to 2,500 locations by address or lat/lon.
• KML – data exchange format let your share useful annotations.

Use it for:
• Planning a trip
• Getting driving directions
• Finding a house or apartment
• Finding a local business
• Exploring the world

Recommended configuration:
- Operating system: Windows 2000/ XP/ Vista
- CPU speed: Intel® Pentium® P4 2.4GHz+ or AMD 2400xp+
- System memory (RAM): 512MB
- 2GB hard-disk space
- 3D graphics card: 3D-capable video card with 32MB VRAM or greater
- 1280x1024, 32-bit true color screen
- Network speed: 128 kbps ("Broadband/Cable Internet")

Google Earth Plus is an optional upgrade adding GPS device support, the ability to import spreadsheets, drawing tools and better printing.

Google Earth Pro - for professional and commercial uses, Google Earth Pro is the ultimate research, presentation and collaboration tool for location information.

Extract and run GoogleEarth*Portable.
Cache in temp folder deleted when leaving, if you want to keep cache in portable

http://www.sendfile.to/86bbxa2to64x/GE.Pro_Portable_4.2.205.5730_Multi.paf.rar.html

Trojan Remover 6.8.1 Build 2591 [include Keygen]

 Trojan Remover 6.8.1 Build 2591 [include Keygen]


Trojan Remover was written to aid in the removal of Trojan Horses and Internet Worms when standard anti-virus software has either failed to detect the problem or is unable to effectively eliminate it.

The majority of Virus and Trojan Scanners are well able to detect malicious Trojan Horses and Internet Worms but are not always very efficient in removing them once they have been triggered.

Trojan Remover was written specifically to carry out such a removal without the user having to manually edit system files, including the Registry.

The program also removes the additional system modifications some Trojans carry out which are ignored by other Virus and Trojan Scanners.

Trojan Remover examines the system files, including Windows Registry and will determine the programs and files that are loaded at boot time. The vast majority of trojans are loaded this way.

Trojan Remover will scan ALL the files loaded at boot time for Remote Access Trojans ('backdoors', like NetBus, SubSeven, Optix Pro, Back Orifice etc.), Internet Worms and other malware.

For each identified Trojan Horse, Worm, or other malware, Trojan Remover will pop up an alert screen showing the file location and name; it will offer to remove the program's reference from the system files and allow you to rename the file to stop its activation.

Downlaod

mirror:
 http://hotfile.com/dl/13283374/7b14af8/Tr6812591.rar.html

Thursday, September 17, 2009

Grub cannot detect windows vista after installtion (Solution)

Grub cannot detect windows vista after installtion (Solution)


While installing Ubuntu,  the Grub will detect any other operating system itself, but some time grub will fail to do such thing,
Manually Edit Grub Loader: -first try this


Manually editing Grub loader is easy thing  you need to edit grub/menu.lst and grub.conf in order to modify the list, i was posted here with Topic of 'How to Recover Grub...'  it'll work with windows vista as well.
If  grub/menu.lst and grub.conf dont exist in your  /boot/grub folder.  you should Reinstall Grub loader .
But the reinstalling of Grub is mostly not possible while running  same OS. - Getting worry?
don't worry about this we can reinstall GRUB by live Ubuntu  ;)

To Re-install GRUB Loader:

To reinstall GRUB loader you should need a live CD of ubuntu.
  • Boot your computer up with Ubuntu CD
  • Open a terminal window or switch to a tty
  • Type sudo grub. Should get text of which last line is grub>
  • Type "find /boot/grub/stage1". You'll get a response like "(hd0,1)".Use whatever your computer spits out for the following lines.
  •  Type "root (hd0,1)", or whatever your hard disk + boot partition
    numbers are for Ubuntu.
  • Type "setup (hd0)", to install GRUB to MBR, or "setup (hd0,1)" or
    whatever your hard disk + partition # is, to install GRUB to a
    partition.
  • Quit grub by typing "quit".
  • Reboot and remove the bootable CD. Thats it!
You have finished the REinstalling of GRub loader.  At this time you can see the you missed OS in boot menu.
If they not listed on boot menu, You may need to go step one for Manually editing the menu.lst file (after reinstalling  grub on same partition of linux will put menu.lst file on grub folder so don't get lose to try first step  )

GoodLuck :)

Cannot Access Google sites from Ubuntu/Linux [Solution]

Ubuntu has a fantastic community engines which will give more speed than windows winsock*.   But there was a problem with some servers, if you have a routed connection from your ISP (like dsl,3g,wireless,).  These servers will block requests from Ubuntu/Linux machine, So your browser does not load a web-page and keep displaying 'sending request to www.yourhostname.com'  on status bar.
This happens mainly with routed connection. So we should By-pass the  routes then only we can solve this problem.

How to Bypass Routes on Ubuntu:

to ignore automatically obtained routes on Ubuntu you need to edit the network connection setting, To do,

you can access 'Network Connections' by System=> Preference's=> Network Connections

or directly Right-clicking and select Edit Connections in network icon on system tray.

Now it will open Network Connections, Now navigate tab which connection type you are using and click Edit.

Cannot Access Google sites from Ubuntu/Linux [Solution]-Nework Connection settings


It will open new window named 'Editing your Connection name'. In that window go to   IPv4 Settings.
Editing connection

Select method type to Automati (ppp) address only and then enter your DNS server addresses. I have entered open DNS servers 208.67.222.222, 208.67.220.222  .  and then click 'Routes' button

Cannot Access Google sites from Ubuntu/Linux [Solution]-routes

Then click ignore automatically obtained routes.  and click ok on all windows to save this new setting.

Thats it!    :)

[ If you have any suggestions post as comment ]

Wednesday, September 16, 2009

How to Disable or Remove IPv6 on Ubuntu Jaunty 9.04

IPv6 is designed to solve the problems of IPv4. It does so by creating a new version of the protocol which serves the function of IPv4.but the problem is at now all servers or your ISP's are does not supporting the ipv6. so your internet become very slow.  

Edit: note that IPv6 does not slow down IPv4. Ipv6 is a different from IPv4 in 5 major areas as follows:
  1.  addressing and routing, 
  2. security, 
  3. network address translation, 
  4. administrative workload, and support for mobile devices. 
  5. IPv6 also includes an important feature: a set of possible migration and transition plans from IPv4.
But the reason for slow browsing is 'DNS resolving time ' because your browser first try with resolve address with IPv6 protocol if its fails and then try with Ipv4 this changing of protocol takes some time this will slowdown your browsing speed.(But the downloading speed of the files are same with these two protocol.) 
Reason for  editing:  see comments.


IPV6 is enabled by default in Ubuntu Jaunty 9.04, even if you upgraded from an old version of Ubuntu. So we need to disable for get your speed back ok let see how to do?

First of all you need to check is IPV6 is enabled or disabled? - for your convince
Run the folloing code in terminal:

cat /proc/sys/net/ipv6/conf/all/disable_ipv6
By running this code,Terminal will return  a value  1 or 0
If the value is 1  ---IPv6 is disabled
If the value is 0  ---IPv6 is Enabled      if you get this value you need to disable the IPv6 by next code.

Write this in terminal:

sudo su -
echo 1 > /proc/sys/net/ipv6/conf/all/disable_ipv6

 By running this code you can disable IPv6. If you do no have that directory, you can edit your grub menu:

gksu gedit /boot/grub/menu.lst
this file have bunch of boot comments. Now navigate ubuntu 9.04 generic 2.09 or somthing like this.   
Now add

ipv6.disable=1
to the end of the line.

Note: this trick works with kernels other than 2.6.28.

After do it you may check agian by running first code described above on this page.
GoodLuck. :)

Avira Premium Security Suite

Avira Premium Security Suite

Features of Avira Premium Security Suite:
  • Complete security package with virus scanner, AntiAdware, AntiSpyware, AntiDialer, email protection (POP3), Personal Firewall, AntiSpam and proactive AntiPhishing.
  • Very easy to install One click configuration with individual selection between standard and expert configuration
  • Extremely high performance and detection capacity by using the latest standards (AHeAD technology)
  • Extremely small program and signature updates make sure that the protection against attackers is always up-to-date
  • Rootkit protection
  • Virus check of every file and archive access 
  • Protection of active processes against undesired breakups
  • Perfect for game tasks through the "Game mode"
  • WebGuard to surf and download safely
  • Also available as a family license for 3 PCs
Program:
http://hotfile.com/dl/12666032/2d69da7/avira_premium_security_suite_en_with_2_license_keys.rar.html

Keys:

http://hotfile.com/dl/12666033/6ed43a8/AviraSecSkeys.rar.html

Avira AntiVir PersonalEdition Premium

Avira AntiVir PersonalEdition Premium

Features of Premium:
  • Security package with virus scanner, AntiAdware, AntiSpyware, AntiDialer, email protection (POP3) and AntiPhishing.
  • Very easy to install 
  • One click configuration with individual selection between standard and expert configuration 
  • Extremely high performance and detection capacity by using the latest standards (AHeAD technology) 
  • Extremely small program and signature updates make sure that the protection against attackers is always up-to-date 
  • Rootkit protection 
  • Virus check of every file and archive access 
  • Protection of active processes against undesired breakups
  • Also available as a family license for 3 PCs
SetUP:
http://hotfile.com/dl/12665649/22b71b9/Avira9.rar.html

Keys:
http://hotfile.com/dl/12665650/28dd452/Avirapremkey.rar.html

You may also need:   avira-premium-security-suite-900367

Nero v9.4.13.2d LITE Edition 48MB Only [CRACKED,Keymaker]

Nero v9.4.13.2 liteversion 48Mb only
Nero v9.4.13.2 liteversion 48Mb only


Introducing a new nero lite version. Now, download just 48mb & get MOST NEEDED NERO APPLICATION when you are in really bad state!!

Package Includes:
  • Nero Burning ROM,
  • Nero Express,
  • Nero DiscSpeed,
  • Nero DriveSpeed,
  • Nero InfoTool,
  • ControlCenter

Download Nero v9.4.13.2d LITE Edition 48MB Only [CRACKED,Keymaker]

http://hotfile.com/dl/12664252/c36dcc9/Nv9.4.13.2d_Lite_Edition.rar.html
http://hotfile.com/dl/12664251/a213cca/Nero9_Keymaker.rar.html
Please Download as Free user to Support Me :)

I'll back with nero for LINUX    :-h

Microsoft Windows XP Registry Guide Become a Geek in XP :)

Microsoft_Windows_XP_Registry_Guide

This is a wonderfull ebook in pdf format tells about programming windows XP registry. This book contains information that you're not going to find in any other book about the Windows XP registry. You'll learn how to track down where Windows XP and other programs store settings in the registry. You'll learn how to write scripts to edit the registry. You'll discover registry hacks that are both unique and useful. And you'll read about my personal experiences with the registry and what I consider my best practices. For example, in Chapter 2, "Using the Registry Editor," you'll learn how I quickly document my changes to the registry” right in the registry itself.

About Book:
Jerry Honeycutt Microsoft Press

A Division of Microsoft Corporation One Microsoft Way Redmond , Washington 98052−6399
Copyright © 2003 by Jerry Honeycutt

Download Size:  440Pages  5Mb in rar

Kaspersky KIS/KAV 2010 (16.9.09) New Keys!

 
Kaspersky Internet Security 2010 – the all-in-one security solution that offers a worry-free computing environment for you and your family. Kaspersky Internet Security 2010 has everything you need for a safe and secure Internet experience.

Kaspersky Internet Security 9.0.0.463 – is a new line of Kaspersky Labs products, which is designed for the multi-tiered protection of personal computers. This product is based on in-house protection components, which are based on variety of technologies for maximum levels of user protection regardless of technical competencies. This product utilizes several technologies, which were jointly developed by Kaspersky Labs and other companies; part of them is implemented via online-services.
Our products for home and home office are specifically designed to provide hassle-free and quality protection against viruses, worms and other malicious programs, as well as hacker attacks, spam and spyware.

During product preparation several competitor offerings were considered and analyzed - firewalls, security suites systems, which position themselves as proactive in defence and HIPS systems. Combination of in-hosue innovative developments and results from analysis gathered through the industry allowed to jump onto a new level of protection for personal users, whereby offering even more hardened and less annoying computer protection from all types of electronic threats – malicious programs of different types, hacker attacks, spam mailings, program-root kits, phishing emails, advertisement popup windows etc.

WHAT'S NEW IN KASPERSKY INTERNET SECURITY 2010:
Kaspersky Internet Security 2010 is a comprehensive data protection tool, which provides not only anti-virus protection but also protection against spam and network attacks. The application's components also enable users to protect their computers against currently unknown threats and phishing, and to restrict users' access to the Internet. The multifaceted protection covers all channels for data transfer and exchange. All components can be flexibly configured, allowing users to tailor Kaspersky Internet Security to their specific needs.

FIXES : v.9.0.0.463
1. Problem with system instability after long period of program operation has been fixed.
2. Error causing BSOD while updating the emulator driver has been fixed.
3. Pop-up message in the URL checking module has been fixed (for the Spanish version).
4. Problem with pausing the scan task while third party programs are running in full-screen mode has been fixed.
5. Problem with the update task freezing at system startup has been fixed.
6. Vulnerability that allowed disabling of computer protection using an external script has been eliminated.
7. Driver crash in rare cases while processing a write operation has been fixed.
8. Crash while processing data incompliant with the protocol of Mail.Ru Agent has been fixed.

Download button
Download Kaspersky "Internet Security" 2010 v9.0.0.463 x86/x64:
http://hotfile.com/dl/12654705/40db3ee/KIS_2010_v9.0.0.463.rar.html
http://hotfile.com/dl/12654707/2792a2b/KIS_Keys_7_8_9.rar.html

Download Kaspersky "Anti-Virus" 2010 v9.0.0.463 x86/x64
http://hotfile.com/dl/12657013/cee28ae/KAV_2010.v9.0.0.463.rar.html
http://hotfile.com/dl/12657014/ad6d2f5/KAV_Keys_7_8_9.rar.html

Download The KIS/KAV 2010 "OffLine Updates": Updated on 16th September' 2009
http://hotfile.com/dl/12657449/f02e9fe/K.O.U.rar.html

Yahoo! Messenger 10 Beta :)

ScreenShorts:
download yahoomessanger 10beta
Login UI of YM10Beta

Yahoo's popular instant messenger client, aptly named Yahoo Messenger, is getting ready for a major update. With the turmoil surrounding the company?s search business and the shift in focus towards content and more social features, the new Yahoo Messenger 10 Beta is in line with the Internet giant?s new vision. Major new features include a greatly improved video chat and the social-oriented Yahoo Updates, which shows the status updates of users? friends inside the messenger window.

Yahoo Messenger has had webcam support for quite a while but it was just an addition to the chat or the voice call conversation, something that made it more interesting but wasn?t essential to the experience. This is about to change in the upcoming messenger version, with video chat becoming a conversation option on its own. There is a new ?Video Call? button that initiates the one-on-one video call. This will bring up the video stream inside the conversation window with synced audio to provide a real video chat experience.

There are several options for managing the conversations, with users being able to swap the video windows and mute or put the conversation on hold. But if they want to focus on just one conversation, they can even expand the whole video chat window to full screen. The new video features are only available for Yahoo Messenger 10 users and the regular webcam broadcasting hasn?t changed.

The other big feature introduced is the Updates view inside the main messenger window. Yahoo has been pushing its new Updates feature for a while now, with the current version of Yahoo Messenger displaying the status updates of users? contacts from a variety of sources aggregated by their Yahoo Profiles. A large number of services are supported, with content coming from blogs, Twitter, Last.fm etc. The updates now get their own view and users can easily start a conversation with a friend in this view as well as filter the updates to show only those coming from certain friends.

A number of smaller features and improvements have also been added. Now users can choose their language from the sign-in screen with 16 languages available, and there are also new ways of sorting the contact list, for example by activity or availability.

Download info:
Download size: 15Mb


Unblock.Me.v1.2.0.iPhone.iPod.Touch.Cracked

Unblockme cracked game for ipod,iphone,touch
UnBlock Me is a simple iPhone/iPod Touch puzzle game. The goal of this game is that you have to get the red block out of board by sliding the other wooden blocks vertically and horizonally. It is simple but addictive one. You can try UnBlock Me lite version which has 200 levels and 1,000 levels for full version is just about $0.99.

Download Cracked version here: 
Download size: 1.5Mb
no pass

Download unblockMe v1.2.0 for iphone,ipod touch cracked

http://hotfile.com/dl/12654424/f75fa70/Unblock20me20v1.2.0.iPhone_iPod_touch_cracked.rar.html

Winamp.Pro.5.556.Build.2512 full Pack[include Winamp Essentials 5.55]

Winamp Pro 5.556 full-screenshort

Winamp was born as a very basic media player and has slowly but consistently improving for many years. Its main purpose was to be completely customizable and through the years, many people have contributed to a library that now consists of 20,000 skins and 461 plug-ins.

When version 5 was released, Nullsoft redeemed themselves in the public's eyes after producing a much improved player to replace Winamp 3. They didn't need much encouragement as they justified skipping version number 4 by saying that it was such a huge improvement that it deserved to be called 5!

The player supports a wide range of file formats, and because the program is small and simple, it works quickly on almost all computers. Have a look through   the available plug-ins and you will also find that you can hook up your iPod and manage its music library.

Features:
  • New! Now Playing: Discover Artist Songs, Videos, Radio and Photos
  • New!AOL Radio Powered by CBS Radio
  • New!Expanded Flash video support
  • New!Media Monitor: Playing music on the web just got even better
  • New! Language packs available in Chinese, Japanese and Korean
  • New! Updated Winamp toolbar - control Winamp from your browser
  • A Redesigned Unified Interface, including Album Art
  • Remote Music and Video Playback and Sharing
  • Dynamic Song Recommendations Playlist Feature
  • Multi-channel MP3 Surround Support
  • Mass Auto-Tagger Provides Latest Music Metadata
  • Integrated Web Search for Artist and Track Information
  • Album Art Support for Portable Devices
  • Updated Podcast Directory and Download Manager
  • Fully Integrated Web browser and customizable links
  • New Visualizer Plug-in - Milkdrop 2
  • Pro! Rips CDs to MP3
  • Pro! Rips CDs to aacPlus, AAC, WMA Unlimited!
  • Pro! Rip to HE-AAC Over 128k!
  • Pro! Burn CDs Up to 48x!
  • Portable Device Sync support
  • Expanded Podcast Directory
  • Smart views with new pre-sets for dynamic playlists 
  • Plays an insane amount of audio and video types: see them all! Compatible with 
Winamp 2 Plug-ins
Full Support for Classic Skins
Full Support for Modern Skins
Access over 18,000 SHOUTcast Radio Stations
Enjoy thousands of free songs and videos
Playback the AOL Video catalogue of video content
Listen to AOL Radio stations
Download thousands of Skins and Plug-ins
50 Free MP3 Downloads compliments of eMusic
Listen to Free MP3 of 'Charlotte' by Booka Shade

Multilanguage: English, Spanish, Italian, French, Japanese, Chinese, etc

Download Info: 

The download package contains:
Winamp.Pro.5.556.Build.2512
Winamp_Essentials_v5.55
Classic Pro plugin
wa5_coloreditor_2_2_0
Winamp Pro serials
Download Size: 14.5MiB
Password: softwareroxer
 Password: softwareroxer
Download
Thank you for Downloading 

Tuesday, September 15, 2009

Recover Ubuntu Grub loader after installing Windows

Recover Ubuntu Grub loader after installing Windows

If you run a dual-boot system with linux and Windows, this has happened to you. You had to do your monthly reinstall of Windows, and now you don’t see the linux bootloader anymore, so you can’t boot into Ubuntu or whatever flavor of linux you prefer. You can easily recover GruB loader .
To do:


  • To recover Grub loader after installing windows you'll need a Live-Cd of the Linux (same flavor of installed linux) and Root access.
  • Boot form live CD
  • Open terminal and type the following code.
          sudo grub
          > root (hd0,0)
          > setup (hd0)
          > exit
    note that hd0,0 implies the first hard drive and the first partition on that drive, which is where you probably installed grub to during installation. If not, then adjust accordingly.
  • Now reboot your computer
Trouble Shooting:


If Windows is now missing from the boot menu:   
If you installed Ubuntu before you installed Windows, then Ubuntu will not have anything in the grub configuration for Windows. This is where you’ll have to do a bit of manual editing to the grub boot menu file.

Open the file /boot/grub/menu.lst with the following command:
sudo nano /boot/grub/menu.lst
Here nano is text editor which i use. you can change this to default text editor for linux gedit if you dont have nano

This is a sample codes for  windows in grub loader:
Paste this code into menu.lst file and click save.
title Windows 95/98/NT/2000/XP/XP Pro/Vista
root (hd0,0)
makeactive
chainloader +1

Note that you should also verify that hd0,0 is the correct location for Windows. If you had installed Windows on the 3rd partition on the drive, then you should change it to (hd0,2)


:)

Monday, September 14, 2009

uFone free GPRS TRick ;)

FREE UFone GPRS

Trick is so simple:   first Active your uf0ne GPRS
and change settings to following:
  • accsses point(APN) =ufone.ptt..wap2
  • proxy=172.016.013.026
  • port=8080
Use operamini , Ucweb *  works fine  maybe work on teashark    :)

* Get Working Browsers versions here for this Trick
Opera Mini 4.3 for Ufone
UcWeb 6.3 for Ufone
Ucweb 6.3.2 enserver
If you have any suggestions leave commecnts
:)

Creating a PXE boot for Jaunty Live

PXE usually involves booting a computer from firmware -- data contained on a read-only-memory (ROM) or programmable read-only-memory (PROM) chip -- rather than from data contained on magnetic media. This gives rise to the terms 'PXE boot ROM' or 'PXE boot PROM' (sometimes written 'PXE bootprom'). Booting from ROM or PROM eliminates the reliance on an electromechanical device (the physical drive). This enhances reliability and eliminates drive read errors. With today's memory technology, booting from ROM or PROM is fast. PXE can be also used to boot a computer from a network.

To create PXE boot for Jaunty Live you need the following:

  • Ubuntu server for PXE environment (tested on Jaunty 9.04 server)
  • Wired network
  • PXE boot capable network card on target machine
  • Download syslinux-xxx.zip
Do on Ubuntu Server:


  • First of all you need to login as Root    (sudo su-)
  • Create the directory structure as following:

    /pxe
    /pxe/images
    /pxe/images/ubuntu
    /pxe/pxelinux.cfg
  • Extract the files from syslinux-xxx.zip
  • Find menu.c32 & pxelinux.0 & copy them to the /pxe directory (other files on the Zip is no longer nedded can be delete)
  • create a file /pxe/pxelinux.cfg/default & paste in the following:

    DEFAULT menu.c32
    PROMPT 0
    NOESCAPE 0
    ALLOWOPTIONS 0
    TIMEOUT 600

    MENU TITLE PXE Boot Menu

    LABEL Ubuntu Jaunty Live Desktop
    kernel images/ubuntu/casper/vmlinuz
    append boot=casper netboot=nfs nfsroot=192.168.1.101:/pxe/images/ubuntu initrd=images/ubuntu/casper/initrd.gz -- splash

    LABEL Ubuntu Jaunty Live Install
    kernel images/ubuntu/casper/vmlinuz
    append boot=casper netboot=nfs nfsroot=192.168.1.101:/pxe/images/ubuntu initrd=images/ubuntu/casper/initrd.gz -- splash only-ubiquity
  • Now copy the contents of the Ubuntu live CD into /pxe/images/ubuntu
  • And then install dnsmasq & nfs-kernel-server by run the code on terminal  apt-get install dnsmasq nfs-kernel-server
  • edit /etc/dnsmasq.conf & replace all text with:

    no-hosts
    server=/localnet/192.168.52.1
    dhcp-range=192.168.52.40,192.168.52.50,2h
    dhcp-boot=pxelinux.0
    enable-tftp
    tftp-root=/pxe
    resolv-file=/etc/nameservers
    dhcp-option=3,192.168.52.1
  • Make sure you replace the IP with addresses, netmasks etc with ones suitable for your network.
  • edit /etc/exports & replace all text with:/pxe/images *(ro,sync,subtree_check)
  • Add your DNS nameservers by creating the new file (this is for opendns):
    gedit /etc/nameservers
    nameserver 208.67.222.222
    nameserver 208.67.220.220
  • Reboot your server
Now you can able to boot your target client machine to Ubuntu if it has a pxeboot enabled network card (usually accessed by pressing F12 at boot).

Do you have any suggestions write as comment   :)

[Ubuntu] Disable screensaver and powermanager while mplayer or other apps are running

[Ubuntu] Disable screensaver and powermanager while mplayer or other apps are running 

I was found a small python daemon on other forum site to disable gnome-screensaver and gnome-powermanager while certain specified apps are running. It works quite well on Ubuntu Edgy. It requires dbus (>= 0.93), python-dbus, and obviously gnome-screensaver and gnome-powermanager (on gnome 2.16).

To install it just copy "disablegss.py" in /usr/local/bin, fix its execute permissions and create a simple config file in your homedir "~/.disablegss". In this config file add every application name that could stop gnome-screensaver, one for each line.

For Example:
mplayer
gmplayer
vlc
wxvlc
xine
gxine

Please notice you must insert the name of the app how you can see it on 'ps aux': for example if you want to add firefox, you must write a line with "/usr/lib/firefox/firefox-bin".
Now just launch disablegss.py on a terminal or simply add it on your session!
You can change the config file on fly (I check if someone modify it), adding or removing apps without restarting it.

How Works:

 Author's Talks:
Unfortunately the dbus and gnome development documentation are a bit outdated, so I have read totem sources to view which methods are called to stop gnome-screensaver and gnome-powermanager. The idea is if you call the Inhibit method of gnome-screensaver, you disable the screensaver AND the powermanager. To enable them again you must call the UnInhibit method. There is a small terminal app, dbus-send, to comunicate with dbus but it doesn't work well with these methods, so I decide to use the python dbus interface. This is my first program in python so please tell me if something is wrong or not well coded!
Every 60 secs the daemon check if there are apps running that are also present in the config file. If it's true, the screensaver is disabled. If someone change the config file, the daemon read it again.
I don't think that this small daemon could run on Dapper: the dbus and gnome API change on every release. But you can modify it to fix things. There are only two lines that could be problematic:

Line 38: cookie = dev.Inhibit(myprogram, 'Disabled by DisableGSS Daemon')
Line 49: dev.UnInhibit(cookie)

These two methos are different on gnome 2.14 on Dapper. Also dbus has radically changed. If you want to use disablegss.py on Dapper, find the right methods (try to see dapper totem sources) and feel free to change what you want!
To do debug, I suggest you to launch disablegss.py on a terminal and dbus-monitor on another one (you can see all messages from and to dbus daemon). Also change the sleep time value in seconds (line 121) to debug it faster.
Happy coding!


This works very well for me :D , How about you?

Sunday, September 13, 2009

The Password Rumour for Ubuntu ;)

Just to know    :)

By default

Ubuntu has a root password; they just don't tell the user what it is.
Some versions claim it is a randomly generated one. There is no root password, and this statement mustn't be confused with "the password is carriage return" (a usage RMS tried to popularize at MIT). Take a look at /etc/shadow, if you will (sudo less /etc/shadow). On a default install, the first few lines will look something like this:
root:*:14438:0:99999:7:::
daemon:*:14438:0:99999:7:::
bin:*:14438:0:99999:7:::
sys:*:14438:0:99999:7:::
sync:*:14438:0:99999:7:::
Contrast this with the line containing your user's name.
test:$6$.XQFA5P3$JYH9CpZS00DUAPDXcxc5qzP
2vaNLrGj2TB5dlLj6rEVCOMpTt5XmFH7eL2TiDtX
GApTknWhO6phpGyuac3DCU.:14470:0:99999:7:::

What is different? The second field (the part after the first ":") is a "*" for those system users and a long jumble of numbers and letters for the human users. The "*" means that the user cannot login using a password. The long jumble of numbers and letters? That is a hash of the user's password. In this test user's case, that is a hash of the string "password". If you're interested in the other fields, see man 5 shadow. This password has been encrypted with SHA-512, as evidenced by the $6$ at the start of the hash. See man crypt for a list of other possible prefixes. Note that $1$ means MD5, a hash which has been rather thoroughly broken. Since 8.10, SHA-256 and SHA-512 are available and will be used if you reset your password. If you've still got an MD5 hash in there, it's likely a good idea to do so, if only because it means you haven't changed your password recently enough.
This rumour usually comes up in the context of someone pointing out that if you are a remote attacker, you can guess that root has all the power and so all that is needed is to brute force root's password. In Ubuntu's default setup, this won't work because there is no password that would succeed, regardless how long you spent generating new passwords to try. Instead, the attacker would need to guess the correct combination of user-who-has-sudo-access and password—something exponentially harder. Well-meaning but misguided folks, attempting to protect us Ubuntu users from a false sense of security, then warn us that no, we're wrong, Ubuntu does have a root password. Well, the evidence is in /etc/shadow for all to see. Ubuntu has a locked root account, just the same as if one were to run sudo passwd -l (see man passwd).

 Do you have any suggestion leave as Comments :)

Saturday, September 12, 2009

One crack for all FileHost sites [Rapid, Hotfile, MegaUpload .......]

Elephant Download 

The (E)Lephant is a downloading manager that deals with direct http share host downloads.
  • No need to visit the Host page and enter that stupid captcha on text box 
  • No need to wait for time delay 
  • No download limits on your downloads
  • (E)Lephant can automatically do works shown on above. You just need to do copy your download link, Elephant will automatically detect supported File host on clipboard and ask you to start download.
 Hosts Supported By this application:

  • Rapidshare
  • MegaUpload
  • Hotfile
  • Beeupload,
  • 2Shared
  • ADrive
  • Badongo
  • Beeupload
  • DepositFiles
  • Easy-Share
  • EgoShare
  • EnterUpload
  • FileFactory
  • FileZzz
  • GigaSizz
  • LetitBit
  • MediaFile
  • MegaUpload
  • NetLoad
  • SendSpace
  • Share-Online
  • SpeedShare
  • UploadBox
  • Uploaded
  • Uploding
  • Vip-File
  • YouTube
  • Zshare
  • and more..
How Works:

Elephant have  engine to do many automate works those work are Auto Captcha enter,Java script hacker for Time Delay, and automatically reconnect your net connection, Change your IP address and many more....

Download info:

File size: 34Mb
Download size: 10Mb
File Type: *rar
Download
[If you want more Details on this post your email address as comment]

Hack Proofing (Protect Your Identity)

Hack Proofing (Protect Your Identity) Cover
Identity-theft is the fastest growing crime in America, affecting approximately 900,000 new victims each year. Protect your assets and personal information online with this comprehensive guide.

Hack Proofing Your Identity will provide readers with hands-on instruction for how to secure their personal information on multiple devices. It will include simple measures as well as advanced techniques gleaned from experts in the field who have years of experience with identity theft and fraud. This book will also provide readers with instruction for identifying cyber-crime and the different ways they can report it if it occurs.

Hot Topic. Hack Proofing Your Identity will provide readers with both simple and advanced steps they can take to protect themselves from cyber-crime.
Expert Advice. This book will present security measures gathered from experts in both the federal government and the private sector to help secure your personal information and assets online.
Unique Coverage. Hack Proofing Your Identity will be the only book to include security measure for multiple devices like laptops, PDAs and mobile phones to allow users to protect themselves while taking advantage of the newest ways to access the Internet.

Book info:

Author: Teri Bidwell (GCIA)
Pages: 380

Download info:

Download size: 7.2Mb
File Type: *rar
File size: 9Mb
Download

ESET Nod32 Anti-virus 4.0.437 [Full]

ESET Nod32 Anti-virus 4.0.437 Boxshort
Built on the award-winning ThreatSense engine, ESET NOD32 Antivirus proactively detects and disables more viruses, trojans, worms, adware, spyware, phishing, rootkits and other Internet threats than any program available.ESET NOD32 Antivirus provides: Proactive Protection: The award winning ThreatSense technology combines multiple layers of detection protecting you from Internet threats before it is too late.Precise Detection: ESET accurately identifies known and unknown threats. It consistently wins top awards from testing labs and is recognized for having zero false positives.1Lightweight Design: Requires less memory and CPU power, allowing your computer to run fast, making more room for games, web browsing, and emailing.
Fast Scanning Speeds: Highly efficient program ensuring fast file scanning and product updates. It runs quietly in the background.Proactive, precise, lightweight and fast. You wont find a better antivirus program.


Features:
Protection from the Unknown — Award-winning ThreatSense® technology uses multiple layers of threat detection to deliver the most effective protection possible against new attacks. And ThreatSense is smart; it raises far fewer annoying "false alarms" than any other products that use heuristics.
Finds Malware Other AV Companies Missed — Typically when a new copy of ESET NOD32 replaces another antivirus product on a home computer the average user finds viruses or malware resident on the machine that were undetected by their previous antivirus product.
Built for Speed — ESET NOD32 Antivirus is lightning fast, so fast you won't even notice it's there. Even disk-intensive operations like performing a "full disk scan" to run smoothly in the background while you work or play.
Easy on Your System — ESET NOD32 Antivirus is "lean and mean," typically using just 44 MB of memory, a fraction of what other products consume. Because it's fast and "light," upgrading your existing antivirus protection to ESET NOD32 Antivirus can literally be like buying a new computer. And laptop users can rejoice in the new automatic energy-sipping battery mode.



Version 4 Features
Smarter Scanner — Threats don't always enter your network in ways you expect. ESET NOD32 Antivirus inspects SSL-encrypted communication channels like HTTPS and POP3S and intelligently scans compressed files to find hidden threats other products miss. Proactive protection begins at the earliest point in system startup to ensure your computer is always secure.
Clean and Safe Email — Email scanning for Microsoft Outlook, Outlook Express, Mozilla Thunderbird, Windows Live Mail, Windows Mail, and other POP3/IMAP mail clients, ensuring your email is free of viruses and other threats.
Removable Media Security — Threats can enter your PC from removable media such as USB thumb drives. For self-running media, ESET NOD32 Antivirus scans autorun.inf and associated files when the medium is inserted, in addition to scanning any file on any removable device when it is accessed, or during a full-scan of the media. Power users can adjust ESET NOD32 Antivirus to perform additional levels of scanning on removable media.
System Tools — ESET SysInspector and ESET SysRescue simplify diagnosing and cleaning of infected systems by allowing deep scans of system processes to find hidden threats, and creating bootable rescue CD/DVD or USB drives to help you repair an infected computer.
Self Defense — ESET NOD32 Antivirus has built-in technology to prevent malicious software from corrupting or disabling it, so you can rest assured your system is always protected.
Many Usability Improvements — ESET NOD32 Antivirus has numerous speed, security and usability upgrades.
  • Energy-sipping battery mode extends laptop battery life without compromising security
  • Advanced Protection Status screen informs you of threat detections
  • Information pop-ups are hidden when running full screen applications like games, video players or presentations
  • Password protection prevents ESET NOD32 Antivirus from being uninstalled by strangers
  • New interface and keyboard shortcuts simplify use for visually impaired users
System Requirements
Processors supported: Intel or AMD x86/x64
Operating Systems: Microsoft Windows 2000, Microsoft Windows XP (32¬ and 64-bit editions),Microsoft Windows Vista (32- and 64-bit editions)
Memory: 44 MB
Disk Space (download): 28 MB
Disk Space (installation): 35 MB
Download

Word Origins The Hidden Histories of English Words from A to Z

Word Origins ThePoet Cover

Description: This in-depth exploration of the English language covers every nuance and curiosity of this constantly evolving linguistic pastiche. It is estimated that every year 800 neologisms are added to the English language, and include acronyms (NIMBY, Not In My Backyard), blended words (motel), and those taken from foreign languages (savoir-faire). Laid out in an a-to-z format with detailed cross-references and written to appeal equally to students, etymologists, and nonnative speakers, this historical guide is an invaluable resource for this truly global lingua franca.


Author: John Ayto
Release: 2005
Publisher: A&C Black
Format: Pdf 576 pages
ISBN: 0713674989 (0-7136-7498-9)
ISBN 13: 9780713674989 (978-0-7136-7498-9)
List Price: $16.95
File size: 21.83 MB


Download this interesting EBook here :



Download

uSbuntu (Ubuntu) Live Creator

uSbuntu Live Creator does almost the same thing as the USB Live Creator included in the 8.10 except it has more features.
It is working with Ubuntu, Kubuntu and Xubuntu and it allows you to run your USB key directly in windows without any software installation nor configuration, using a special portable version of VirtualBox.
It’s really easy to use.
Creating an uSbuntu key is a five easy steps:


  •  launch the uSbuntu Live Creator and choose a USB key or drive in the list
  • select a ISO file or CD of Ubuntu/KubuntuXubuntu 8.10 Intrepid Ibex
  • choose the size of persistency data (usually more than 250MB)
  • check the options you want
  • click the thunder to start the creation
Do not forget to use the customized helps (top-right end corner of each step).
Moreover, each needed step (1,2 and 3) has a traffic light to indicate its state. This is the interpretation
Red light: the step is not correctly fulfilled, you cannot start the creation
Orange light : there is a non blocking problem on the step
Green light : everything’s fine

Download Info:

Download Size: 1.65Mb
File Size:  4Mb
File Type: *rar
Download

.NETSpeedBoost Professional Edition v6.5 +Key

    
     

.NETSpeedBoost is a powerful and easy to use self installing program for Windows 95, 98, ME, NT, 2000, XP and Vista which optimizes your Internet connection speed by up to 1200% faster. When computers leave the factory, they are not set up to surf at the maximum speed. .NETSpeedBoost increases the performance of your computer by opening up the pipeline so that the information flows FASTER.

Webpages load a lot faster (instantaneously page loading!). Send and receive your emails much faster than before. Experience quicker downloads of MP3s, Video/Movie files, graphics, software, and more. Experience super fast file transfer, online games, minimum pings, and other internet-related software! Online voice conversation and video camera interaction perform very well without connection interruption! Experience all of them today!

Just Give Up a Try  And say your Feedback !


Download info:

File Size: 2Mb
Type: *rar
Download

Avira Premium Security Suite 9.0.0.367 full

Avira Premium Security Suite 9.0.0.367 Download
Avira presents the Premium Security Suite with Full protection: Includes basic and advanced antivirus protection, email protection, AntiPhishing, Anti-Spyware and Anti-Adware PLUS: Anti-Spam, Firewall, WebGuard (Safe Surfing), Game Mode and more.! Complete security for workstations! The repeatedly awarded and worldwide used virus and malware protection by over 30 million users now also with WebGuard!

Premium Security Features:


  • AntiVir 
  • AntiAd/Spyware
  • AntiPhishing - 
  • AntiRootkit
  • AntiDrive-by
  • AntiBot
  • EmailScanner
  • WebGuard
  • RescueSystem
  • BackupSystem
  • AntiSpam
  • FireWall
  • Game Mode
  • NEW: Raised scan speed
  • NEW: Redesigned visual appearance
Highlights from the WebGuard:

  • Checks Internet downloads against viruses
  • Recognizes defective files before they are loaded on your computer
  • Affected websites can be blocked, isolated or ignored
  • Specific files and URLs can be excluded from the examination
  • Works independently from the browser you are using
Operating system:

Windows 2000 (SP 4 recommended)
Windows XP and XP 64 Bit (SP 2 recommended)
Windows v!sta 32 Bit and 64 Bit

Download Info:

File size:  33Mb
File Type: rar
Password: (nil)
Download

Friday, September 11, 2009

Registry Mechanic 8.0.0.906 + Keys



With Registry Mechanic you can safely clean, repair and optimize the Windows® registry with a few simple mouse clicks! Problems with the Windows® registry are a common cause of Windows® crashes, slow performance and error messages. By using a registry cleaner regularly and fixing registry errors your system should not only be more stable but it will also help improve your system performance without expensive hardware upgrades. Learn more about the importance of a clean registry with our registry insight.

Registry Mechanic uses a high-performance detection algorithm to quickly identify missing and invalid references in your Windows® registry. These problems can occur for many reasons including being left-behind after the un-installation or incorrect removal of software, by missing or corrupt hardware drivers, or orphaned startup programs.

With a few easy steps our registry cleaner will scan your entire registry for any invalid entries and provides a list of the registry errors found, you can then choose to selectively clean each item or automatically repair them all. For your convenience and protection Registry Mechanic can also make a backup of any repairs made so that you can easily recover any changes if required.

Operating System: Designed for Windows® Vista™ (32-bit and 64-bit), 2000 and XP.


Instructions:download the file. you need winrar to unpack. unpack and install. give serial key when the program ask you.

Download Info:  
Version: 8.0.0.906
File size: 7Mb


[If download link not work please tell me]