Amitools Release 0.6.0

Total Page:16

File Type:pdf, Size:1020Kb

Amitools Release 0.6.0 amitools Release 0.6.0 Jul 09, 2021 Contents 1 xdftool 1 1.1 Introduction...............................................1 1.2 Usage...................................................1 1.3 Commands................................................2 2 xdfscan 13 2.1 Introduction............................................... 13 2.2 Usage................................................... 13 2.3 Scanner Output.............................................. 14 3 rdbtool 15 3.1 Introduction............................................... 15 3.2 Usage................................................... 15 3.3 Commands................................................ 16 4 romtool 25 4.1 Features.................................................. 25 4.2 General Commands........................................... 25 4.3 Inspect a ROM.............................................. 26 4.4 Split a ROM into modules........................................ 28 4.5 Build a new ROM............................................ 30 5 Tools 33 6 Project Links 35 i ii CHAPTER 1 xdftool the universal Amiga disk image file tool 1.1 Introduction The xdftool is a tool from the amitools tool set that allows to read disk images intended for Amiga emulators like ADF or HDF files and display or extract their contents. Furthermore, you can • create new ADF or HDF images • copy files from the image • copy your own files to it • master own images • repack existing images • work on partitions inside RDISK/RDB hdf images or on real disks 1.2 Usage xdftool is a command line utility that is always called with an image file path name as the first argument and with one or more commands working on this image: > xdftool <image.adf|image.hdf> <command> [option] You can issue multiple commands on a single image by concatenating them with a plus character: > xdftool <image.[ah]df> <command1> [options1] + <command2> [options2] ... For Example:: 1 amitools, Release 0.6.0 > xdftool test.adf format ``My Image`` + makedir c + write myfile c 1.3 Commands This section describes the commands available for xdftool. You can always issue a help command to see all commands: > xdftool test.adf help 1.3.1 Inspect Image list - Display the list of files list [<ami_path>] [all] [info] [detail] This command lists the given directory in the image. The info option appends some statistics information at the end of the list including used blocks, bytes and file bytes. Each file or directory is display with name, size, protection flags, modification date and comment (if available). The detail options replaces the comment with details on the file‘‘s storage including number of data blocks and file system blocks. The all option shows a directory recursively, i.e. also its contained directories. If no <ami_path> is given then the full contents of the volume contained in the image will be listed. This implies the all and info options. Example:: > xdftool test.adf list ; show whole image > xdftool test.adf list / ; same command > xdftool test.adf list c all ; show 'C' directory on image type - Display the contents of a file type <ami_path> The contents of the specified Amiga file will be written to the standard output. This is useful to quickly see the contents of a file in an image. Example: > xdftool wb310.adf type s/startup-sequence > xdftool pics.adf type mycool.ilbm | ilbmtoppm > img.ppm info - Disk Image Information info 2 Chapter 1. xdftool amitools, Release 0.6.0 Display information on the disk image. This will display the number of blocks totally available in the disk image, the number of used and free blocks. Additionally, the corresponding byte values are printed. Example: > xdftool wb310.adf info Blocks: total: 1760 used: 1698 free: 62 Bytes: total: 901120 used: 869376 free: 31744 read - Read file data or directory tree from an Image read <ami_path> [sys_path] If <ami_path> is a file then the file contents will be read and copied to your hosts file system. If no <sys_path> is given then the Amiga file will be written to the host’s current directory with the base name of the <ami_path>. If the <sys_path> is given and is a directory then the file will be written there. Otherwise the <syspath> is the file name for the host file. If the <ami_path> is a directory then the full directory structure including files and sub directories will be transferred to the host’s file system. If no <sys_path> is given then the directory tree will be created in host’s current directory. If <sys_path> is available then the directory will be created in this path. Otherwise the directory will be named as <sys_path>. Example: > xdftool wb310.adf read c/dir ; copy file 'dir' to host's current dir > xdftool wb310.adf read c/dir . ; same command > xdftool wb310.adf read c/dir a ; copy file 'dir' to host file 'a' > xdftool wb310.adf read devs ; copy 'devs' dir tree to current dir > xdftool wb310.adf read devs . ; same command > xdftool wb310.adf read devs b ; copy dir tree 'devs' to host dir 'b' blkdev - Show information on the underlying block device blkdev Displays the number of cylinders, heads, and sectors available in the image‘‘s block device open - Open existing image for processing open [part=<name|number>] [chs=<cyls>,<heads>,<secs>] [h=<heads>] [s=<secs>] This command opens an existing image for further processing. This is typically the first command in a command list as it allows all other commands to work on the selected file system. Most often you do not need to specify this command as it will be automatically prepended if its missing. In this case all parameters for opening the input disk image are determined automatically. If the parameters can’t be detected or you don’t want to use the detected values then you specify the open command explicetly. The part option is useful if you access a RDISK or RDB hdf image. In this case the image holds a full disk with multiple partitions. xdftool can only work on a single partition or file system and thus you must select which 1.3. Commands 3 amitools, Release 0.6.0 partition to work on. You can either give a number selecting the n-th partition (startin with 0, of course!) or give the device name associated with this partition (e.g. dh0) without the colon. The chs or h and s options are useful for HDF images without RDB to describe the disk geometry. xdftool has an algorithm to determine the disk geometry automatically from the byte size, but this approach might fail for some setups. In this case you can either fully specify the disk geometry with the chs option or guide the detection algorithm by giving a sector s and/or heads h value. Example: > xdftool mydisk.rdisk open part=dh1 + list ; open partition 'dh1:' in image > xdftool disk.hdf open chs=10,1,32 + list ; open image with given geometry > xdftool disk.hdf open h=5 s=16 + list ; guide auto detection 1.3.2 Edit Image create - Create a new image file create [ size=<size> [h=<heads>] [s=<secs>] | chs=<cyls>,<heads>,<secs> ] With this command you can create a new disk image file. If the disk image format has a fixed size (e.g. ADF) then you do not need to specify extra paramters to this command. For a hard disk image (HDF) file you must either give the total size in bytes or the disk geometry in cylinders, heads, and sectors. If you specify only the size then the disk geometry will be automatically derived. You can use the optional paramters h and/or s to fixate parts of the disk geometry and guide the detection of the disk layout. Please note that the create command only creates an empty disk image that is not formatted yet. You will need the format command to create a valid empty file system on it. You can’t create a RDB/RDISK image with this command. Use the rdbtool for this task. Example: > xdftool new.hdf create size=10Mi ; create an empty HDF image with 10Mi > xdftool new.adf create ; create an empty floppy disk image > xdftool new.hdf create chs=10,1,32 ; create disk with given geometry > xdftool new.hdf create size=10Mi h=2 ; force 2 heads format - Format an existing or create a new disk image format <volume_name> [dostype] [<create options>] A new and blank OFS/FFS file system will be created on the given image file. Warning: All data previously stored there will be lost!!! The <volume_name> gives the name of the new file system. The optional dos_type gives the file system variant. Its the base type ofs or ffs combined with variant flags added with a plus + (and no spaces). Or you give a DOSx type of the file system in the range of DOS0 and DOS7. The following variant flags are recognized: • intl for international mode. 4 Chapter 1. xdftool amitools, Release 0.6.0 • dc or dircache for directory caching • ln or longname for long file name support If the disk image file you specify does not exist on disk yet then an implicit create command will be executed first. If the file already exists you must use the create command if you want to create a resized image. Example: > xdftool empty.adf format 'My Empty Disk' ; create a blank OFS disk image > xdftool empty.hdf format Work size=10M ; create a 10M hdf image > xdftool empty.hdf format Work chs=640,1,32 ; create with given geometry > xdftool empty.hdf format Work size=10M ffs ; create an FFS hdf image > xdftool empty.hdf create size=10M + format Work ffs ; same result > xdftool empty.hdf format Work size=10M ffs+ln ; create with long name support boot - Alter the boot block boot show [hex] [asm] boot read <file> boot write <file> boot install [boot1x] boot clear This command allows to inspect and modify the boot block of a disk. The show command displays the contents of the boot block.
Recommended publications
  • Metadefender Core V4.17.3
    MetaDefender Core v4.17.3 © 2020 OPSWAT, Inc. All rights reserved. OPSWAT®, MetadefenderTM and the OPSWAT logo are trademarks of OPSWAT, Inc. All other trademarks, trade names, service marks, service names, and images mentioned and/or used herein belong to their respective owners. Table of Contents About This Guide 13 Key Features of MetaDefender Core 14 1. Quick Start with MetaDefender Core 15 1.1. Installation 15 Operating system invariant initial steps 15 Basic setup 16 1.1.1. Configuration wizard 16 1.2. License Activation 21 1.3. Process Files with MetaDefender Core 21 2. Installing or Upgrading MetaDefender Core 22 2.1. Recommended System Configuration 22 Microsoft Windows Deployments 22 Unix Based Deployments 24 Data Retention 26 Custom Engines 27 Browser Requirements for the Metadefender Core Management Console 27 2.2. Installing MetaDefender 27 Installation 27 Installation notes 27 2.2.1. Installing Metadefender Core using command line 28 2.2.2. Installing Metadefender Core using the Install Wizard 31 2.3. Upgrading MetaDefender Core 31 Upgrading from MetaDefender Core 3.x 31 Upgrading from MetaDefender Core 4.x 31 2.4. MetaDefender Core Licensing 32 2.4.1. Activating Metadefender Licenses 32 2.4.2. Checking Your Metadefender Core License 37 2.5. Performance and Load Estimation 38 What to know before reading the results: Some factors that affect performance 38 How test results are calculated 39 Test Reports 39 Performance Report - Multi-Scanning On Linux 39 Performance Report - Multi-Scanning On Windows 43 2.6. Special installation options 46 Use RAMDISK for the tempdirectory 46 3.
    [Show full text]
  • A VALIANT LITTLE TERMINAL a VLT User's Manual
    SLAC-370tREV.4) A VALIANT LITTLE TERMINAL A VLT User’s Manual Amanda Weinstein SLAC-Report-370cREV.4) Revised August 1992 Prepared for the Department of Energy under contract number DE-AC03-76SF00515 I ? This document and the material and data contained therein, was devel- oped under sponsorship of the United States Government. Neither the United States nor the Department of Energy, nor the Leland Stanford Junior University, nor their employees, nor their respective contractors, subcontractors, or their employees, makes any warranty, express or im- plied, or assumes any liability or responsibility for accuracy, complete- ness or usefulness of any information, apparatus, product or process disclosed, or represents that its use will not infringe privately-owned rights. Mention of any product, its manufacturer, or suppliers shall not, nor is it intended to, imply approval, disapproval, or fitness for any particular use. A royalty-free, nonexclusive right to use and dis- seminate same for any purpose whatsoever, is expressly reserved to the United States and the University. I ;ft,;70( REV.4) Pi A VALIANT LITTLE TERMINAL A VLT User’s Manual Amanda Weinstein Stanford Linear Accelerator Center Stanford University, Stanford, CA 94309 August 1990 Revised December 1990 July 1991 September 1992 Prepared for the Department of Energy under contract number DE-AC03-76SF00515 Printed in the United States of America. Available from the National Technical Information Service, U.S. Department of Commerce, 5285 Port Royal Road, Springfield, Virginia 22161 \// \- A Valiant Little Terminal A VLT User’s Manual bY Amanda Weinstein Fourth Edition-August 1992 Trademarks and Copyrights IBM and VM/CMS are trademarks of International Business Machines.
    [Show full text]
  • Apov Issue 4 Regulars
    issue 4 - june 2010 - an abime.net publication the amiga dedicated to amIga poInt of vIew AMIGA reviews w news tips w charts apov issue 4 regulars 8 editorial 10 news 14 who are we? 116 charts 117 letters 119 the back page reviews 16 leander 18 dragon's breath 22 star trek: 25th anniversary 26 operation wolf 28 cabal 30 cavitas 32 pinball fantasies 36 akira 38 the king of chicago ap o 40 wwf wrestlemania v 4 42 pd games 44 round up 5 features 50 in your face The first person shooter may not be the first genre that comes to mind when you think of the Amiga, but it's seen plenty of them. Read about every last one in gory detail. “A superimposed map is very useful to give an overview of the levels.” 68 emulation station There are literally thousands of games for the Amiga. Not enough for you? Then fire up an emulator and choose from games for loads of other systems. Wise guy. “More control options than you could shake a joypad at and a large number of memory mappers.” 78 sensi and sensibility Best football game for the Amiga? We'd say so. Read our guide to the myriad versions of Sensi. “The Beckhams had long lived in their estate, in the opulence which their eminence afforded them.” wham into the eagles nest 103 If you're going to storm a castle full of Nazis you're going to need a plan. colorado 110 Up a creek without a paddle? Read these tips and it'll be smooth sailing.
    [Show full text]
  • Hollywood 7.1 the Cross-Platform Multimedia Application Layer
    Hollywood 7.1 The Cross-Platform Multimedia Application Layer Andreas Falkenhahn i Table of Contents 1 General information::::::::::::::::::::::::::::: 1 1.1 Introduction :::::::::::::::::::::::::::::::::::::::::::::::::::: 1 1.2 Philosophy ::::::::::::::::::::::::::::::::::::::::::::::::::::: 4 1.3 Terms and conditions ::::::::::::::::::::::::::::::::::::::::::: 4 1.4 Requirements::::::::::::::::::::::::::::::::::::::::::::::::::: 6 1.5 Credits ::::::::::::::::::::::::::::::::::::::::::::::::::::::::: 7 1.6 Forum and mailing list:::::::::::::::::::::::::::::::::::::::::: 8 1.7 Contact :::::::::::::::::::::::::::::::::::::::::::::::::::::::: 8 2 Getting started :::::::::::::::::::::::::::::::::: 9 2.1 Overview ::::::::::::::::::::::::::::::::::::::::::::::::::::::: 9 2.2 The GUI :::::::::::::::::::::::::::::::::::::::::::::::::::::: 10 2.3 Windows IDE ::::::::::::::::::::::::::::::::::::::::::::::::: 15 2.4 Mobile platforms :::::::::::::::::::::::::::::::::::::::::::::: 22 3 Console usage :::::::::::::::::::::::::::::::::: 29 3.1 Console mode ::::::::::::::::::::::::::::::::::::::::::::::::: 29 3.2 Console arguments :::::::::::::::::::::::::::::::::::::::::::: 29 3.3 Console emulation ::::::::::::::::::::::::::::::::::::::::::::: 46 4 Compiler and linker:::::::::::::::::::::::::::: 49 4.1 Compiling executables ::::::::::::::::::::::::::::::::::::::::: 49 4.2 Compiling applets ::::::::::::::::::::::::::::::::::::::::::::: 50 4.3 Linking data files :::::::::::::::::::::::::::::::::::::::::::::: 50 4.4 Linking fonts ::::::::::::::::::::::::::::::::::::::::::::::::::
    [Show full text]
  • Internship Report
    Internship Report INTEGRATING A JAVASCRIPT ENGINE INTO A LIGHT WEB BROWSER Internship tutor Polytech Paris UPMC tutor Yann-Gaël Guéhéneuc Yann Douze Associate Professor Associate Professor of Electronics Ptidej Team Université Pierre et Marie Curie Niverthan PANCHALINGAM 2018 PROMOTION AT POLYTECH PARIS UPMC | 4TH YEAR IN EMBEDDED SYSTEMS DEPARTMENT INTERNSHIP REPORT 2017 Table des matières Acknowledgements .................................................................................................................................3 Polytechnique Montréal ..........................................................................................................................3 I. Introduction ..........................................................................................................................................3 1. Mission .............................................................................................................................................3 2. AmigaOS, Amiga Forever & Amikit ...................................................................................................4 3. NetSurf ..............................................................................................................................................4 4. NetScript & Cygwin ...........................................................................................................................5 5. DukTape ............................................................................................................................................6
    [Show full text]
  • Download Issue 14
    IssueBiggest Ever! £4.00 Issue 14, Spring 2003 8.00Euro Quake 2 Read our comprehensive review of Hyperions’s latest port. Hollywood Take a seat and enjoy our full review of this exciting new multimedia blockbuster! Contents Features The Show Must Go On! Editorial Welcome to another issue of Candy for SEAL’s Mick Sutton gives us an insight into the production of WoASE. Total Amiga, as you will no-doubt Issue 14 usergroups can afford. To give balance between space for the have noticed this issue is rather ack in the good old days we you an idea a venue capable of punters and giving the exhibitors late, which is a pity as we had Candy Factory is a graphics A built-in character generator had World of Amiga shows holding between 300 and 500 the stand space they require improved our punctuality over OS4 B the last few issues. application designed for allows you to add effects to Spring 2002 put on every year, usually at a people can cost anywhere from (some companies get a real bee high profile site (Wembley) and £500 to £1000 (outside London) in their bonnet about where they Unfortunately the main reason making logos and other text in any font without leaving texture again based on the all well attended. Everybody for a day. are situated). The floorplan goes behind the delay was that the graphics with high quality 3D the program. You can also load Contents wanted to be there and be seen, through many revisions before SCSI controller and PPC on my textured effects quickly and shapes (for example a logo) light source.
    [Show full text]
  • Catweasel User Manual
    Catweasel User Manual last update: 05/11/2008 - Catweasel MK3, MK4 and MK4plus software update V 2.6.0.0 for the most recent version of this document, please check http://www.icomp.de Contents Hardware Installation...........................................................................................................................3 preparing the card............................................................................................................................3 Audio-connector..............................................................................................................................5 Connecting an Amiga Keyboard......................................................................................................5 Connecting disk drives.....................................................................................................................6 choosing a Drive .............................................................................................................................6 using 40 Track drives.......................................................................................................................7 using 8” Disk Drives........................................................................................................................7 reading 100tpi Disks........................................................................................................................8 using 100tpi Disk Drives.................................................................................................................8
    [Show full text]
  • Programs for Visual Psychophysics on the Amiga: a Tutorial
    Behavior Research Methods. Instruments. & Computers 1989, 21 (5), 548-563 Programs for visual psychophysics on the Amiga: A tutorial STUART ANSTIS York University, North York, Ontario, Canada and MICHAEL PARADISO Smith-Kettlewell Eye Research Foundation, San Francisco, California A typical psychophysical experiment presents a sequence of visual stimuli to an observer and collects and stores the responses for later analysis. Although computers can speed up this process, paint programs that allow one to prepare visual stimuli without programming cannot read responses from the mouse or keyboard, whereas BASIC and other programming languages that allow one to collect and store observer's responses unfortunately cannot handle prepainted pic­ tures. A new programming language called The Director provides the best of both worlds. Its BASIC-like commands can manipulate prepainted pictures, read responses made with the mouse and keyboard, and save these on disk for later analysis. A dozen sample programs are provided. Psychophysics is much easier with the aid of graphics Arts). Methods for using DPaint in visual psychophysics on a home computer (Cavanagh & Anstis, 1980), and the have been described in an earlier article (Anstis, 1986). Commodore Amiga is one of the best home computers The latest version (DPaint ill) also permits page-flipping for colored graphics. The Amiga has some advantages animations. over the more expensive Macintosh II, in that it can hold A new program greatly increases the usefulness of the many more pictures in memory to enable page flipping. Amiga. This is The Director (The Right Answers Group, The Amiga has only 16 gray levels (4 bits per gun per Box 3699, Torrance, CA 90510, (213)-325-1311).
    [Show full text]
  • Vince Pfeifer Amiga Optomists SDK Overview Amiga Resouces SDK
    Vince Pfeifer Amiga Optomists dAmiga Details SDK Overview Making the Digital Environment Talk Sheep SDK Installation Amiga Resouces Enter the Competition Who Made This? A discussion with Vince Pfeifer, Vice President of Operations, Amiga, Inc. Vince Pfeifer saw a problem. "The software industry would hire MBAs and put them in charge of products. Those people would make really poor decisions without truly understanding how users use prod- ucts." It's an observation that would shape his career. Pfeifer considers a position as Senior Product Manager with Symantec around 1990 as the start of the bulk of his computer software experience. After a stint with Fifth Generation Systems, a company acquired by Semantec, Pfeifer switched to ConnectSoft Corporation, then to reference specification came to fruition, I stepped aside Exodus, Inc., a spin-off from ConnectSoft. from that." More recently, he's been working heavily with Gary Peake to build the development support organization, Confused? Don't be. Though companies and people move and taken on building a merchandising group "which I've quickly in the software business, Pfeifer's focus has had to step heavily into just because it's a brand new remained stable throughout. "I have a history of being organization," he says. able to step into companies where they have problems releasing products and getting them released," he says. "What's keeping us busy now is planning for two years And his record attests that claim: From the Product out." Which is more in line with Pfeifers core strengths Management position with Exodus, Pfeifer moved to and goals.
    [Show full text]
  • Évaluation De L'ordinateur Amiga
    ÉVALUATION DE L'ORDINATEUR AMIGA 1 1 MINISTÈP,E DES TRANSPORTS CENTRE DE DOCUMENTATION 1410, RUE STANLEY, 8ièrne ÉTAGE MONTRÉAL, QC. L1A1P9 CA NQ Gouvernement du Québec TR Ministère des Transports TPM Direction générale du transport DTTP des personnes et des marchandises 140 Gouvernement du Québec FICHE ANALYTIQUE Ministère DE RAPPORT DI des Transports N' du rapport liansports Ouebec I Tare et sous-litre du rapport RTQ-89-13 Evaluation de l'ordinateur_Amiga Il Rapport d étape D Ar, mois Jour Rapport final Di I 8, 91 0, 41 2 8 N° du contrat j _______ du rapport Date du début d étude Date de fin d étude iranÉ_Ross et François_Mongrain I 1 1 1 Coût de letude I Elude ou recherche realisée par (nom et adresse de 'organisme) Etude ou recherche financée par (nom et adresse de I organisme) Service des s ystèmes d"information I 1410, rue Stanley, 11 ième étage Direction générale du transport I Montréal, Québec des personnes et des marchandises H3A 1P8 'But de I etude recherche et renseignements supplementaves I Faire l'évaluation des possibilités offertes par le micro-ordinateur Amiga I dans l'environnement de la D.G.T.P.M. 'g esume du rapport Ce document résume le contexte de l'infographie et de la micro-informatique à la Direction générale et identifie l'apport de l'ordinateur AMIGA dans son environnement. L'achat de ce mimicro-ordinateur, autorisé par la Direction des systèmes de gestion a pour but d'évaluerlue r sa performance au niveau du traitement d'images, d'animation, de production vidéo, et de communication avec l'ordinateur central et les autres ordinateurs de la Direction générale.
    [Show full text]
  • New Commodore Free Template
    Issue 56 2011 Free Commodore Computer Magazine In TEXT, PDF, SEQ, D64 and HTML And Ebook formats www.commodorefree.com www.commodorefree.com CONTENTS EDITORIAL PAGE 3 NEWS PAGE 5 ◦Theatre of War II: The Pacific for the VIC20 ◦Amiga It's a Knockout! 2011/12 NEWS PAGE 7 ◦Plus/4 Gets a SID Chip ◦Chameleon Special From AmigaKit NEWS PAGE 8 ◦Out Space Released ◦Commodore eBook Now Available ◦Cinnamon Writer Updated NEWS PAGE 9 ◦P1565 Project Updated ◦Retrogaming Times Monthly #90 Released NEWS PAGE 10 ◦CBM Command Updated ◦Slide Released for the Commodore 64 ◦CrossCrabTris 1.0 Released NEWS PAGE 13 ◦Jack 2.4 Now Available ◦Extensive Collection of Commodore Related Videos NEWS PAGE 14 ◦CBM PRG Studio Version 1.6.0 Released ◦Komoda 5 Magazine Released ◦USB Joystick Adapter NEWS PAGE 15 ◦Bill Herd Launches Commodore 128 Website ◦AmigaOS 4.1 Update 4 ◦Mini SD 1541 Drive COMMODORE FREE INTERVIEW PAGE 17 WITH ROBERTO DILLON COMMODORE 64 GAME REVIEW PAGE 24 OUT SPACE PRINCE OF PERSIA PAGE 28 COMMODORE 64 VERSION Page 2 www.commodorefree.com EDITORIAL WOW this is a great issue! (Of course you could argue other- We have a Couple of games reviews; most notable of these is wise and may just print it out the line the budgies cage!) the very long over due and much anticipated release of “Prince of Persia” or POP as some people call it. After years of being In this issue put to rest the game has been coded from the apple disassem- I have an interview with ROBERTO DILLON the creator of a bly by Mr SID, Does it stand the test of time and is it any good? book called Golden Age of Video Games: The Birth of a Multi All these questions are answered in my review, a temptation is billion Dollar Industry.
    [Show full text]
  • Linux Desktop Environments Submitted by Prasham Trivedi (6044) As a Partial Fulfillment of the Course of B.E.I.T
    2009 Linux desktop environments Submitted By Prasham Trivedi (6044) As a partial fulfillment of the course of B.E.I.T. SHANTILAL SHAH ENGINEERING COLLEGE CERTIFICATE This is to certify that below mentioned student Mr. Prasham H Trivedi(Roll No. 6040) of semester 8th , course B.E.I.T. , have successfully and satisfactorily completed his Seminar report on “ Linux Desktop Environment ” in subject Seminar report and produced this report of year 2009 and submitted to S.S.E.C., BHAVNAGAR. DATE OF SUBMISSION: --------------------------------------------- STAFF IN CHARGE: HEAD OF DEPARTMENT: PRINCIPAL: Table of Contents Desktop Environments Introduction…………………………………………………………………………………………… ………3 GNOME 13 KDE………………………………………………………………………………………………………… …………………………………………52 The Battle: Gnome vs. KDE……. ……………………………………………………………………………………………………….…89 XFCE: The Underdog………………………………………………………………………………………………… ……………………….90 Conclusion And Bibliography…………………………………………………………………………………………… ……………….93 1. Desktop environment introduction In graphical computing, a desktop environment (DE) commonly refers to a style of graphical user interface (GUI) that is based on the desktop metaphor which can be seen on most modern personal computers today. Desktop environments are the most popular alternative to the older command-line interface (CLI) which today is generally limited in use to computer professionals. A desktop environment typically consists of icons, windows, toolbars, folders, wallpapers, and desktop widgets. Software which provides a desktop environment might also provide drag and drop functionality and other features which make the desktop metaphor more complete. On the whole, a desktop environment is to be an intuitive way for the user to interact with the computer using concepts which are similar to those used when interacting with the physical world, such as buttons and windows. -Source WIKIPEDIA The term desktop environment did not originally refer to software, and was adopted as a way to describe a particular style of user interface provided by that software.
    [Show full text]