Introduction to Unix for Programmers

Total Page:16

File Type:pdf, Size:1020Kb

Introduction to Unix for Programmers CS252 Introduction to Unix for Programmers December 16, 2019 CS252 Outline Spring 2020 1 Preamble Syllabus Policies Library Library Below are the modules that comprise the course content. Each module includes a mixture of lecture notes for you to read (required) and relevant textbook chapters (optional). Many of the lecture notes include “Try This” activities for you to perform while logged in to one of our Linux servers. Most modules include at least one assignment that you should attempt to complete before moving on. KEYS TO SUCCESS IN THIS COURSE: 1. READ THE SYLLABUS The syllabus lays out the basic course policies. It tells you what you need to do to earn a passing grade. It tells you when you need to have done that by. It tells you how to get in touch with me if you run into problems. 2. HAVE A SCHEDULE You have the freedom to schedule your own time in this course, but you DO need to set up a schedule. Don’t forget that this course exists and that you are registered for it. Don’t think you can repeatedly set it aside for weeks at a time and make up the time later. There are 14 assignments in the course. There are approximately 14 weeks in a Fall or Spring semester (12 in summer). You can easily figure out what kind of pace you should be setting if you want to complete this course. 3. IF YOU DON"T UNDERSTAND SOMETHING, ASK QUESTIONS In a web course, my role as Instructor changes from “lecturer” to “tutor”. You can ask questions in the course Forums. You can send me email. You can also contact me during office hours. You’ll find more information on these options in the syllabus and other documents on the Course Policies page. Some people are too shy to ask questions. Some are too proud to ask questions. My advice to both groups is to get over it! Part of being educated is knowing how to exploit your available information resources. In this course, I am one of those resources. 4. READ THE LECTURE NOTES. DO THE “TRY THIS” EXERCISES. As a general rule, everything you need to complete the assignments and final exam are contained in the lecture notes and are things that you will practice with in the “Try This” exercises. The listed textbook readings are optional. Hunting the internet for additional info is possible, but can often lead to more confusion than enlightenment, so you do that at your own risk. When you read, read attentively. When you do the Try This exercises, be observant to the results you are getting and make sure that you understand them. If you consistently find yourself starting the assignments thinking that you are prepared, then get stuck with no idea how to proceed, that’s a good sign that you were not really giving the lecture notes or Try This exercises enough attention. 1 Getting Started Objectives Upon completing this section, a student should… Be familiar with the course layout and policies. Understand the differences between local and remote command sessions text-mode and graphics mode sessions Have set up a CS network account. Be able to log in to a remote text-mode session on the CS Dept Linux machines. 1. Read: Welcome to CS 252 2. Read: CS 252 Syllabus - Spring 2020 3. Read: Communications 4. Why Unix? 5. Unix account setup 6. Peek: Preface, Ch 1 7. Logging In 8. See website for assignment. 2 The Basics: Working in Text Mode 2.1 Files and Directories Objectives Upon completing this section, a student should… Understand the hierarchical structure of a typical file system. Understand how paths identify the location of a file. Recognize the various ways to name their own home directory and those of other account holders. Understand the difference between relative and absolute paths. Write both absolute and relative paths to a desired file. Be able to issue basic commands for creating and listing directories, copying, moving, and viewing the contents of files. 1. Working in a Text-Based Interface 2. Peek: Ch 3 3. Taylor, ch 3, 4, 6 4. The Unix File System 5. Some Basic Unix Commands 6. See website for assignment. 7. Getting Help 2.2 The Elements of Unix Commands Objectives Upon completing this section, a student should be able to… Understand the common special characters available in the command shell. Use special characters to speed up and simplify the typing of commands. Use the three forms of quoting (single quotes, double quotes, and backslashes) to suppress special character actions. Be able to use wildcard patterns to describe lists of multiple files. 1. Typing Unix Commands 2. Patterns for File Names: Wildcards 3. Peek: Ch 4 4. Quoting Special Characters 5. See website for assignment. 2.3 Editing Files Objectives Upon completing this section, a student should be able to… Discuss the relative merits of the nano, emacs, and vim editors. Use at least two of those editors to create and modify text files. 1. Editing in Text Mode 2. Sobell, ch 6,7 3. See website for assignment. 2.4 Protection Objectives Upon completing this section, a student should be able to… Understand the Unix file permissions model. List the permissions being granted by a file. Change the permissions granted by a file. 1. Tansley, ch 1 2. File Protection 3. See website for assignment. 2.5 File Transfer Objectives Upon completing this section, a student should be able to… Identify the common protocols used to transfer files from one computer to another over a network. Understand the difference in ASCII text file format between Windows and other operating systems (Unix, Android, OS/X). Transform ASCII text files from Windows format to Unix and vice versa. Use SFTP to transfer files between their own PC and the CS Dept servers. 1. Peek: Ch 6 2. File Transfer 3. See website for assignment. 2.6 Regular Expressions Objectives Upon completing this section, a student should be able to… Write regular expression patterns to describe desired text during search operations. Use common commands for searching through the contents of files and for doing simple text replacements within a file. 1. Patterns for Text: Regular Expressions 2. Tansley, ch 7-8, 10 3. See website for assignment. 2.7 Modifying and Combining Commands Objectives Upon completing this section, a student should be able to… Use input redirection to send the contents of a file to the input of a command that is expecting standard (keyboard) input. Use output redirection to send the output of a command into a file rather than to the screen. Employ pipes to use the output of one command as the the input of another. Use the find and xargs commands to search for and operate on groups of files. 1. Peek: Ch 5 2. Venkateshmurthy, Ch. 4 3. Redirection and Pipes 4. Commands That Launch Other Commands 5. See website for assignment. 3 Program Development in Text-Mode 3.1 Compiling Objectives Upon completing this section, a student should be able to… Issue appropriate commands to compile simple C++, C, and Java programs. Issue the sequence of steps required to compile programs consisting multiple compilation units. Capture lengthy lists of error messages for later examination. 1. Compiling and Executing Programs 2. Dealing with Error Messages 3. See website for assignment. 3.2 Project Management (make) Objectives Upon completing this section, a student should be able to… Use the ’make` program to automate a series of project build steps. Write make files describing the automation of a typical programming project. 1. Project Management with Make 2. See website for assignment. 3. Compiling in Editors 4 Working in Graphics Mode 4.1 The X Window System Objectives Upon completing this section, a student should be able to… Launch a remote graphics-based session using a compressed X protocol (X2Go). Launch xterms and other X-based programs for operation from their own PC. Discuss the relative merits of the gedit, emacs, and vim editors in a graphics-mode session. 1. Peek: Ch 7 2. The X Window System 3. Editing under X 4. Troubleshooting X 5. See website for assignment. 4.2 Program Development: IDEs Objectives Upon completing this section, a student should be able to… Identify the components comprising a typical IDE. Employ the IDEs available on the CS Linux servers (emacs, Code::Blocks, and Eclipse) to create and compile C++ programs. 1. IDEs for Compiling under X 2. See website for assignment. 4.3 Debugging Objectives Upon completing this section, a student should be able to… Understand the value and basic operations of an automated debugger. Employ a debugger to step through code set breakpoints examine the values of program variables examine the call stack Perform each of the above operations in nemiver, Code::Blocks, and `Eclipse. 1. Debugging 2. Debugging under X 3. See website for assignment. 5 Scripting 5.1 Environment Variables Objectives Upon completing this section, a student should be able to… Understand how environment variables affect shell commands. Set and examine environment variables. Use backticks to capture command output in an environment variable. Understand the role of the PATH variable. 1. Tansley, ch 16-18, 20 2. Shore Are a Lot of Shells! 3. Shell and Environment Variables 4. Customizing Your Unix Environment 5.2 Shell Scripts Objectives Upon completing this section, a student should be able to… Understand the concept of a script. Write simple scripts. Use control-flow features of the scripting language to modify the order in which script commands are issued.
Recommended publications
  • GNU Emacs Manual
    GNU Emacs Manual GNU Emacs Manual Sixteenth Edition, Updated for Emacs Version 22.1. Richard Stallman This is the Sixteenth edition of the GNU Emacs Manual, updated for Emacs version 22.1. Copyright c 1985, 1986, 1987, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with the Invariant Sections being \The GNU Manifesto," \Distribution" and \GNU GENERAL PUBLIC LICENSE," with the Front-Cover texts being \A GNU Manual," and with the Back-Cover Texts as in (a) below. A copy of the license is included in the section entitled \GNU Free Documentation License." (a) The FSF's Back-Cover Text is: \You have freedom to copy and modify this GNU Manual, like GNU software. Copies published by the Free Software Foundation raise funds for GNU development." Published by the Free Software Foundation 51 Franklin Street, Fifth Floor Boston, MA 02110-1301 USA ISBN 1-882114-86-8 Cover art by Etienne Suvasa. i Short Contents Preface ::::::::::::::::::::::::::::::::::::::::::::::::: 1 Distribution ::::::::::::::::::::::::::::::::::::::::::::: 2 Introduction ::::::::::::::::::::::::::::::::::::::::::::: 5 1 The Organization of the Screen :::::::::::::::::::::::::: 6 2 Characters, Keys and Commands ::::::::::::::::::::::: 11 3 Entering and Exiting Emacs ::::::::::::::::::::::::::: 15 4 Basic Editing
    [Show full text]
  • Absolute BSD—The Ultimate Guide to Freebsd Table of Contents Absolute BSD—The Ultimate Guide to Freebsd
    Absolute BSD—The Ultimate Guide to FreeBSD Table of Contents Absolute BSD—The Ultimate Guide to FreeBSD............................................................................1 Dedication..........................................................................................................................................3 Foreword............................................................................................................................................4 Introduction........................................................................................................................................5 What Is FreeBSD?...................................................................................................................5 How Did FreeBSD Get Here?..................................................................................................5 The BSD License: BSD Goes Public.......................................................................................6 The Birth of Modern FreeBSD.................................................................................................6 FreeBSD Development............................................................................................................7 Committers.........................................................................................................................7 Contributors........................................................................................................................8 Users..................................................................................................................................8
    [Show full text]
  • 1 What Is Gimp? 3 2 Default Short Cuts and Dynamic Keybinding 9
    GUM The Gimp User Manual version 1.0.0 Karin Kylander & Olof S Kylander legalities Legalities The Gimp user manual may be reproduced and distributed, subject to the fol- lowing conditions: Copyright © 1997 1998 by Karin Kylander Copyright © 1998 by Olof S Kylander E-mail: [email protected] (summer 98 [email protected]) The Gimp User Manual is an open document; you may reproduce it under the terms of the Graphic Documentation Project Copying Licence (aka GDPL) as published by Frozenriver. This document is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANT- ABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the Graphic Documentation Project Copying License for more details. GRAPHIC DOCUMENTATION PROJECT COPYING LICENSE The following copyright license applies to all works by the Graphic Docu- mentation Project. Please read the license carefully---it is similar to the GNU General Public License, but there are several conditions in it that differ from what you may be used to. The Graphic Documentation Project manuals may be reproduced and distrib- uted in whole, subject to the following conditions: The Gimp User Manual Page i Legalities All Graphic Documentation Project manuals are copyrighted by their respective authors. THEY ARE NOT IN THE PUBLIC DOMAIN. • The copyright notice above and this permission notice must be preserved complete. • All work done under the Graphic Documentation Project Copying License must be available in source code for anyone who wants to obtain it. The source code for a work means the preferred form of the work for making modifications to it.
    [Show full text]
  • Evil Twin Attack Android Apk
    Evil twin attack android apk Continue Evil double attack on android (alk99) root requered @abderrahaman this attack is similar to the stream and linset, but in another plate form video tuto'gt; alk99 csploit iptables binary termux android webserver (php server ) open csploit garnt superuser to install the resolution of the core new and wait, until he has finished extracting the close application en termux and wait until he did the installation type on termux : pkg install tsu pkg install git exit open server for php (or any other android webserver support php) install the newest package to copy the default page (file index ...) or page you prefer from fake pages go to you interchannel storage www and go public past it here and go to the server for the start of the hotspot your mobile phone and on the server for php choose wlan0 192.168.43.1 click on the starter server go to your browser and bring now all working clone git clone CD clone-download-Alk-evil- twin tsu bash install.sh wait Until it finishes in the view now type: exit and open termux and type: (now the server has to be launched, and the client must be connected) tsu alk99 alk99-evil-twin-on-andoid-v1 Copyright (C) 2018 by abderra in this new wireless attack, I will walk you through the process of creating Hot Spot 2.0 Evil Twinman. This is potentially another vector attack that can be used with or without social engineering that a penetration tester or nefarious actor can use when performing a wireless pen test or trying to socially engineer the user.
    [Show full text]
  • Curriculum Vitae
    Vancouver, BC Canada +1.604.551.7988 KipWarner [email protected] Senior Software Engineer / Co-chairman OPMLWG 07 August 2021 *** WARNING: MANGLED TEXT COPY. DOWNLOAD PDF: www.thevertigo.com/getcv.php?fix Education 2007 Artificial Intelligence, BSc (Cognitive Systems: Computational Intelligence & Design) Department of Computer Science, University of British Columbia 2005 Associate of General Science Kwantlen Polytechnic University Professional Experience Jul 2015 - Cartesian Theatre, Vancouver, British Columbia Present Senior Software Engineer Techniques: Artificial intelligence, asymmetric cryptography, build automation, continuous integration testing, digital signal processing, machine learning, MapReduce, REST architecture, SIMD, and UNIX server daemon. Technologies: AltiVec / POWER Vector Media Extension; Apport; Assembly; AVX, Autopkgtest; Avahi / Apple’s Bonjour; Bash; C++17; CppUnit; cwrap (nss_wrapper); DBus; debhelper; GCC; GDB; Git; GNU Autotools; GNU/Linux; init.d; libav / FFmpeg; lsbinit; M4; OpenBMC; OpenSSL; Pistache; pkg-config; PortAudio; PostgreSQL; PPA; Python; QEMU; quilt; sbuild / pbuilder; setuptools; SQLite; STL; strace; systemd; Swagger; Umbrello; and Valgrind. Standards: Debian Configuration Management Specification; Debian Database Application Policy; Debian Policy Manual; Debian Python Policy; DEP-8; Filesystem Hierarchy Standard; freedesktop.org; GNU Coding Standards; IEEE 754; JSON; LSB; OpenAPI Specification; POSIX; RFC 4180; RSA; SQL; UNIX System V; UML; UPnP; and Zeroconf. Hardware: Ported to 64-bit PC
    [Show full text]
  • Ttwin Version 3 User Guide
    User’s Guide Terminal Emulation for Windows P.O. Box 2197 Strawberry Hills NSW 2012 AUSTRALIA Phone: +61 2 8396 3000 Fax: +61 2 9318 1515 Email: [email protected] [email protected] Web site: http://www.ttwin.com Copyright Notice © Copyright Turbosoft All rights reserved. This manual is protected by copyright. No part of this manual may be reproduced in any form without written permission of the copyright owner. All efforts have been made to ensure the contents of this manual are correct. If any errors are detected, please inform Turbosoft. The contents of this manual are subject to change without notice. Turbosoft can assume no responsibility for errors in this manual or their consequence. The software described in this manual is supplied under a license agreement and may be used or copied only in accordance with the terms of that agreement. Licenses and Trademarks All Licenses, Copyright and Trademarks are the property of their respective owners. TTWIN User's Guide Version 3 About this Manual The TTWIN 3 User's Guide is a comprehensive guide to all the information you need to work easily and efficiently with Turbosoft's TTWIN 3 terminal emulation package. Organisation of this Manual The TTWIN 3 User's Guide is divided into 5 parts: Part One - Basic Concepts Chapter 1 Introduction. A brief description of the files supplied with the TTWIN 3 product and the system requirements. Chapter 2 Installation. The steps to follow when setting up TTWIN 3 on a local PC or on a network file server. This chapter also includes modifying and uninstalling TTWIN 3.
    [Show full text]
  • Indicators for Missing Maintainership in Collaborative Open Source Projects
    TECHNISCHE UNIVERSITÄT CAROLO-WILHELMINA ZU BRAUNSCHWEIG Studienarbeit Indicators for Missing Maintainership in Collaborative Open Source Projects Andre Klapper February 04, 2013 Institute of Software Engineering and Automotive Informatics Prof. Dr.-Ing. Ina Schaefer Supervisor: Michael Dukaczewski Affidavit Hereby I, Andre Klapper, declare that I wrote the present thesis without any assis- tance from third parties and without any sources than those indicated in the thesis itself. Braunschweig / Prague, February 04, 2013 Abstract The thesis provides an attempt to use freely accessible metadata in order to identify missing maintainership in free and open source software projects by querying various data sources and rating the gathered information. GNOME and Apache are used as case studies. License This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 Unported (CC BY-SA 3.0) license. Keywords Maintenance, Activity, Open Source, Free Software, Metrics, Metadata, DOAP Contents List of Tablesx 1 Introduction1 1.1 Problem and Motivation.........................1 1.2 Objective.................................2 1.3 Outline...................................3 2 Theoretical Background4 2.1 Reasons for Inactivity..........................4 2.2 Problems Caused by Inactivity......................4 2.3 Ways to Pass Maintainership.......................5 3 Data Sources in Projects7 3.1 Identification and Accessibility......................7 3.2 Potential Sources and their Exploitability................7 3.2.1 Code Repositories.........................8 3.2.2 Mailing Lists...........................9 3.2.3 IRC Chat.............................9 3.2.4 Wikis............................... 10 3.2.5 Issue Tracking Systems...................... 11 3.2.6 Forums............................... 12 3.2.7 Releases.............................. 12 3.2.8 Patch Review........................... 13 3.2.9 Social Media............................ 13 3.2.10 Other Sources..........................
    [Show full text]
  • Pipenightdreams Osgcal-Doc Mumudvb Mpg123-Alsa Tbb
    pipenightdreams osgcal-doc mumudvb mpg123-alsa tbb-examples libgammu4-dbg gcc-4.1-doc snort-rules-default davical cutmp3 libevolution5.0-cil aspell-am python-gobject-doc openoffice.org-l10n-mn libc6-xen xserver-xorg trophy-data t38modem pioneers-console libnb-platform10-java libgtkglext1-ruby libboost-wave1.39-dev drgenius bfbtester libchromexvmcpro1 isdnutils-xtools ubuntuone-client openoffice.org2-math openoffice.org-l10n-lt lsb-cxx-ia32 kdeartwork-emoticons-kde4 wmpuzzle trafshow python-plplot lx-gdb link-monitor-applet libscm-dev liblog-agent-logger-perl libccrtp-doc libclass-throwable-perl kde-i18n-csb jack-jconv hamradio-menus coinor-libvol-doc msx-emulator bitbake nabi language-pack-gnome-zh libpaperg popularity-contest xracer-tools xfont-nexus opendrim-lmp-baseserver libvorbisfile-ruby liblinebreak-doc libgfcui-2.0-0c2a-dbg libblacs-mpi-dev dict-freedict-spa-eng blender-ogrexml aspell-da x11-apps openoffice.org-l10n-lv openoffice.org-l10n-nl pnmtopng libodbcinstq1 libhsqldb-java-doc libmono-addins-gui0.2-cil sg3-utils linux-backports-modules-alsa-2.6.31-19-generic yorick-yeti-gsl python-pymssql plasma-widget-cpuload mcpp gpsim-lcd cl-csv libhtml-clean-perl asterisk-dbg apt-dater-dbg libgnome-mag1-dev language-pack-gnome-yo python-crypto svn-autoreleasedeb sugar-terminal-activity mii-diag maria-doc libplexus-component-api-java-doc libhugs-hgl-bundled libchipcard-libgwenhywfar47-plugins libghc6-random-dev freefem3d ezmlm cakephp-scripts aspell-ar ara-byte not+sparc openoffice.org-l10n-nn linux-backports-modules-karmic-generic-pae
    [Show full text]
  • Maxcam Emu Software Orf
    Maxcam emu software orf Software Without Biss Support / Ohne Biss Support NOTED!! Important!! Wichtig!!! FOR Biss Use Software / Für Biss Version Max Cam Twin V2 Software Fortuna (EMU). Thema: Max Cam Twin V2 Software Fortuna (EMU) Nagra 2 Key Edit for TV Globo,Swisscom > Menu > Key Edit > insert with remote. We presents new EMU Software and some minor fixes for good "old" Max Cam Twin V1. Have Fun Software Without Biss Support / Ohne. Max Cam Twin V2 Software Fortuna (EMU). Thumbnail Nagra 2 Key Edit for TV Globo,Swisscom > Menu > Key Edit > insert with remote. Thema: Max Cam Twin V2 Software Fortuna (EMU) ORF1,ORF2,ORF Regional Channels, H * Panasonic DMR-BST/BCT. EMU Funktion im Menü on/off * BISS Key Eingabe über die Fernbedienung * Austria Sat und ORF ebenfalls inkludiert. Open Channels on 19,2. Surrender Software v for V2 or v for ULTRA flash> after this firmware> Settings in the menu and disable Cam check where. Guten Morgen, ich bin neuer Besitzer einer Maxcam Twin und habe mir von Emu bedeutet, das du ORF, Austriasat (nur SD), VH1, einige frz. Infos Max Cam Twin V2 Software Fortuna (Emu) ORF ICE card Irdeto Mode Sim reader, decryption problem in some other TV´s fixed. Software aufbau ist Maxcam v + Emu O*F und U***yM****a . This release constitutes the programs of ORF and Austria Sat SD. Infos EMU - Firmware Max Cam Twin V2/ Ultra Fortuna . ORF / Austria-Sat / MTV / TNT Sat funktionieren alle seit geraumer Zeit nicht. Software Without Biss Support / Ohne Biss Support NOTED!! Important!! Wichtig!!! FOR Biss Use Software / Für Biss Version MaxCam Twin HIER KAUFEN First software for the new Max Cam Twin V2 module enjoy it wants the Max [Arşiv] MaxCam Twin EMU Software Diğer Modüller.
    [Show full text]
  • GNOME Annual Report 2008
    1 Table of Contents Foreword Letter from the Executive Director 4 A year in review GNOME in 2008 8 GNOME Mobile 16 Events and Community initiatives Interview with Willie Walker 20 GNOME around the world 24 GNOME Foundation Foundation Finances 30 List of all 2008 donors 33 2 Letter from Stormy Peters Stormy Peters is the GNOME Foundation Executive Director and has great experience in the industry and with the open source culture. Hello GNOME Lovers! seek them out and to invite them to come play. (Actually, I felt welcome from day -1, GNOME's goal is to bring free and open as I met a bunch of guys on the plane who source computing to everyone regardless of turned out to also be going to GUADEC. I ability. I consider myself extremely lucky to spent my first day in Copenhagen walking have joined the project as executive director around with some guys from Red Hat and of the GNOME Foundation. It's a pleasure Eazel trying to stay awake through jetlag. I and a privilege to work with thousands of pe- remember Havoc Pennington saying we just ople dedicated to making free had to stay awake until dinner software available for everyone The spirit and time.) on desktops and mobile plat- dedication of the forms. I don't think it's an GNOME community to One of the most common exaggeration to say that their goals of creating questions I get asked is GNOME technology is chan- a free and open source why did you take this job? ging the world for many from software ..
    [Show full text]
  • TWIN: a Window System for ‘Sub-PDA’ Devices
    TWIN: A Window System for ‘Sub-PDA’ Devices Keith Packard HP Cambridge Research Laboratory [email protected] Abstract (200MHz, fixed point, 384KB on-chip RAM), 8MB of flash memory, an Agilent ADNS-2030 Optical mouse sensor, a Zigbee (802.15.4) With embedded systems gaining high resolu- wireless networking interface and an Epson tion displays and powerful CPUs, the desire for L2F50176T00 LCD screen (1.1”, 120 x 160 sophisticated graphical user interfaces can be color). At 200MHz, this processor is capable of realized in even the smallest of systems. While significant computation, but 384KB holds little the CPU power available for a given power data. budget has increased dramatically, these tiny systems remain severely memory constrained. In contrast, early graphical user interfaces for This unique environment presents interesting desktop platforms was more constrained by challenges in graphical system design and im- available CPU performance than by memory. plementation. To explore this particular space, Early workstations had at least a million pixels a new window system, TWIN, has been de- and a megabyte of physical memory but only veloped. Using ideas from modern window about 1 MIPS of processing power. Software systems in larger environments, TWIN offers in this environment was much more a matter overlapping translucent windows, anti-aliased of what could be made fast enough than what graphics and scalable fonts in a total memory would fit in memory. budget of 100KB. While the X window system[7] has been ported to reasonably small environments[2], a mini- Motivation mal combination of window system server, pro- tocol library and application toolkit consumes on the order of 4 to 5MB of memory, some ten Researchers at the HP Cambridge Research times more than is available in the target plat- Laboratory are building a collection of sub-PDA form.
    [Show full text]
  • Omnet++ Installation Guide Version 4.6 Copyright © 2014 András Varga and Opensim Ltd
    OMNeT++ Installation Guide Version 4.6 Copyright © 2014 András Varga and OpenSim Ltd. Table of Contents 1. General Information ........................................................................................... 1 2. Windows ............................................................................................................. 2 3. Mac OS X ........................................................................................................... 6 4. Linux ................................................................................................................ 12 5. Ubuntu ............................................................................................................. 18 6. Fedora 18 ......................................................................................................... 22 7. Red Hat ............................................................................................................ 24 8. OpenSUSE ....................................................................................................... 26 9. Generic Unix .................................................................................................... 28 10. Build Options ................................................................................................. 35 iii Chapter 1. General Information 1.1. Introduction This document describes how to install OMNeT++ on various platforms. One chapter is dedicated to each operating system. 1.2. Supported Platforms OMNeT++ has been tested and is supported on the
    [Show full text]