GPU Cracking

Total Page:16

File Type:pdf, Size:1020Kb

GPU Cracking GPU Cracking: Setting up a Server written by Eric Gruber | April 15, 2013 Last week Karl Fosaaen described in his blog the various trials and tribulations we went through at a hardware level in building a dedicated GPU cracking server. This week I will be doing a complete walkthrough for installing all the software that we use on our box. This includes the operating system, video drivers, oclHashcat-plus, and John the Ripper. Because we have AMD video cards, the driver installation and compiling John the Ripper sections will be tailored for AMD, sorry Nvidia users. Installing the OS: For an operating system, Linux and Windows are going to be the way to go. For a headless server however, Linux is the best way to go. The only downside with Linux is that driver support among video cards, especially AMD, is somewhat lacking to its Windows counterpart. However, the good news is that both AMD and Nvidia have been increasing their support for Linux drivers in recent years. Any Linux distribution will do, but for our server, we opted for Ubuntu 12.10 64-Bit server edition to do the most minimal setup. Much of the information for the next few sections is from the hashcat wiki. To start off, download the Ubuntu 12.10 server edition ISO from Ubuntu. We don’t have a cd drive on our server, so we had to copy the ISO to a flash drive. YUMI and UNetbootin make this process painless on Windows and Linux, respectfully. Otherwise, the ISO can be burned to a disc. Boot up the Ubuntu image, choose your language, and select Install Ubuntu Server. Navigate through the installation options and select your preferences. For most people, the defaults should be sufficient. Then create your user when the dialog comes up. When the installation reaches the “Partition Disks” section, either manually set them up (if you know what you’re doing) or just use the “Guided – use entire disk” option. We choose not to use LVM on our box, but the option is up to you. After you are done partitioning your hard drive, write the changes to the disc. If you have an HTTP proxy, enter the information when the dialog appears. If not, then just continue. Next, select if you would like to have automatic updates enabled. We opted not to, but it’s entirely up to you. When the software selection appears, select OpenSSH server by navigating to it with the arrow keys and pressing spacebar to select the option. None of the other packages are required unless you need them. Press enter to install the software. When the installation is finished, install GRUB to the master boot record and reboot. You should now be booted into your new Ubuntu server! Setting Up Ubuntu: Before we install the video drivers, we have to setup our Ubuntu server with X11. This is because the AMD drivers require X11 to interact with video cards to obtain fan speeds and GPU temps, which are very important to know when cracking away. To begin, ssh into your server and update Ubuntu with the following command: sudo apt-get update && sudo apt-get upgrade After Ubuntu has updated, we will need to install a minimal X11 environment that our user can automatically login to when the server is rebooted. This is to ensure that the xserver will always be running and in turn allow continuous cracking without any hiccups. To keep it simple, a light weight window manager is recommend. Openbox, fluxbox, and blackbox are three simple light weight window managers that we can use. You are by no means restricted to a window manager. If you want gnome, xfce, or kde, those can be installed too. For this installation, we will install fluxbox with lightdm as the display manager. To install these, run the following command: sudo apt-get install fluxbox lightdm-gtk-greeter x11-utils This should install all the necessary packages for an X11 environment to run. Now that we have an X11 environment installed, we need to let applications from the console know which display we are using. To do this, we set the DISPLAY variable to our current display. The format for the DISPLAY variable is hostname:display. For a local instance, the hostname can be omitted. The default display is usually going to be 0. Run the command below to set your current display to 0. export DISPLAY=:0 Add the above command to your bashrc to make it persistent whenever your user logs in. I have run into many issues because I did not have this set. So make sure your bashrc is setup with your correct display location. Now that our X11 environment is setup, we can install the AMD drivers. Installing AMD Drivers: To begin installing the AMD drivers, we need to install some prerequisites. First install unzip with the following command sudo apt-get install unzip Next, we need to install the dependencies for fglrx, which is the proprietary Linux driver for AMD on Ubuntu’s repositories. The only difference between fglrx and AMD’s Catalyst drivers is that the latter is newer, but they both require the same dependencies. Run the following command to install the fglrx dependencies: sudo apt-get build-dep fglrx If the fglrx dependencies are not installed, the AMD driver installation will fail with this fglrx error: Now we can grab the latest version of the AMD Catalyst drivers from the AMD Catalyst™ Proprietary Display Driver page. The latest version at this time is 13.1. It should also be noted that oclHashCat-plus requires a specific version of Catalyst installed, which at this point is 13.1. So we’re good there. Fetch the AMD driver with wget and then unzip it: wget http://www2.ati.com/drivers/linux/amd-driver-installer-cataly st-13.1-linux-x86.x86_64.zip unzip amd-driver-installer-catalyst-13.1-linux-x86.x86_64.zip There should now be a .run file in the directory. Execute the file while running as root. sudo sh amd-driver-installer-catalyst-13.1-linux- x86.x86_64.run Select the default options on all the dialog boxes and let the driver install. After it is done, create a new xorg.conf by running: sudo amdconfig –adapter=all –initial -f Then we are going to setup our user to automatically login to fluxbox when the server boots up. Open the lightdm.conf file in /etc/lightdm/ as root and add the following lines: [SeatDefaults] greeter-session=lightdm-gtk-greeter user-session=fluxbox autologin-user=USER autologin-user-timeout=0 Reboot the server and your user should be automatically logged into fluxbox. When the server boots up run amdconfig –list-adapters and amdconfig –adapter=all –odgt to verify that all your cards and their temperatures can be seen. Now that the AMD drivers are installed, we can install our cracking software. Installing oclHashcat-plus Download the latest oclHashcat-plus. We will just wget the latest version to our box. wget http://hashcat.net/files/oclHashcat-plus-0.14.7z oclHashcat-plus comes in a 7z format. So we need to install p7zip to extract it. sudo apt-get install p7zip Run p7zip with the –d flag to extract a 7z file. p7zip -d oclHashcat-plus-0.14.7z Navigate to the newly extracted ocl directory and run one of the Example.sh scripts to test run the cracking process. If all goes well you should see your cards loading up and the hash getting cracked! If you do not see all your cards being recognized, make sure that your xorg.conf was created properly. Try running the amdconfig command above again to regenerate an xorg.conf. Next we will install John the Ripper with OpenCL support Installing John the Ripper Like oclHashcat-plus, John also supports cracking hashes on GPUs, but it must be compiled with the options to do so. Much of the information here is taken from the john GPU wiki (http://openwall.info/wiki/john/GPU). First download the Accelerated Parallel Processing SDK from AMD. 32 bit and 64 bit are supported, so make sure you download the correct one for your architecture. Copy the file to your server with scp or if you’re on Windows, WinSCP. Next, extract the APP SDK file. tar xvf AMD-APP-SDK-v2.8-lnx64.tgz Then run the Install-AMD-APP.sh as root. sudo ./Install-AMD-APP.sh Reboot the server. After the APP SDK has been installed,download the latest version of John. We will be using the jumbo version. wget http://www.openwall.com/john/g/john-1.7.9-jumbo-7.tar.gz Extract john with the following command: tar xvf john-1.7.9-jumbo-7.tar.gz Next, install the libssl-dev package from apt-get so that John compiles correctly. sudo apt-get install libssl-dev Navigate to the john src directory. Compile john with OpenCL for either 32 bit or 64 bit with make linux-x86-opencl and make linux-x86-64-opencl respectfully. John can also be compiled with CUDA support if you have Nvidia cards. The information on how to do that is located on their wiki. If you get openssl headers not found during compilation, install the libssl-dev package. Navigate back to the run directory and your newly compiled john binary should be there. You can test that John can use your GPUs by running a test command. Conclusion This is guide details one of many possible setups for a GPU cracking server.
Recommended publications
  • Lightweight Distros on Test
    GROUP TEST LIGHTWEIGHT DISTROS LIGHTWEIGHT DISTROS GROUP TEST Mayank Sharma is on the lookout for distros tailor made to infuse life into his ageing computers. On Test Lightweight distros here has always been a some text editing, and watch some Linux Lite demand for lightweight videos. These users don’t need URL www.linuxliteos.com Talternatives both for the latest multi-core machines VERSION 2.0 individual apps and for complete loaded with several gigabytes of DESKTOP Xfce distributions. But the recent advent RAM or even a dedicated graphics Does the second version of the distro of feature-rich resource-hungry card. However, chances are their does enough to justify its title? software has reinvigorated efforts hardware isn’t supported by the to put those old, otherwise obsolete latest kernel, which keeps dropping WattOS machines to good use. support for older hardware that is URL www.planetwatt.com For a long time the primary no longer in vogue, such as dial-up VERSION R8 migrators to Linux were people modems. Back in 2012, support DESKTOP LXDE, Mate, Openbox who had fallen prey to the easily for the i386 chip was dropped from Has switching the base distro from exploitable nature of proprietary the kernel and some distros, like Ubuntu to Debian made any difference? operating systems. Of late though CentOS, have gone one step ahead we’re getting a whole new set of and dropped support for the 32-bit SparkyLinux users who come along with their architecture entirely. healthy and functional computers URL www.sparkylinux.org that just can’t power the newer VERSION 3.5 New life DESKTOP LXDE, Mate, Xfce and others release of Windows.
    [Show full text]
  • Antix Xfce Recommended Specs
    Antix Xfce Recommended Specs Upbeat Leigh still disburden: twill and worthful Todd idolatrizes quite deuced but immobilizing her rabato attitudinizedcogently. Which her Kingstonfranc so centennially plasticizes so that pratingly Odin flashes that Oscar very assimilatesanticlockwise. her Algonquin? Denatured Pascale Menu is placed at the bottom of paperwork left panel and is difficult to browse. But i use out penetration testing machines as a lightweight linux distributions with the initial icons. Hence, and go with soft lower score in warmth of aesthetics. Linux on dedoimedo had the installation of useful alternative antix xfce recommended specs as this? Any recommendations from different pinboard question: the unique focus styles in antix xfce recommended specs of. Not recommended for! Colorful background round landscape scenes do we exist will this lightweight Linux distro. Dvd or gui, and specs as both are retired so, and a minimal resources? Please confirm your research because of recommended to name the xfce desktop file explorer will change the far right click to everything you could give you enjoy your linux live lite can see our antix xfce recommended specs and. It being uploaded file would not recommended to open multiple windows right people won, antix xfce recommended specs and specs and interested in! Based on the Debian stable, MX Linux has topped the distrowatch. Dedoimedo a usb. If you can be installed on this i have downloaded iso image, antix xfce recommended specs and specs as long way more adding ppas to setup further, it ever since. The xfce as a plain, antix can get some other than the inclusion, and specs to try the.
    [Show full text]
  • Volume 128 September, 2017
    Volume 128 September, 2017 Solving The Case Of The GIMP Tutorial: Awful Laptop Keyboard Exploring G'MIC Word Processing With LaTeX Tip Top Tips: Slow KDE (A Real World Example) Applications Open/Save Dialogs Workaround Playing Villagers And Repo Review: Heroes On PCLinuxOS Focus Writer PCLinuxOS Family Member Lumina Desktop Spotlight: plankton172 Customization 2017 Total Solar Eclipse PCLinuxOS Magazine Wows North America Page 1 Table Of Contents 3 From The Chief Editor's Desk ... 5 2017 Solar Eclipse Wows North America The PCLinuxOS name, logo and colors are the trademark of 9 ms_meme's Nook: PCLinuxOS Melody Texstar. 10 Solving The Case Of The The PCLinuxOS Magazine is a monthly online publication containing PCLinuxOS-related materials. It is published Awful Laptop Keyboard primarily for members of the PCLinuxOS community. The magazine staff is comprised of volunteers from the 13 Screenshot Showcase PCLinuxOS community. 14 Lumina Desktop Configuration 25 Screenshot Showcase Visit us online at http://www.pclosmag.com 26 PCLinuxOS Family Member Spotlight: This release was made possible by the following volunteers: plankton172 Chief Editor: Paul Arnote (parnote) Assistant Editor: Meemaw 27 Screenshot Showcase Artwork: Timeth, ms_meme, Meemaw Magazine Layout: Paul Arnote, Meemaw, ms_meme 28 GIMP Tutorial: Exploring G'MIC HTML Layout: YouCanToo 30 Screenshot Showcase Staff: 31 ms_meme's Nook: ms_meme phorneker Meemaw YouCanToo Everything's Gonna Be All Right Gary L. Ratliff, Sr. Pete Kelly Agent Smith Cg Boy 32 Word Processing With LaTeX daiashi Smileeb (A Real World Example) 45 Repo Review: Focus Writer Contributors: 46 Screenshot Showcase dm+ 47 Playing Villagers and Heroes in PCLinuxOS 50 PCLinuxOS Recipe Corner 51 Screenshot Showcase The PCLinuxOS Magazine is released under the Creative Commons Attribution-NonCommercial-Share-Alike 3.0 52 Tip Top Tips: Slow KDE Application Unported license.
    [Show full text]
  • Practical Ports
    1 of 3 PRACTICAL Want Some Toppings on Your Desk? BY BENEDICT REUSCHLING This column covers ports and packages for FreeBSD that are useful in some way, peculiar, or otherwise good to know about. Ports extend the base OS functionality and make sure you get something done or, simply, put a smile on your face. Come along for the ride, maybe you’ll find something new. ears ago, when I began my Unix journey as a university freshman, installers were a lot simpler. Getting to a desktop at the end was not the default. In fact, I struggled a lot at the beginning to get one going, and when I did, the computer I had back then did not have enough power to run it. So, I stayed in the terminal for a long time. This did Ynot turn me away, as I could already do a lot more than on DOS. At least I had misc/mc to get me a little bit more than white text on a black background. Later, I did get a working desktop running on X11R6. Nowadays, the installers are much bet- ter and often default to a graphical point-and-click interface. But when that happened, I was switching to FreeBSD where a curses-like installer is still the default. My hard-learned tricks in the non-GUI world proved useful. The FreeBSD handbook had me starting up a working desk- top much faster than my stunts on other distributions. I still use a minimal desktop environment because, most of the time, I need to open a terminal to be productive.
    [Show full text]
  • Editors Desk ...2
    The content of this magazine is released under the Creative Commons Attribution-Share Alike 3.0 Unported license. For more information visit user http://creativecommons.org/licenses/by-sa/3.0 TM Issue #1 - April 2009 EDITORS DESK ................................ 2 COMMUNITY NEWS ........................ 3 CHOOSING A DE/WM ...................... 4 HARDENING SSH IN 60 SECONDS .................................... 6 GAMERS CORNER .......................... 9 TIPS & TRICKS ............................... 10 PIMP MY ARCH .............................. 11 SOFTWARE REVIEW ......................12 Q&A ..................................................14 EEDDIITTOORRSS DDEESSKK Welcome to the first issue of Arch User Magazine! ARCH USER STAFF Daniel Griffiths (Ghost1227) ........... Editor ello, and thank you for picking up issue #1 of Arch User Magazine! While David Crouse (Crouse) .......... Contributor the vast majority of you probably know me (or have at least seen me H around the forums), I feel that I should take a moment to introduce myself. My name is Daniel Griffiths, and I am a 26-year-old independent contractor in Delaware, US. Throughout my life, I have wandered through various UNIX/Linux systems including (but not limited to) MINIX, RedHat, Mandrake, Slackware, Gentoo, Debian, and even two home made distributions based on Linux From Scratch. I finally found Arch in 2007 and instantly fell in love with its elegant simplicity. Some of our more attentive readers may note that Arch already has a monthly newsletter. With the existence of the aformentioned newsletter, what is the point of adding another news medium to the mix? Fear not, newsletter readers, I have no intention of letting Arch User Magazine take the place of the newsletter. In fact, Arch User Magazine and the newsletter are intended to fill two very different needs in the Arch community.
    [Show full text]
  • Debian 1 Debian
    Debian 1 Debian Debian Part of the Unix-like family Debian 7.0 (Wheezy) with GNOME 3 Company / developer Debian Project Working state Current Source model Open-source Initial release September 15, 1993 [1] Latest release 7.5 (Wheezy) (April 26, 2014) [±] [2] Latest preview 8.0 (Jessie) (perpetual beta) [±] Available in 73 languages Update method APT (several front-ends available) Package manager dpkg Supported platforms IA-32, x86-64, PowerPC, SPARC, ARM, MIPS, S390 Kernel type Monolithic: Linux, kFreeBSD Micro: Hurd (unofficial) Userland GNU Default user interface GNOME License Free software (mainly GPL). Proprietary software in a non-default area. [3] Official website www.debian.org Debian (/ˈdɛbiən/) is an operating system composed of free software mostly carrying the GNU General Public License, and developed by an Internet collaboration of volunteers aligned with the Debian Project. It is one of the most popular Linux distributions for personal computers and network servers, and has been used as a base for other Linux distributions. Debian 2 Debian was announced in 1993 by Ian Murdock, and the first stable release was made in 1996. The development is carried out by a team of volunteers guided by a project leader and three foundational documents. New distributions are updated continually and the next candidate is released after a time-based freeze. As one of the earliest distributions in Linux's history, Debian was envisioned to be developed openly in the spirit of Linux and GNU. This vision drew the attention and support of the Free Software Foundation, who sponsored the project for the first part of its life.
    [Show full text]
  • COMPLETE GUIDE to INSTALL UBUNTU LINUX with OPENBOX Ubuntuopenbox.Com/Udemy
    UbuntuOpenbox.com Copyright © 2016 by Dat H. Nguyen UDEMY COURSE MATERIAL COMPLETE GUIDE TO INSTALL UBUNTU LINUX WITH OPENBOX UbuntuOpenbox.com/udemy Section 3 – Install Ubuntu Operating System 1. Repositories: A repository is a server storing packages that are suitable to be installed right away (packages as well as all of their dependencies) /etc/apt/source.list file will have a list of repository addresses. *PPA: A Personal Package Archives (PPA) is a repository maintained by an individual or an independent group; as oppose to the official repository maintained by Ubuntu. 2. Update apt information (from source.list file) sudo apt-get update It will go to the addresses listed in the /apt/etc/source.list file and update the information about what are on there (which packages are on there) and what have been changed (what the current packages’ versions are). You need to execute this command whenever you want to install any package. 3. Install packages sudo apt-get install [packages' name] For example: sudo apt-get install firefox openbox will install both firefox and openbox at the same time. 4. Remove packages sudo apt-get remove firefox * remove packages and all their configuration file. sudo apt-get remove --purge firefox 5. nano to edit text file sudo nano /directory/to/text/file Navigate through the text file using up/down/left/right keys. * shortcut keys: “Ctrl + X” to exit nano, “Y” to save and “N” to abort the saving. Section 4 – Install Openbox And Configure It Last updated in February, 2016 1 of 7 UbuntuOpenbox.com Copyright © 2016 by Dat H.
    [Show full text]
  • Lumina-DE: Redefining the Desktop Environment for Modern Hardware
    Lumina-DE: Redefining the Desktop Environment for Modern Hardware Author: Ken Moore [email protected] PC-BSD/iXsystems Lumina Desktop source repository: https://github.com/pcbsd/lumina Date: Nov 2014 Abstract: As computers continue to advance into every aspect of our daily lives through the pervasiveness of cell phones and tablets, the traditional “desktop computer” is gradually being shifted to a smaller subset of the total systems in use. This presents a problem for open source operating systems, as the available open source graphical environments are increasingly designed for systems with powerful hardware or traditional mouse/keyboard inputs – resulting in a much lower percentage of devices that are physically capable of utilitizing the OS. The open-source Lumina desktop environment is designed to solve these problems by meeting its goals of being a highly flexible and scalable interface that runs with relatively little hardware requirements. The project also provides a simple framework for integrating OS-specific functionality directly into the interface for ease-of-use without causing conflict with the underlying system or affecting portability. This paper will take a top-level view of the Lumina desktop project, breaking it down to its components, explaining the framework and methodology, and listing the work that is still yet to be completed to achieve its goals. Please note: for all intents and purposes, there is no distinction between laptops and box-based desktop computers when it comes to the capabilities and distinctions of a graphical interface, so for the purposes of this paper they will both be considered “desktop” systems. The Problem: Smartphones, tablets, laptops and desktop computers all utilitize graphical interfaces to provide the user access to the capabilities of the device, but laptops and desktop computers are the only ones with fully open source desktop environments available.
    [Show full text]
  • Customise the Lxde Desktop
    TUTORIAL LXDE CUSTOMISE THE TUTORIAL LXDE DESKTOP Get a fantastic desktop environment without BEN EVERARD overloading your system’s hardware. he Lightweight X11 Desktop Environment – or LXDE as it’s more commonly known – is Tpopular for its ease of use and low use of system resources. It’s the desktop of choice for the Raspberry Pi, and is an excellent option for replacing Windows XP on older machines. However, in its default form it is a little ugly. Everything works as you expect it to, but it doesn’t show off the Linux desktop experience as well as it could. Fortunately, it’s quite easy to whip the default configuration into something that looks good and is a little more user friendly. The standard LXDE desktop: it’s functional and easy to A desktop environment has a large stack of things use, but with a little effort we can do much better. that are really just images. These are the icons, the bits that make up the widgets (such as buttons), and Icons and themes take a little more to change, but the desktop background. These can all be easily are still quite straightforward, since there’s a tool swapped around provided you have new images to go called LXAppearance to help. First you need to in their place. download the theme. We started with the Elementary icons at www.gnome-look.org/content/show.php/ Get new wallpaper elementary+Icons?content=73439, though most icon There’s no one single place for LXDE themes, but themes should work. there is for Gnome, and they’re mostly compatible.
    [Show full text]
  • MX-19.2 Users Manual
    MX-19.2 Users Manual v. 20200801 manual AT mxlinux DOT org Ctrl-F = Search this Manual Ctrl+Home = Return to top Table of Contents 1 Introduction...................................................................................................................................4 1.1 About MX Linux................................................................................................................4 1.2 About this Manual..............................................................................................................4 1.3 System requirements..........................................................................................................5 1.4 Support and EOL................................................................................................................6 1.5 Bugs, issues and requests...................................................................................................6 1.6 Migration............................................................................................................................7 1.7 Our positions......................................................................................................................8 1.8 Notes for Translators.............................................................................................................8 2 Installation...................................................................................................................................10 2.1 Introduction......................................................................................................................10
    [Show full text]
  • What Is Linux?
    What is Linux? ● A computer operating system (OS). ● Based on the UNIX OS (a major server OS). ● Free and open source software (FOSS). ● Available free of cost. ● Runs on nearly every hardware platform: – mainframes, PCs, cell phones, embedded processors ● Heavily used for servers. ● Heavily used in devices with embedded processors. CS Day 2013: Linux Introduction © Norman Carver Computer Science Dept. SIUC Linux?? ● “But I have never heard of Linux, so it must not be very commonly used.” ● “Nobody uses Linux.” ● “Everyone runs Windows.” ● “Linux is too hard for anyone but computer scientists to use.” ● “There's no malware for Linux because Linux is so unimportant.” CS Day 2013: Linux Introduction © Norman Carver Computer Science Dept. SIUC Have You Used Linux? ● Desktop OS? – many distributions: Ubuntu, Red Hat, etc. CS Day 2013: Linux Introduction © Norman Carver Computer Science Dept. SIUC Have You Used Linux? ● Desktop OS? – many distributions: Ubuntu, Red Hat, etc. CS Day 2013: Linux Introduction © Norman Carver Computer Science Dept. SIUC Have You Used Linux? ● Cell phones or tablets or netbooks? – Android and Chrome OS are Linux based CS Day 2013: Linux Introduction © Norman Carver Computer Science Dept. SIUC Have You Used Linux? ● Routers? – many routers and other network devices run Linux – projects like DD-WRT are based on Linux CS Day 2013: Linux Introduction © Norman Carver Computer Science Dept. SIUC Have You Used Linux? ● NAS (Network Attached Storage) devices? – most run Linux CS Day 2013: Linux Introduction © Norman Carver Computer Science Dept. SIUC Have You Used Linux? ● Multimedia devices? – many run Linux CS Day 2013: Linux Introduction © Norman Carver Computer Science Dept.
    [Show full text]
  • Operating Systems II
    Operating Systems II Vimalkumar Velayudhan April 11, 2007 Vimalkumar Velayudhan Operating Systems II Linux distribution A Linux distribution is = The Linux kernel(OS) + Application software Popular ones are Company/Organization Commercial Version Open Source Version Redhat Redhat Enterprise Linux Fedora Core Novell SuSE Linux Enterprise openSuSE Debian - Debian GNU/Linux Mandriva Mandriva Corporate Desktop/Server Mandriva Linux Vimalkumar Velayudhan Operating Systems II Which One to Choose? If one requires technical support, the commercial versions are the best option Open Source versions are freely available for download and are often distributed with IT magazines like Linux For You1 and Digit2 For a new Linux user my recommendations are openSuSE or Ubuntu Linux 1http://www.linuxforu.com 2http://www.thinkdigit.com Vimalkumar Velayudhan Operating Systems II Installation Basic requirements Intel pentium systems I, II, III or IV (can even run on older ones) Minimum 256 MB RAM for a Graphic User Interface (KDE or GNOME) A hard disk - 5 - 10GB hard disk space Notes Linux can be installed along with Windows systems (Multiboot) Requires partitioning of the hard disk and formatting to ext2 or ext3 lesystems Linux can also read and write data on the windows partitions Vimalkumar Velayudhan Operating Systems II Live Linux Distributions Also known as Live CD's3 Does not require any installation onto hard disk Can run directly from the CD Can be used for learning and to try out new distributions Atleast 256 - 512MB RAM is required Some examples include Ubuntu, Knoppix and Slax Live CD's with Bioinformatics software pre-installed are also available. Examples include VLinux4, BioKnoppix, Vigyaan CD.
    [Show full text]