Linux (Debian) Distros Hard Drives & File Systems

Size: px
Start display at page:

Download "Linux (Debian) Distros Hard Drives & File Systems"

Transcription

1 Linux (Debian) Distros Debian GNU/Linux Debian based: Ubuntu, Knoppix, Linspire, Damn Small Linux, etc. Red Hat, Slackware, SUSE, Mandriva, CentOS, Gentoo, etc. Linux is just the kernel, it's what allows the system to boot up and talk with your machine's hardware. GNU (Recursive acronym: GNU's Not Unix ) was a project launched in 1984 to develop a complete Unix-line operating system which is free software. The GNU project was never able to develop a kernel, so that started using the Linux kernel to run all of their software on. Free Software? liberty, not necessarily price. Think of it as free speech, not as in free beer. Although, most open source software is free in both ways. Common items in Linux : Shell (text terminal/console), a graphical environment know has the X Window System, sometimes referred to as X11. GNOME or KDE desktop environment. Bar at the left/right/top/bottom is called the Panel (similar to taskbar in Windows ). Terminal Windows (console/shell window). Similar to Windows Command Prompt. Common partitions/directories: /, /home, /usr, /var, /tmp, swap Directory paths use forward slash / in Linux. (Backslash \ in Windows) Hard Drives & File Systems Managing your Hard drives in Linux: Gnome System Menu -> Administration -> Partition Manager: Allows you to see how your hard drive's partitions and the types of file systems that your partitions are using. Shell tools: fsck for checking hard drive for errors. cfdisk for partitioning drives. mkfs.ext3, mkfs.vfat, etc. to format the partition with a specific file system. Partitions are usually mounted to directory mount points. df command will show you which partitions are mounted to which directories. Mounting/Unmounted file systems (partitions) in linux: mount -t ext4 /dev/sda4 /mnt umount /mnt You can also use mount/umount to connect/disconnect network shares (like nfs shares): mount -t nfs :/share1 /mnt umount /mnt File systems are usually mounted at boot time via the /etc/fstab file. In Linux you need to have at least 2 partitions: / and swap. File Systems: ext (extended file system): The first file system ever created for linux. ext3 (third extended file system): 3 rd generation of the ext file system that now supports journaling along with a number of other improvements to the file system. ext2 and ext3 used to be the most common file systems used in linux, but now replaced by ext4. ext3 supports up to 16TB file systems, and 2TB file sizes. ext4 (fourth extended file system): 4 th generation of the ext file system which now upports up to 1EB file systems and 16TB file sizes. ext4 is also faster then all previous ext versions and has support for SSD drives via TRIM. reiserfs, xfs, zfs, etc. etc.

2 Advanced File System Features: Logical Volumes: Extending file systems (partitions) across multiple disks to create larger volumes and make it easier to expand in the future. Software & Hardware RAID - Redundant Array of Independent Disks (Inexpensive Drives). Bootup/Shutdown During the Linux install, some code is written to your hard drive's MBR (Master Boot Record) which tells your computer what files to load from your hard drive to load Linux. This program is usually either LILO (Linux Loader) or GRUB (GRand Unified Bootloader). With most linux boot loaders, you are presented with a boot screen that allows you to choose which kernel to boot. Runtime levels (init levels): 0: shutdown 1: single user mode 2: normal user mode 6: reboot For instance, this command will cause your system to reboot: /sbin/init 6 And this command will cause your system to shutdown: /sbin/init 0 Other command to shutdown and reboot your system: shutdown, halt, reboot Single User Mode allows you to troubleshoot your system and perform hardware/software maintenance. Similar to Windows Safe Mode. When was the machine last booted? From a Shell/Terminal run: uptime Locking Screen or Logging off: Gnome System Menu -> Lock Screen or Log Out Startup Scripts: /etc/rc#.d/* (# is 0, 1, 2, or 6) These scripts get run when entering or exiting a specific runtime level. Scripts will either start with an S (start) or K (kill), followed by a number to specify an order in which the scripts should run, for instance: /etc/rc2.d/s10syslog-ng, /etc/rc2.d/s89cron Account Management Creating and managing user accounts via Gnome System Menu -> Administration -> Users and Groups. Allows you to add, delete and change user accounts. Shell/Terminal: useradd -m -g users -u s /bin/tcsh -d /home/joe joe userdel -r joe /etc/passwd, /etc/shadow, /etc/group /etc/passwd contains account information: 7 fields: username:x:uid:gid:account Name:home dir:shell uid = user id number, integer gid = group id number /etc/shadow contains account password and other password settings: 9 fields: username:password:?:?:?:?:?:?:? /etc/group contains group information: 4 fields: groupname:password:gid:list of users for this group password is usually not used (usually an x ), and the list of users is comma separated like: video:x:44:demo,tom,mike New Account config files are stored in /etc/skel, they get copied over to the user's home directory (/home/username) when the account gets created. Groups: Users can be in multiple groups so that they can do specific things on the system. For instance, in order to be access your computer's cdrom drive, you must be part of the cdrom group. Or for printing, lpadmin group.

3 NIS (Network Information Services) aka YP (Yellow Pages): A client-server directory service protocol that allows you to share accounts between a server and clients. Quotas Enabling Quotas: Edit /etc/fstab and add the options usrquota,grpquota to any partition you want quotas enabled on. Reboot, then run: quotacheck -F vfsv0 -v -c /home Commands to control quotas: edquota: to setup (edit) a user's quota quota -v: To view a user's quota (they can only view their own) root can view all users' quota: quota -v username File Permissions Changing ownership and permissions on files and directories: Right-click on file or directory and choose Properties. Under the Permissions tab, you have the ability to set the different permissions for owner/group/other. 4 different types of permissions: read, write, execute, and none for owner/group/other. The chmod command allows you to set the permissions on files. The chown command allows you to change ownership of files (when root). Sample file permissions: rwxr-x--- root sys file1 read/write/execute for root, read/execute for group sys, none for other. Linux Memory Management RAM and Swap space. A swap file (virtual memory) is simply a file that linux will use in place of memory if it runs out of physical memory. Under the Gnome Application Menu -> System Tools -> System Monitor, Resources tab, allows you to see your physical and swap memory usage. Shell/Terminal: free command shows physical and swap memory usage. Networking Gnome System Menu -> Administration -> Network. Highlight the Wired interface and click Properties... So long as Roaming mode isn't selected, then you'll see that it's very similar to Windows, you can either use DHCP or manual (static info) for your network settings. If you Cancel out of that interface's properties, then you'll see the following tabs: Connections, General, DNS, Hosts. Shell/Terminal: ifconfig, hostname, netstat, ping Config files: /etc/network/interfaces (for Debian) Process/Job Management Under the Gnome Application Menu -> System Tools -> System Monitor, Process Table tab, allows you to see what processes are running your system system and kill them, End Process, if necessary. Allows you to see who is running the process, how much CPU resources or Memory a particular process is using, along with the process's PID (process ID #). Shell/Terminal: ps -aef more [list process] kill pid [kill process] kill -9 pid [forcefully kill process] top [interative process monitor]

4 Job Scheduling cron configuration files: /etc/crontab sample entry: 0 1 * * 1-3 root /command/to/run 7 fields: minute, hour, day of month, month, day of week, user, command Config Files Most configuration files in linux are plain text files. Files like /etc/hostname, /etc/passwd, /etc/shadow, /etc/fstab, /etc/crontab, etc,.etc. A lot of user configuration files in a user's home directory (/home/username or ~/username) are dot files like.cshrc,.bashrc,.profile. A large number of front end applications to edit config files (GUI based, text based, and web based). Daemons Programs that run in the background to perform some special function (SSH server, Remote Desktop, DNS server, DHCP server, event logging, etc.) Gnome System Menu -> Administration -> Services: Start, stop and disable services from here. 3 ways to startup jobs/daemons: 1. startup at bootup (vi /etc/rc scripts) 2. via cron, schedule job to run/startup at a specific time. 3. via inetd daemon: Startup daemons as needed. inetd daemon will run at all times, and will startup daemons (from /etc/inetd.conf) when needed. You can see what processes are running via shell/terminal: ps -aef more Logs System logs are logged via syslog-ng (or older syslog) daemon. Logs are normally stored in /var/log directory under different service name files. You can also see what your kernel is doing by running: dmesg Common log files: /var/log/syslog, /var/log/mail.log, /var/log/auth.log, etc. GUI vs TEXT Graphical: Point & Click. Large number of possible graphical environments: Xorg, Xfree86, Xgl are the X Window Systems. GNOME & KDE are the common desktop environments. Then you have the window managers: metacity, Compiz Fusion, etc. etc. Very customizable... Shell/Terminal: Easily write scripts to automate tasks. Easy to do remote administration via SSH. Shell Commands Number of different shells available: sh, csh, tcsh, bash, zsh, etc... Get help with man cmd Some general commands: cd, ls, mkdir, rmdir, rm, mv, cp, cat, more, echo Updates Linux update-manager for Debian takes care of updates (similar to Windows update manager). Shell/Terminal: apt-get update; apt-get upgrade Upgrading the system's kernel is usually the only time Linux ever needs to be rebooted, and even that now-a-days can sometimes be done without rebooting your system. (Compared to Windows, which requires a reboot with most updates).

5 Package Management Gnome System Menu -> Administration -> Synaptic Package Managerallows you to install and uninstall programs. Debian Linux Packages: DEB packages Red Hat Packages: RPM packages Debian Package installation: apt-get install package-name dpkg -i package-name.deb aptitude is a text based shell package manager. Compiling and installing software from source: tar xf package-name.tar./configure make make install Backups & File Compression The tar command is the easiest to use to archive a number of files into one file which you can then compress (with gzip or bzip2): tar cfp /tmp/new_file.tar /etc/hosts /etc/hostname [compress] tar xfp /tmp/new_file.tar [extract] Most commonly used file compression formats are gzip and bzip2 in linux: gzip /tmp/new_file.tar [gives you a new_file.tar.gz file] gunzip /tmp/new_file.tar.gz [gives us new_file.tar] bzip2 /tmp/new_file.tar [gives us new_file.tar.bz2] bunzip2 /tmp/new_file.tar.bz2 [gives us new_file.tar] dump/restore: Common unix/linux command for dumping files or entire partition to some backup area and restoring them as needed. Backup to tape, CD, DVD, or disk-to-disk (external USB drive, or NAS/SAN) Programming A large number of programming languages available for Linux: C, Java, Python, Perl, Shell scripts, etc. File Sharing Linux uses NFS (Network File System) was back in 1984 as a way for Unix systems to share their file systems between different machines. On the server export a directory via NFS by editing /etc/exports and adding an entry like so: /home/share (rw,sync,no_root_squash,subtree_check) /home/share2 *(ro,sync,no_root_squash,subtree_check) On the client, you use the mount command to access the share like so: mount -t nfs :/home/share1 /mnt [mount share] umount /mnt [unmount share] Access Window shares via Samba, you can mount a Windows share via: mount -t smbfs username=username,password //server/share_name /mnt (You will be prompted to type in a password)

6 Remote Management VNC (Virtual Network Computing): Remote Desktop protocol that is cross-platform, supported on: Windows, FreeBSD, MAC, Unix/Linux, etc. SSH (Secure SHell) access to shell/terminal from a remote location. Very secure, powerful and fast. Uses very little network bandwidth. Security File/Directory ownership/permissions Linux software firewall (iptables) Hardware Firewall for better protection Anti-Virus (Clamav): To protect other Windows system on network. Disable unneeded services (telnet, etc.) Miscellaneous Web: Apache Web Server Postfix Server Linux Text Editors: emacs, vi, gedit, etc...

Linux System Administration on Red Hat

Linux System Administration on Red Hat Linux System Administration on Red Hat Kenneth Ingham September 29, 2009 1 Course overview This class is for people who are familiar with Linux or Unix systems as a user (i.e., they know file manipulation,

More information

A candidate following a programme of learning leading to this unit will be able to:

A candidate following a programme of learning leading to this unit will be able to: Unit 24: Linux+ Learning Outcomes A candidate following a programme of learning leading to this unit will be able to: Demonstrate knowledge of planning the implementation Show knowledge of how to install

More information

Red Hat Linux Administration II Installation, Configuration, Software and Troubleshooting

Red Hat Linux Administration II Installation, Configuration, Software and Troubleshooting Course ID RHL200 Red Hat Linux Administration II Installation, Configuration, Software and Troubleshooting Course Description Students will experience added understanding of configuration issues of disks,

More information

HARFORD COMMUNITY COLLEGE 401 Thomas Run Road Bel Air, MD 21015 Course Outline CIS 110 - INTRODUCTION TO UNIX

HARFORD COMMUNITY COLLEGE 401 Thomas Run Road Bel Air, MD 21015 Course Outline CIS 110 - INTRODUCTION TO UNIX HARFORD COMMUNITY COLLEGE 401 Thomas Run Road Bel Air, MD 21015 Course Outline CIS 110 - INTRODUCTION TO UNIX Course Description: This is an introductory course designed for users of UNIX. It is taught

More information

GLS250 "Enterprise Linux Systems Administration"

GLS250 Enterprise Linux Systems Administration GLS250 "Enterprise Linux Systems Administration" Intended for students already comfortable with working in the Unix environment, this in-depth course helps students acquire the variety of skills needed

More information

Windows Server 2008 Versions Hard Drives & File Systems

Windows Server 2008 Versions Hard Drives & File Systems Windows Server 2008 Versions Windows 3.1, 95, 98, ME, NT, XP, Vista, 7, 8, 2000, 2003, 2008, 2012 All are a GUI environment (icons, mouse). Common items in Windows : Start button, My Computer, Network

More information

Cisco Networking Academy Program Curriculum Scope & Sequence. Fundamentals of UNIX version 2.0 (July, 2002)

Cisco Networking Academy Program Curriculum Scope & Sequence. Fundamentals of UNIX version 2.0 (July, 2002) Cisco Networking Academy Program Curriculum Scope & Sequence Fundamentals of UNIX version 2.0 (July, 2002) Course Description: Fundamentals of UNIX teaches you how to use the UNIX operating system and

More information

Introduction to Operating Systems

Introduction to Operating Systems Introduction to Operating Systems It is important that you familiarize yourself with Windows and Linux in preparation for this course. The exercises in this book assume a basic knowledge of both of these

More information

LSN 10 Linux Overview

LSN 10 Linux Overview LSN 10 Linux Overview ECT362 Operating Systems Department of Engineering Technology LSN 10 Linux Overview Linux Contemporary open source implementation of UNIX available for free on the Internet Introduced

More information

Red Hat Certifications: Red Hat Certified System Administrator (RHCSA)

Red Hat Certifications: Red Hat Certified System Administrator (RHCSA) Red Hat Certifications: Red Hat Certified System Administrator (RHCSA) Overview Red Hat is pleased to announce a new addition to its line of performance-based certifications Red Hat Certified System Administrator

More information

RH033 Red Hat Linux Essentials or equivalent experience with Red Hat Linux..

RH033 Red Hat Linux Essentials or equivalent experience with Red Hat Linux.. RH131 Red Hat Linux System Administration Course Summary For users of Linux (or UNIX) who want to start building skills in systems administration on Red Hat Linux, to a level where they can attach and

More information

Table of Contents. Introduction. Audience. At Course Completion. Prerequisites

Table of Contents. Introduction. Audience. At Course Completion. Prerequisites Table of Contents Introduction Audience At Course Completion Prerequisites Certified Professional Exams Student Materials Course Outline Introduction This in-depth, 5-day course helps students acquire

More information

Unix Sampler. PEOPLE whoami id who

Unix Sampler. PEOPLE whoami id who Unix Sampler PEOPLE whoami id who finger username hostname grep pattern /etc/passwd Learn about yourself. See who is logged on Find out about the person who has an account called username on this host

More information

Getting Started in Red Hat Linux An Overview of Red Hat Linux p. 3 Introducing Red Hat Linux p. 4 What Is Linux? p. 5 Linux's Roots in UNIX p.

Getting Started in Red Hat Linux An Overview of Red Hat Linux p. 3 Introducing Red Hat Linux p. 4 What Is Linux? p. 5 Linux's Roots in UNIX p. Preface p. ix Getting Started in Red Hat Linux An Overview of Red Hat Linux p. 3 Introducing Red Hat Linux p. 4 What Is Linux? p. 5 Linux's Roots in UNIX p. 6 Common Linux Features p. 8 Primary Advantages

More information

NATIONAL POPULATION REGISTER (NPR)

NATIONAL POPULATION REGISTER (NPR) NATIONAL POPULATION REGISTER (NPR) Project Name: NPR Version No: 1.0.0 Release Date: Group Name: NPR-ECIL Version Date: LINUX SERVER INSTALLATION AND CONFIGURATION FOR JAVA BASED NPR DATAENTRY SOFTWARE

More information

Navigating the Rescue Mode for Linux

Navigating the Rescue Mode for Linux Navigating the Rescue Mode for Linux SUPPORT GUIDE DEDICATED SERVERS ABOUT THIS GUIDE This document will take you through the process of booting your Linux server into rescue mode to identify and fix the

More information

EXPLORING LINUX KERNEL: THE EASY WAY!

EXPLORING LINUX KERNEL: THE EASY WAY! EXPLORING LINUX KERNEL: THE EASY WAY! By: Ahmed Bilal Numan 1 PROBLEM Explore linux kernel TCP/IP stack Solution Try to understand relative kernel code Available text Run kernel in virtualized environment

More information

AdvLinux for i486sx User Manual V1.02

AdvLinux for i486sx User Manual V1.02 AdvLinux for i486sx User Manual V1.02 Contents 1. ABOUT THIS MANUAL...1 2. ADVLINUX FOR I486SX OVERVIEW...1 2.1. SUPPORT DEVICES...1 2.2. MAIN FEATURES...1 3. INSTALL ADVANTECH EMBEDDED LINUX FOR I486SX...3

More information

Partitioning. Files on the Hard Drive. Administration of Operating Systems DO2003. Partition = Binder with index. Write file = Insert document

Partitioning. Files on the Hard Drive. Administration of Operating Systems DO2003. Partition = Binder with index. Write file = Insert document Administration of Operating Systems DO2003 Mounting the file structure Devices Wecksten, Mattias 2008 Partitioning Wecksten, Mattias 2008 Files on the Hard Drive Partition = Binder with index Write file

More information

2. Boot using the Debian Net Install cd and when prompted to continue type "linux26", this will load the 2.6 kernel

2. Boot using the Debian Net Install cd and when prompted to continue type linux26, this will load the 2.6 kernel These are the steps to build a hylafax server. 1. Build up your server hardware, preferably with RAID 5 (3 drives) plus 1 hotspare. Use a 3ware raid card, 8000 series is a good choice. Use an external

More information

How to Restore a Linux Server Using Bare Metal Restore

How to Restore a Linux Server Using Bare Metal Restore How to Restore a Linux Server Using Bare Metal Restore This article refers to firmware version 5.4 and higher, and the Barracuda Linux Backup Agent 5.4 and higher. Use the steps in this article to restore

More information

CS197U: A Hands on Introduction to Unix

CS197U: A Hands on Introduction to Unix CS197U: A Hands on Introduction to Unix Lecture 4: My First Linux System J.D. DeVaughn-Brown University of Massachusetts Amherst Department of Computer Science jddevaughn@cs.umass.edu 1 Reminders After

More information

Red Hat Enterprise Linux (RHEL 6) Courses

Red Hat Enterprise Linux (RHEL 6) Courses Red Hat Enterprise Linux (RHEL 6) Courses Red Hat System Administration I * Core Skills (5 days) Advanced Linux Shell Scripting Shell Scripting (bash,ksh93) and awk Programming (3 days) Advanced Red Hat

More information

Backup of ESXi Virtual Machines using Affa

Backup of ESXi Virtual Machines using Affa Backup of ESXi Virtual Machines using Affa From SME Server Skill level: Advanced The instructions on this page may require deviations from procedure, a good understanding of linux and SME is recommended.

More information

Ubuntu Professional Training Course Overview (E-learning, Ubuntu 10.04 LTS)

Ubuntu Professional Training Course Overview (E-learning, Ubuntu 10.04 LTS) Ubuntu Professional Training Course Overview (E-learning, Ubuntu 10.04 LTS) 1 of 7 Ubuntu Professional Course Overview (E-learning, Ubuntu 10.04 LTS) About the Course and Objectives The Ubuntu Professional

More information

Installing QuickBooks Enterprise Solutions Database Manager On Different Linux Servers

Installing QuickBooks Enterprise Solutions Database Manager On Different Linux Servers Installing QuickBooks Enterprise Solutions Database Manager On Different Linux Servers 1 Contents QuickBooks Enterprise Solutions and Linux... 3 Audience of This Guide... 3 What is the Linux Database Manager

More information

System administration basics

System administration basics Embedded Linux Training System administration basics Michael Opdenacker Thomas Petazzoni Free Electrons Copyright 2009, Free Electrons. Creative Commons BY SA 3.0 license Latest update: Dec 20, 2010, Document

More information

IT Essentials II: Network Operating Systems v3.0 Scope and Sequence

IT Essentials II: Network Operating Systems v3.0 Scope and Sequence IT Essentials II: Network Operating Systems v3.0 Scope and Sequence This document is exclusive property of Cisco Systems, Inc. Permission is granted to print and copy this document for non-commercial distribution

More information

PARALLELS SERVER BARE METAL 5.0 README

PARALLELS SERVER BARE METAL 5.0 README PARALLELS SERVER BARE METAL 5.0 README 1999-2011 Parallels Holdings, Ltd. and its affiliates. All rights reserved. This document provides the first-priority information on the Parallels Server Bare Metal

More information

Deploying IBM Lotus Domino on Red Hat Enterprise Linux 5. Version 1.0

Deploying IBM Lotus Domino on Red Hat Enterprise Linux 5. Version 1.0 Deploying IBM Lotus Domino on Red Hat Enterprise Linux 5 Version 1.0 November 2008 Deploying IBM Lotus Domino on Red Hat Enterprise Linux 5 1801 Varsity Drive Raleigh NC 27606-2072 USA Phone: +1 919 754

More information

4PSA Total Backup 3.0.0. User's Guide. for Plesk 10.0.0 and newer versions

4PSA Total Backup 3.0.0. User's Guide. for Plesk 10.0.0 and newer versions 4PSA Total Backup 3.0.0 for Plesk 10.0.0 and newer versions User's Guide For more information about 4PSA Total Backup, check: http://www.4psa.com Copyright 2009-2011 4PSA. User's Guide Manual Version 84359.5

More information

25265 - SYSTEM ADMINISTRATION LAB

25265 - SYSTEM ADMINISTRATION LAB 25265 - SYSTEM ADMINISTRATION LAB Ex.NO:1 Installation of Windows Server 2003 AIM: To write Installation of Windows 2003 Server. PROCEDURE: To install Windows Server 2003: 1 Insert the Windows Server 2003

More information

Advanced SUSE Linux Enterprise Server Administration (Course 3038) Chapter 5 Manage Backup and Recovery

Advanced SUSE Linux Enterprise Server Administration (Course 3038) Chapter 5 Manage Backup and Recovery Advanced SUSE Linux Enterprise Server Administration (Course 3038) Chapter 5 Manage Backup and Recovery Objectives Develop a Backup Strategy Create Backup Files with tar Work with Magnetic Tapes Copy Data

More information

RHCSA 7RHCE Red Haf Linux Certification Practice

RHCSA 7RHCE Red Haf Linux Certification Practice RHCSA 7RHCE Red Haf Linux Certification Practice Exams with Virtual Machines (Exams EX200 & EX300) "IcGraw-Hill is an independent entity from Red Hat, Inc., and is not affiliated with Red Hat, Inc. in

More information

System Administration and your Bio-Linux Machine

System Administration and your Bio-Linux Machine System Administration and your Bio-Linux Machine System Administration and your Bio-Linux Machine...1 System Administration and your Bio-Linux Machine...2 The bare minimum of Bio-Linux system administration...

More information

ENTERPRISE LINUX SYSTEM ADMINISTRATION

ENTERPRISE LINUX SYSTEM ADMINISTRATION ENTERPRISE LINUX SYSTEM ADMINISTRATION The GL250 is an in-depth course that explores installation, configuration and maintenance of Linux systems. The course focuses on issues universal to every workstation

More information

Acronis Backup & Recovery 10 Server for Linux. Update 5. Installation Guide

Acronis Backup & Recovery 10 Server for Linux. Update 5. Installation Guide Acronis Backup & Recovery 10 Server for Linux Update 5 Installation Guide Table of contents 1 Before installation...3 1.1 Acronis Backup & Recovery 10 components... 3 1.1.1 Agent for Linux... 3 1.1.2 Management

More information

Table of Contents of the Debian GNU/Linux Administrator Handbook

Table of Contents of the Debian GNU/Linux Administrator Handbook Table of Contents of the Debian GNU/Linux Administrator Handbook The Debian Project What Is Debian? A Multi-Platform Operating System The Quality of Free Software The Legal Framework: A Non-Profit Organization

More information

Of Penguins and Wildebeest. Anthony Rodgers VA7IRL

Of Penguins and Wildebeest. Anthony Rodgers VA7IRL Of Penguins and Wildebeest Anthony Rodgers VA7IRL The Penguin Linux was created by a Swedish-speaking Finn called Linus Torvalds Version 0.01 was released in September 1991 We are now on version 2.6 It

More information

Procedure to Create and Duplicate Master LiveUSB Stick

Procedure to Create and Duplicate Master LiveUSB Stick Procedure to Create and Duplicate Master LiveUSB Stick A. Creating a Master LiveUSB stick using 64 GB USB Flash Drive 1. Formatting USB stick having Linux partition (skip this step if you are using a new

More information

Linux System Administration. System Administration Tasks

Linux System Administration. System Administration Tasks System Administration Tasks User and Management useradd - Adds a new user account userdel - Deletes an existing account usermod - Modifies an existing account /etc/passwd contains user name, user ID #,

More information

Khóa học Enterprise Linux System Administration

Khóa học Enterprise Linux System Administration Khóa học chuyên sâu vào công việc cài đặt, quản lý và bảo trì hệ thống linux bao gồm cả máy chủ và máy trạm. Nội dung chủ yếu gồm cài đăt, quản trị người dùng, quản trị file, quotas, FACLs, RAID and LVM;

More information

Red Hat System Administration 1(RH124) is Designed for IT Professionals who are new to Linux.

Red Hat System Administration 1(RH124) is Designed for IT Professionals who are new to Linux. Red Hat Enterprise Linux 7- RH124 Red Hat System Administration I Red Hat System Administration 1(RH124) is Designed for IT Professionals who are new to Linux. This course will actively engage students

More information

Fred Hantelmann LINUX. Start-up Guide. A self-contained introduction. With 57 Figures. Springer

Fred Hantelmann LINUX. Start-up Guide. A self-contained introduction. With 57 Figures. Springer Fred Hantelmann LINUX Start-up Guide A self-contained introduction With 57 Figures Springer Contents Contents Introduction 1 1.1 Linux Versus Unix 2 1.2 Kernel Architecture 3 1.3 Guide 5 1.4 Typographical

More information

LOCKSS on LINUX. Installation Manual and the OpenBSD Transition 02/17/2011

LOCKSS on LINUX. Installation Manual and the OpenBSD Transition 02/17/2011 LOCKSS on LINUX Installation Manual and the OpenBSD Transition 02/17/2011 1 Table of Contents Overview... 3 LOCKSS Hardware... 5 Installation Checklist... 7 BIOS Settings... 10 Installation... 11 Firewall

More information

Birmingham Environment for Academic Research. Introduction to Linux Quick Reference Guide. Research Computing Team V1.0

Birmingham Environment for Academic Research. Introduction to Linux Quick Reference Guide. Research Computing Team V1.0 Birmingham Environment for Academic Research Introduction to Linux Quick Reference Guide Research Computing Team V1.0 Contents The Basics... 4 Directory / File Permissions... 5 Process Management... 6

More information

LAE 4.6.0 Enterprise Server Installation Guide

LAE 4.6.0 Enterprise Server Installation Guide LAE 4.6.0 Enterprise Server Installation Guide 2013 Lavastorm Analytics, Inc. Rev 01/2013 Contents Introduction... 3 Installing the LAE Server on UNIX... 3 Pre-Installation Steps... 3 1. Third-Party Software...

More information

LOCKSS on LINUX. CentOS6 Installation Manual 08/22/2013

LOCKSS on LINUX. CentOS6 Installation Manual 08/22/2013 LOCKSS on LINUX CentOS6 Installation Manual 08/22/2013 1 Table of Contents Overview... 3 LOCKSS Hardware... 5 Installation Checklist... 6 BIOS Settings... 9 Installation... 10 Firewall Configuration...

More information

GL-250: Red Hat Linux Systems Administration. Course Outline. Course Length: 5 days

GL-250: Red Hat Linux Systems Administration. Course Outline. Course Length: 5 days GL-250: Red Hat Linux Systems Administration Course Length: 5 days Course Description: The GL250 is an in-depth course that explores installation, configuration and maintenance of Linux systems. The course

More information

How To Set Up A Backupassist For An Raspberry Netbook With A Data Host On A Nsync Server On A Usb 2 (Qnap) On A Netbook (Qnet) On An Usb 2 On A Cdnap (

How To Set Up A Backupassist For An Raspberry Netbook With A Data Host On A Nsync Server On A Usb 2 (Qnap) On A Netbook (Qnet) On An Usb 2 On A Cdnap ( WHITEPAPER BackupAssist Version 5.1 www.backupassist.com Cortex I.T. Labs 2001-2008 2 Contents Introduction... 3 Hardware Setup Instructions... 3 QNAP TS-409... 3 Netgear ReadyNas NV+... 5 Drobo rev1...

More information

How To Run A Linux Agent On Alandesk (For Free) On A Linux Server (For A Non-Free) On Your Ubuntu Computer (For Cheap) On An Ubuntu 2.5 (For Ubuntu) On Linux

How To Run A Linux Agent On Alandesk (For Free) On A Linux Server (For A Non-Free) On Your Ubuntu Computer (For Cheap) On An Ubuntu 2.5 (For Ubuntu) On Linux LANDesk Management Suite 8.8 SP3 Best Known Method for Managing Linux Agents Contents Introduction... 4 Scope... 4 Assumptions... 4 Supported Linux Platforms... 4 Prerequisite Software... 4 The Linux Agent

More information

Security Correlation Server Quick Installation Guide

Security Correlation Server Quick Installation Guide orrelogtm Security Correlation Server Quick Installation Guide This guide provides brief information on how to install the CorreLog Server system on a Microsoft Windows platform. This information can also

More information

System Resources. To keep your system in optimum shape, you need to be CHAPTER 16. System-Monitoring Tools IN THIS CHAPTER. Console-Based Monitoring

System Resources. To keep your system in optimum shape, you need to be CHAPTER 16. System-Monitoring Tools IN THIS CHAPTER. Console-Based Monitoring CHAPTER 16 IN THIS CHAPTER. System-Monitoring Tools. Reference System-Monitoring Tools To keep your system in optimum shape, you need to be able to monitor it closely. Such monitoring is imperative in

More information

WES 9.2 DRIVE CONFIGURATION WORKSHEET

WES 9.2 DRIVE CONFIGURATION WORKSHEET WES 9.2 DRIVE CONFIGURATION WORKSHEET This packet will provide you with a paper medium external to your WES box to write down the device names, partitions, and mount points within your machine. You may

More information

Windows Template Creation Guide. How to build your own Windows VM templates for deployment in Cloudturk.

Windows Template Creation Guide. How to build your own Windows VM templates for deployment in Cloudturk. Windows Template Creation Guide How to build your own Windows VM templates for deployment in Cloudturk. TABLE OF CONTENTS 1. Preparing the Server... 2 2. Installing Windows... 3 3. Creating a Template...

More information

Introduction to Mac OS X

Introduction to Mac OS X Introduction to Mac OS X The Mac OS X operating system both a graphical user interface and a command line interface. We will see how to use both to our advantage. Using DOCK The dock on Mac OS X is the

More information

OS Installation Guide Red Hat Linux 9.0

OS Installation Guide Red Hat Linux 9.0 OS Installation Guide Red Hat Linux 9.0 C o n t e n t s Contents 3 About This Guide 5 1 Planning Your Installation 7 Requirements 7 2 Installing Red Hat 9.0 Error! Bookmark not defined. What s Next? 19

More information

Installing Virtual Coordinator (VC) in Linux Systems that use RPM (Red Hat, Fedora, CentOS) Document # 15807A1-103 Date: Aug 06, 2012

Installing Virtual Coordinator (VC) in Linux Systems that use RPM (Red Hat, Fedora, CentOS) Document # 15807A1-103 Date: Aug 06, 2012 Installing Virtual Coordinator (VC) in Linux Systems that use RPM (Red Hat, Fedora, CentOS) Document # 15807A1-103 Date: Aug 06, 2012 1 The person installing the VC is knowledgeable of the Linux file system

More information

Security Correlation Server Quick Installation Guide

Security Correlation Server Quick Installation Guide orrelog Security Correlation Server Quick Installation Guide This guide provides brief information on how to install the CorreLog Server system on a Microsoft Windows platform. This information can also

More information

INASP: Effective Network Management Workshops

INASP: Effective Network Management Workshops INASP: Effective Network Management Workshops Linux Familiarization and Commands (Exercises) Based on the materials developed by NSRC for AfNOG 2013, and reused with thanks. Adapted for the INASP Network

More information

Kaspersky Endpoint Security 8 for Linux INSTALLATION GUIDE

Kaspersky Endpoint Security 8 for Linux INSTALLATION GUIDE Kaspersky Endpoint Security 8 for Linux INSTALLATION GUIDE A P P L I C A T I O N V E R S I O N : 8. 0 Dear User! Thank you for choosing our product. We hope that this documentation will help you in your

More information

Introduction to AIX 6L System Administration Course Summary

Introduction to AIX 6L System Administration Course Summary Contact Us: (616) 875-4060 Introduction to AIX 6L System Administration Course Summary Length: 5 days Recommendation Statement: Basic computer skills Course Description: This course teaches introductory

More information

Introduction to Linux (Authentication Systems, User Accounts, LDAP and NIS) Süha TUNA Res. Assist.

Introduction to Linux (Authentication Systems, User Accounts, LDAP and NIS) Süha TUNA Res. Assist. Introduction to Linux (Authentication Systems, User Accounts, LDAP and NIS) Süha TUNA Res. Assist. Outline 1. What is authentication? a. General Informations 2. Authentication Systems in Linux a. Local

More information

Partek Flow Installation Guide

Partek Flow Installation Guide Partek Flow Installation Guide Partek Flow is a web based application for genomic data analysis and visualization, which can be installed on a desktop computer, compute cluster or cloud. Users can access

More information

HTTP-FUSE PS3 Linux: an internet boot framework with kboot

HTTP-FUSE PS3 Linux: an internet boot framework with kboot HTTP-FUSE PS3 Linux: an internet boot framework with kboot http://openlab.jp/oscirclar/ Kuniyasu Suzaki and Toshiki Yagi National Institute of Advanced Industrial Science and Technology Embedded Linux

More information

USEFUL UNIX COMMANDS

USEFUL UNIX COMMANDS cancel cat file USEFUL UNIX COMMANDS cancel print requested with lp Display the file cat file1 file2 > files Combine file1 and file2 into files cat file1 >> file2 chgrp [options] newgroup files Append

More information

Acronis Backup & Recovery 10 Server for Linux. Command Line Reference

Acronis Backup & Recovery 10 Server for Linux. Command Line Reference Acronis Backup & Recovery 10 Server for Linux Command Line Reference Table of contents 1 Console mode in Linux...3 1.1 Backup, restore and other operations (trueimagecmd)... 3 1.1.1 Supported commands...

More information

How to Install and Run Tibia on Linux Using Wine without Windows Contents

How to Install and Run Tibia on Linux Using Wine without Windows Contents How to Install and Run Tibia on Linux Using Wine without Windows Contents 1 Disclaimer 2 Overview/Background Information 3 Pre-requirements 4 Installing Wine 4.1 Get to know the environment 4.2 The easiest

More information

Server Installation/Upgrade Guide

Server Installation/Upgrade Guide Server Installation/Upgrade Guide System Version 3.8 2001-2009 Echo 360, Inc. Echo360 is a trademark of Echo360, Inc. Echo360 is a registered trademark of Echo360 Inc. in Australia. All other trademarks

More information

Attix5 Pro Server Edition

Attix5 Pro Server Edition Attix5 Pro Server Edition V7.0.3 User Manual for Linux and Unix operating systems Your guide to protecting data with Attix5 Pro Server Edition. Copyright notice and proprietary information All rights reserved.

More information

New Lab Intro to KDE Terminal Konsole

New Lab Intro to KDE Terminal Konsole New Lab Intro to KDE Terminal Konsole After completing this lab activity the student will be able to; Access the KDE Terminal Konsole and enter basic commands. Enter commands using a typical command line

More information

II. Installing Debian Linux:

II. Installing Debian Linux: Debian Linux Installation Lab Spring 2013 In this lab you will be installing Debian Linux in a KVM (Kernel Virtual Machine). You will be guided through a series of steps to setup the network (IP addresses,

More information

Symantec System Recovery 2013 User's Guide. Linux Edition

Symantec System Recovery 2013 User's Guide. Linux Edition Symantec System Recovery 2013 User's Guide Linux Edition Symantec System Recovery 2013 for Linux User's Guide The software described in this book is furnished under a license agreement and may be used

More information

INSTALL ZENTYAL SERVER

INSTALL ZENTYAL SERVER GUIDE FOR Zentyal Server is a small business server based on Ubuntu s LTS server version 10.04 and the ebox platform. It also has the LXDE desktop installed with Firefox web browser and PCMAN File manager.

More information

INF-110. GPFS Installation

INF-110. GPFS Installation INF-110 GPFS Installation Overview Plan the installation Before installing any software, it is important to plan the GPFS installation by choosing the hardware, deciding which kind of disk connectivity

More information

GroundWork Monitor Open Source 5.1.0 Installation Guide

GroundWork Monitor Open Source 5.1.0 Installation Guide GroundWork Monitor Open Source 5.1 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version

More information

Create a virtual machine at your assigned virtual server. Use the following specs

Create a virtual machine at your assigned virtual server. Use the following specs CIS Networking Installing Ubuntu Server on Windows hyper-v Much of this information was stolen from http://www.isummation.com/blog/installing-ubuntu-server-1104-64bit-on-hyper-v/ Create a virtual machine

More information

RedHat (RHEL) System Administration Course Summary

RedHat (RHEL) System Administration Course Summary Contact Us: (616) 875-4060 RedHat (RHEL) System Administration Course Summary Length: 5 Days Prerequisite: RedHat fundamentals course Recommendation Statement: Students should have some experience with

More information

Wolfr am Lightweight Grid M TM anager USER GUIDE

Wolfr am Lightweight Grid M TM anager USER GUIDE Wolfram Lightweight Grid TM Manager USER GUIDE For use with Wolfram Mathematica 7.0 and later. For the latest updates and corrections to this manual: visit reference.wolfram.com For information on additional

More information

SYMANTEC BACKUPEXEC2010 WITH StorTrends

SYMANTEC BACKUPEXEC2010 WITH StorTrends SYMANTEC BACKUPEXEC2010 WITH StorTrends 1 Index 1. Introduction 3 2. Test Environment 3 3. System Requirement 4 4. Storage Requirement 4 5. Installation of Symantec Backup EXEC 2010 4 6. Installing Backup

More information

Dell Proximity Printing Solution. Installation Guide

Dell Proximity Printing Solution. Installation Guide Dell Proximity Printing Solution Installation Guide Notes and Cautions NOTE: A NOTE indicates important information that helps you make better use of your computer. CAUTION: A CAUTION indicates potential

More information

Redundant Array of Inexpensive/Independent Disks. RAID 0 Disk striping (best I/O performance, no redundancy!)

Redundant Array of Inexpensive/Independent Disks. RAID 0 Disk striping (best I/O performance, no redundancy!) 1 Data storage A Simple Overview 1. HW: SCSI/IDE/SATA/SAS (SAN!) 2. HW/SW: RAID 3. SW: Logical volumes 4. SW: Journalling filesystems 5. SW/NET: Networked filesystem (NAS!) DAS-NAS-SAN 2 RAID Redundant

More information

Ubuntu 12.04 Sever Administration

Ubuntu 12.04 Sever Administration Ubuntu 12.04 Sever Administration 1. Introduction to Ubuntu Linux Ubuntu Server Ubuntu Server 12.04 Server Installation Alternatives and Options Server on the Desktop Installation Desktop on the server

More information

Acronis Backup & Recovery 10 Server for Linux. Installation Guide

Acronis Backup & Recovery 10 Server for Linux. Installation Guide Acronis Backup & Recovery 10 Server for Linux Installation Guide Table of contents 1 Before installation...3 1.1 Acronis Backup & Recovery 10 components... 3 1.1.1 Agent for Linux... 3 1.1.2 Management

More information

Do it Yourself System Administration

Do it Yourself System Administration Do it Yourself System Administration Due to a heavy call volume, we are unable to answer your call at this time. Please remain on the line as calls will be answered in the order they were received. We

More information

CTERA Agent for Linux

CTERA Agent for Linux User Guide CTERA Agent for Linux September 2013 Version 4.0 Copyright 2009-2013 CTERA Networks Ltd. All rights reserved. No part of this document may be reproduced in any form or by any means without written

More information

What is included in the ATRC server support

What is included in the ATRC server support Linux Server Support Services What is included in the ATRC server support Installation Installation of any ATRC Supported distribution Compatibility with client hardware. Hardware Configuration Recommendations

More information

IT Essentials II: Network Operating Systems V 3.0

IT Essentials II: Network Operating Systems V 3.0 IT Essentials II: Network Operating Systems V 3.0 Linux Labs - Knoppix Version Student Manual v3 1-77 IT Essentials II v3 Linux Labs - Knoppix version November 2005 Configuring Knoppix as an NIS Client

More information

http://elinux.org/r-pi_nas#install_the_samba_software

http://elinux.org/r-pi_nas#install_the_samba_software 1 of 12 20 Jul 2013 Sat 9:19 PM R-Pi NAS From elinux.org Back to RPi Guides. Raspberry Pi Network Attached Storage Contents 1 What does it do? 2 What do you need? 3 What skill level is required? 4 How

More information

HP-UX System and Network Administration for Experienced UNIX System Administrators Course Summary

HP-UX System and Network Administration for Experienced UNIX System Administrators Course Summary Contact Us: (616) 875-4060 HP-UX System and Network Administration for Experienced UNIX System Administrators Course Summary Length: Classroom: 5 days Virtual: 6 hrs/day - 5 days Prerequisite: System Administration

More information

Recommended File System Ownership and Privileges

Recommended File System Ownership and Privileges FOR MAGENTO COMMUNITY EDITION Whenever a patch is released to fix an issue in the code, a notice is sent directly to your Admin Inbox. If the update is security related, the incoming message is colorcoded

More information

Sophos Anti-Virus for Linux configuration guide. Product version: 9

Sophos Anti-Virus for Linux configuration guide. Product version: 9 Sophos Anti-Virus for Linux configuration guide Product version: 9 Document date: September 2014 Contents 1 About this guide...8 2 About Sophos Anti-Virus for Linux...9 2.1 What Sophos Anti-Virus does...9

More information

How To Use 1Bay 1Bay From Awn.Net On A Pc Or Mac Or Ipad (For Pc Or Ipa) With A Network Box (For Mac) With An Ipad Or Ipod (For Ipad) With The

How To Use 1Bay 1Bay From Awn.Net On A Pc Or Mac Or Ipad (For Pc Or Ipa) With A Network Box (For Mac) With An Ipad Or Ipod (For Ipad) With The 1-bay NAS User Guide INDEX Index... 1 Log in... 2 Basic - Quick Setup... 3 Wizard... 3 Add User... 6 Add Group... 7 Add Share... 9 Control Panel... 11 Control Panel - User and groups... 12 Group Management...

More information

How To Run Linux On Windows 7 (For A Non-Privileged User) On A Windows 7 Computer (For Non-Patty) On Your Computer (Windows) On An Unix Computer (Unix) On Windows) On The Same

How To Run Linux On Windows 7 (For A Non-Privileged User) On A Windows 7 Computer (For Non-Patty) On Your Computer (Windows) On An Unix Computer (Unix) On Windows) On The Same Working from Home Tools and Technologies for Improving Your Programming Environment Daniel J. Hood danielhood@umbc.edu Overview Tools for MS Windows (and others OSs) SSH SCP X Windows Tunneling X Connections

More information

Verax Service Desk Installation Guide for UNIX and Windows

Verax Service Desk Installation Guide for UNIX and Windows Verax Service Desk Installation Guide for UNIX and Windows March 2015 Version 1.8.7 and higher Verax Service Desk Installation Guide 2 Contact Information: E-mail: sales@veraxsystems.com Internet: http://www.veraxsystems.com/

More information

DS License Server V6R2013x

DS License Server V6R2013x DS License Server V6R2013x DS License Server V6R2013x Installation and Configuration Guide Contains JAVA SE RUNTIME ENVIRONMENT (JRE) VERSION 7 Contains IBM(R) 64-bit SDK for AIX(TM), Java(TM) Technology

More information

NI Real-Time Hypervisor for Windows

NI Real-Time Hypervisor for Windows QUICK START GUIDE NI Real-Time Hypervisor Version 2.1 The NI Real-Time Hypervisor provides a platform you can use to develop and run LabVIEW and LabVIEW Real-Time applications simultaneously on a single

More information

Linux Template Creation Guide. How to build your own Linux VM templates for deployment in Cloudturk.

Linux Template Creation Guide. How to build your own Linux VM templates for deployment in Cloudturk. Linux Template Creation Guide How to build your own Linux VM templates for deployment in Cloudturk. TABLE OF CONTENTS 1. Installing Xen Hypervisor... 2 2. Installing DomU (Paravirtualized)... 5 3. Installing

More information

SETTING UP A LAMP SERVER REMOTELY

SETTING UP A LAMP SERVER REMOTELY SETTING UP A LAMP SERVER REMOTELY It s been said a million times over Linux is awesome on servers! With over 60 per cent of the Web s servers gunning away on the mighty penguin, the robust, resilient,

More information