Posts

Showing posts from June, 2013

What's the Difference Ubuntu & Linux Mint

Image
Ubuntu and Linux Mint are two of the most popular desktop Linux distributions at the moment. If you’re looking to take the dive into Linux – or you’ve already used Ubuntu or Mint – you wonder how they’re different. Linux Mint and Ubuntu are closely related — Mint is based on Ubuntu. Although they were very similar at first, Ubuntu and Linux Mint have become increasingly different Linux distributions with different philosophies over time. History Ubuntu and other Linux distributions contain open-source software, so anyone can modify it, remix, and roll their own versions. Linux Mint’s first stable version, “Barbara,” was released in 2006. Barbara was a lightly customized Ubuntu system with a different theme and slightly different default software. Its major differentiating feature was its inclusion of proprietary software like Flash and Java, in addition to patent-encumbered codecs for playing MP3s and other types of multimedia. This software is included in Ubuntu’s

Hack Wifi with Fern Wifi Cracker

Image
          Fern Wifi Cracker is a Wireless security auditing and attack software program written using the Python Programming Language and the Python Qt GUI library , the program is able to crack and recover WEP/WPA/WPS keys and also run other network based attacks on wireless or ethernet based networks Operating System Supported The Software runs on any Linux machine with the programs prerequisites , But the program has been tested on the following Linux based operating systems: Ubuntu KDE/GNOME BackTrack Linux BackBox Linux Prerequisites The Program requires the following to run properly: The following dependencies can be installed using the Debian package installer command on Debian based systems using "apt-get install program" or otherwise downloaded and installed manually Aircrack-NG Python-Scapy Python Qt4 Python Subversion Xterm Reaver (for WPS Attacks) Macchanger Features Fern Wifi Cracker currently supports the foll

How To run Blocked Applications in wine

Image
in Desktop Press " CTRL + ALT + T " Now you have the terminal window then type " gksu gedit /usr/share/applications/wine.desktop" Press CTRL + F and search for the line " Exec=cautious-launcher %f wine start /unix" Replace this line with " Exec=wine start /unix %f"   Now Save the file (CTRL + S) 

Google or Facebook – Which Internship Would You Prefer?

Image
Software Mobile Apple Google Gadgets Internet Jun 15, 2013 - 2 days ago Allanah Google or Facebook – Which Internship Would You Prefer? in Share Internships usually involve you doing all the jobs that everyone else hates, including making coffee for the whole office. But usually you can put up with the low pay (that is if you get paid) and the menial tasks because you’re just happy to be there. Imagine though if you could land an internship with a yearly salary of almost $80,0000? Well, if you think you are an innovative software development genius, then you could apply for a coveted internship at Google or Facebook. Google uses funky architecture to encourage creat

How to install Windows 8 on ACER ASPIRE E1-531

Image
Hi Guys I use and Acer Aspire E1-531 laptop.The Laptops good and The Only thing that got me frustrated was that i could not not Install Windows 8 on Acer Aspire E1-531 laptop. Whenever i try to install Windows 8 I get an Error Message A BSOD(Blue Screen of death) that IRQL_NOT_LESS_OR_EQUAL .so i gave my laptop to the ACER Customer Care and I got Windows 8 installed on My Laptop The Guy from Customer care taught Me the way to install windows 8 on my Acer Aspire E1-531 Laptop and the trick is as follows To install Windows 8 in your Laptop 1) Remove Your Wifi Card (Its is located at the bottom of your laptop Do not attempt for this if your Laptop is still in warranty Period else you will Lose your Warranty). If Your laptop is in warranty Period i suggest you to give your laptop to the Customer care and get a Windows 8 Installed on your Acer Aspire E1-531 2)Install Windows 8 3) Crack windows 8 (IF required) 4) Install Drivers 5)Now Put Back Your Wifi Card and Boot yo

15 System Tools You Don’t Have To Install on Windows Anymore

Image
Windows includes its own versions of many widely used system utilities. A variety of new utilities were added to Windows 8 , but many of these utilities are available on Windows 7, too. If the first thing you do after setting up a new Windows installation is install all your preferred utilities, this can speed things up. Better yet, these utilities are available on every Windows computer you’ll come across. Antivirus Windows 8 includes an antivirus program known as Windows Defender, so all Windows users will finally have an antivirus program on their computers. Windows 8 no longer hassles users to download and install an antivirus immediately after setting their computer up. Windows Defender in Windows 8 is essentially Microsoft Security Essentials with a new name. If you use Windows 7, you can install the free Microsoft Security Essentials . If you use Windows 8, you don’t have to install a third-party antivirus. Firewall If you’re stil

Java Program to Write Text to a File

Image
    import java.io.BufferedWriter; import java.io.File; import java.io.FileWriter; import java.io.IOException; public class WriteToFileExample { public static void main(String[] args) { try { String content = "This is the content to write into file"; File file = new File("/users/kamar/filename.txt"); // if file doesnt exists, then create it if (!file.exists()) { file.createNewFile(); } FileWriter fw = new FileWriter(file.getAbsoluteFile()); BufferedWriter bw = new BufferedWriter(fw); bw.write(content); bw.close(); System.out.println("Done"); } catch (IOException e) { e.printStackTrace(); } } }