101.1: DEMO? - Change BIOS settings - change boot device, disable devices

Size: px
Start display at page:

Download "101.1: DEMO? - Change BIOS settings - change boot device, disable devices"

Transcription

1 ================== LPIC 101 ================= Installation lab Put /, /home on separate partitions. Leave 10G free Create non-root account. Install Gnome desktop. Use static IP addressing. Assign an IP address to each student and have them choose a hostname : DEMO? - Change BIOS settings - change boot device, disable devices 101.2: Do a single-user boot 101.3: Change default runlevel in inittab to 3 and reboot. Then transition to runlevel 5 Use chkconfig to enable or disable sshd 102.1: No lab 102.2: grub shell? Add a stanza in grub.conf to do a single-user boot Set a grub password 102.3: Determine what libraries are used by (e.g. apache) using ldd Remove the symlink to libgssapi, run ldd again : No lab possible 102.5: List all packages with rpm -qa Use yumdownloader to download an rpm, then install it with rpm -i Query to see which package a /bin/bash came from (rpm -qf)... what other files are in that package? Have them add CentosExtras to repositories *** Add the centos CD to the repository list, if no internet, mv the CentOS-Base.repo file out of the way Have them install mysql, nmap 103.1: Setting / unsetting variables Simple script "echo the value of foo if $foo"; cd /etc In parent, foo=bar, run script, show foo not inherited Now export foo, re-run script, show foo is inherited Look something up with man man passwd vs man 5 passwd 103.2: cut user names from /etc/passwd, sort them reverse numeric sort on output from du, pick off first 10 lines 103.3: using find create tar file: check size. Run file on it. Compress it with gzip. check size again, check file type with "file" Uncompress it. Compress it with bzip2. Check size again Filename wildcards 103.4: Using streams, pipes and redirects Redirect output from date into a file Append output from ls into the same file 1/11

2 Redirect find output (and find's stderr to /dev/null) Compare "wc < foo.txt" with "wc foo.txt". Why is the output different? Use "mail" with stdin redirection to send a pre-prepared message from a file Pipe output from ls -l into sort, do a reverse numeric sort on the file size Compare: ls xargs echo hello ls xargs -n 1 hello Look up the man page for xargs. What does the -n option do? Find the largest UID in the password file. Solution: cut -d: -f1 /etc/passwd sort -n tail -1 Use tee to capture the output from find into a file, AND show it on the screen 103.5: Create, monitor and kill processes Run top. How busy is the CPU? How much memory is in use? How much swap space is in use? Which process is using the most CPU time? Run ps. What is the process ID of your shell? Run ps -e. What is the process ID of init? Job control: something like: Start xclock -update 1 in the background Start xeyes in the background Run the jobs command, see two background jobs Bring xclock into the foreground Suspend it (^Z) notice clock stops ticking Resume it in the foreground, notice clock starts ticking again Kill xclock using a kill command from the command line Kill xeyes using top Examine the output from the commmand 'free'. How much memory does the machine have? How much is free? nohup??? 103.6: Modify process execution priorities Start xclock in the background with a nice value of 10 Examine its current niceness using top Use renice to set xclock's niceness to 15 Verify the the setting using top 103.7: Search text files using regular expressions Use grep to find the line in /etc/password that relates to your own account 2/11

3 Use grep to find the lines in /var/log/dmesg that relate to SELinux Did the X server report any errors in its log file? (Hint: look for '(EE)' Use grep to show the non-comment lines in /etc/ssh/ssh_config. Can you also find a way to eliminate the blank lines? Do the same thing using sed List the lines in /etc/shadow relating to accounts that are NOT disabled. (That is they do not have a!! or a * in the password field). Pipe the output into cut to display just the user names of these accounts. Solution: grep -v ':[\!*]' /etc/shadow cut -d: -f : Perform basic file editing operations using vi Make a copy of /etc/ssh/sshd_config in your home directory. Use vi to edit the file and make the following changes: 1. Uncomment the line "PermitRootLogin" and change "yes" to "no" 2. Delete all lines relating to Kerberos 3. Add a comment at the start of the file to say that you edited it 4. Use a global susbsitution to change all occurrences of 'yes' to 'no' 5. Save the file and quit the editor 104.1: Create partitions and file systems one Use fdisk to create two new partitions: one of type 83 and size 5Gbytes, and of type 82 and size 1 Gbyte. Use "mkfs -t ext2 -j" to create an ext3 file system on the first of these partitions. Be careful to use the correct partition for this! Use mkswap to prepare the second partition as swap space. Run swapon -s and free to show current swap partitions and available space Run swapon <your-device-name> to add the new swap partition Run swapon -s and free to show current swap partitions and available space and 104.3: on Run df -h. What partitions are currently mounted? How much space is available the root partition? Run tune2fs -c and set the maximum mount count for the partition to 2 Create a directory called /backup for use as a mount point. Mount your new file system (from topic 104.1) onto /backup Run df -h again and verify that your new partition is mounted. How much free space does it have? Make a copy of the /etc directory on your new partition. List the contents of /backup Unmount the partition. List the contents of /backup again Add entries to /etc/fstab so that the new swap partition and the new file system are automatically mounted at boot time. For the line that refers to the file 3/11

4 system (not the swap partition) specify the "users" mount option. Reboot the system. Run the mount command without arguments and verify your filesystem is mounted Run swapon -s and verify that your new swap area is active Verify that you can unmount the /backup file system as a non-root user 104.4: Manage disk quotas No lab 104.5: By examining the access permissions on the relevant files and directories, predict which of the following commands would suceed. For the commands that would fail, determine which permissions you are lacking. Assume you're in your home directory. cp /etc/passwd./desktop cp /etc/shadow./desktop rm /etc/passwd ls -l /var/spool/cron ls -l /var/spool/mail cp.bashrc /etc/passwd cp.bashrc /etc/xyzzy Make sure your new file system from topic is mounted on /backup Modify the permissions on the /backup directory so that all users have write permission. Verify that you can copy files into this directory. Set your umask to 000 Create a directory called d1 in your home directory Examine the access permissions on d1 Set your umask to 077 Create a directory called d2 in your home directory Predict what mode d2 will have. Check and see if you are correct : Create and change hard and symbolic links ================= LPIC 102 ================ 105.1: Customise and use the shell environment Define some aliases. Put them in ~/.bashrc. Start a new shell. Verify the aliases are there 105.2: Customise or write simple shell scripts Write a script that takes a list of filenames as arguments For each one, if the file does not exist, send a mail message to root to say so. Write a script that takes a list of user names as arguments For each one, if that user is using more than 5000 block of disk space, mail a message to root to say so SOLUTIONS: first script /11

5 #!/bin/bash for file in $* do if [! -e $file ] then echo $file does not exist mail -s "missing file" root fi done second script #!/bin/bash for user in $* do diskused=$(du -s /home/$user cut -f1) echo $user $diskused if [[ $diskused -gt ]] # if (( diskused > )) then echo echo $user is using $diskused blocks mail -s "high disk usage" root fi done 105.3: SQL data management Add the centos CD to the repository list, if no internet, mv the CentOS-Base.repo file out of the way Install mysql-server Start the mysqld deamon mysql -u root < demodb.sql (This file can be downloaded from the ict@innovation portal) UNFINISHED Select data from the products tables Select data from the the products table and join to the supplier table select data from the supplier table - see all rows Insert a new supplier into the supplier tables Select data from the supplier table to verify that the data has been inserted Delete the inserted supplier Select from supplier table to verify that the supplier has been deleted Install and configure X11 run the command xwinfo run the command xdpyinfo Setup a display manager For this lab students will need to pair up. We will have each student export their x display to their partner and start an application, such as firefox, that will display on their partners monitor. The step below are for each student to carry out 1. edit the /etc/gdm/gdm-custom.conf and add the following entries in the 5/11

6 appropriate places. [security] DisallowTCP=false AllowRemoteRoot=true [xdmcp] Enable=true 2. restart x server, this can be done by rebooting or by killing and restarting x, 3. enter xhost +<ip address of partners machines> 4. enter export DISPLAY=<ip addy of partner machine> 5. firefox -- this should start firefox locally but the display will run on the partners machine. We will change the greeter used by Centos. For this we will need to change the file /etc/gdm/custom.conf. Add the following in the appropriate space. You can change the greeter back by changing gdmlogin to gdmgreeter. [daemon] Greeter=/usr/libexec/gdmlogin We can also change the image by taking a screenshot with the screenshot tool and changing the logo to use the screenshot. [greeter] #Logo=/usr/share/pixmaps/gdm-foot-logo.png Logo=/usr/share/pixmaps/Screenshot.png Accessibility No Lab Manage user and group accounts and related system files add a user temba to the system with useradd, create a home directory with -m set user password with passwd adduser to group with usermod run id temba to see if user is member of the group add a group called finance with groupadd make temba a group administrator with gpasswd -A su to temba and see if you can add yourself as a member of a group with gpasswd -a run id and see that temba is not a member of the group finance less /etc/group and see that temba is an administrator of the group, by looking at the :: exit the su context create a directory /finance and copy some file to it. change the group on /finance with chgrp -r /finance - this will make all files owned by the finance group change the permissions on the directory and files so they are only accessible by the owner and group. i.e chmod -R 660 /finance/* and change the directory to chmod 770 /finance 6/11

7 su to temba and observe that you cannot list the /finance directory or any file in it. use the gpwasswd -a temba command to make temba a member of the group finance observer that temba can enter the /finance directory and read files and create new ones exit su run groupdel finance. and do a ls -l /. Notice that the group id is displayed and not the group name. this is because deleting a group does not change ownership of files owned by that group. remove the /finance directory ls /home to see temba's home director delete temba with userdel -r, observe that the user home directory is also deleted : Add a cron job to send a timestamp to a file in their home directory every minute Add cron job that displays a gui interface (to be verified) create 'command_list.txt' in your home directory, and in it a command such as - mail -s "i just run at" root run at -f /home/my_account/command_list now compare with running the same instruction as: at now Localisation and internationalisation No Lab =============== 108.1: Maintain system time Set the correct time zone for your location Set the system time and date to the correct values Use the ntpdate command to set the time from a time server. You can use the time server suggested in the notes or one suggested by the instructor. Install the appropriate package for the ntp server. Modify the /etc/ntp.conf file to use two time servers, either the ones suggested in the notes or the ones suggested by your instructor. Start the ntp server : System logging Examine the current /etc/syslog.conf file. From your examination of the file, where will messages of priority kernel.warning be sent? Try loading a new module into the kernel (modprobe tulip) and verify that you can see the messages logged by this module as it is loaded. ("Tulip" is a module for a network card driver). Modify the /etc/syslog.conf file so that all messages from facility local4 are sent to the first console terminal, /dev/tty1. Don't forget to send a HUP signal to syslogd after changing the file. Now use the logger command to send a message from facility local4 7/11

8 with priority info. Switch to the first console terminal and verify that the message appears. Does the message also appear in /var/log/messages? [HARDER] Work with another class student. Configure syslog so that messages from facility local4 on student A's meachine are also sent to student B's machine. Verify that this is working 108.3: Mail Transfer Agent (MTA) basics ls - Use the mail command to send a message to your own user account. You may have to wait a minute for the message to be delivered. Examine the file var/spool/mail/your-user-name. This is your "maildrop", where the server stores messages you haven't read yet. You should see your message. Read the message using the mail command without arguments. Use adduser to create two new additional accounts called alex and beth. Edit the /etc/aliases file and add an alias called student that contains the user names alex and beth. Run the command newaliases to rebuild the alias database. Send a mail message to the students alias. Wait a moment for it to be delivered. Examine the maildrop files /var/spool/mail/alex and /var/spool/mail/beth and verify that the message arrived in both. Create a.forward file in your home directory, containing a single line that forwards your mail to the file /tmp/forward and to the account alex. Send a mail message to your own user account. Verify that it arrives in the file /tmp/forward and is also delivered to alex. [NOT WORKING] 108.4: Manage printers and printing If you have a physical printer avaiilable, use the CUPS web-based interface to add it to the CUPS print system. (Start a browser and browse to Use a command-line tool such as lpr to send a text file to the printer and verify that it is printed correctly. If you do not have a physical printer available, simply add a fictitious HP deskjet printer. You will not be able to print but you will be able to verify that you can add and remove jobs from the print queue. After you have added the printer, run the command lpstat -t to verify that it is known to the CUPS print system. Now run the command cupsdisable to stop printing on your printer. Use the lpr command to print some files on your printer. Verify the content of the printer queue with lpq. Remove one of the jobs from the queue with lprm. Use the reject command to prevent new jobs being sent to the printer queue. Verify that you can no longer use the lpr command to print files to that printer : Fundamentals of Internet Protocols Run the command ifconfig eth0 to examine the settings of your network interface. From this information, determine: (a) your IP address, (b) your netmask, (c) Your network address, (d) the broadcast address of your network. Suppose that your network interface is connected to the network /20 (using CIDR notation). Which of the following IP addresses are on the same 8/11

9 network? [Here give 4 example addresses] Examine the file /etc/services. What ports do the services ssh, smtp and http listen on? 109.2: Basic Network Configuration Examine the output of the command lspci and determine what type of Ethernet card your machine has. Ask your neighbour for his IP address. Verify that you can ping this address. Now add an entry to /etc/hosts which associates the name "neighbour" with your neighbour's IP address. Verify that you can now ping your neighbour's machine by specifying the hostname "neighbour" instead of an IP address. Examine the file /etc/sysconfig/network. Is networking configured to start at boot time? What host name is defined here? Examine the file /etc/sysconfig/network-scripts/ifcfg-eth0. Is this network interface statically configured or does it use DHCP? If it's a static configuration, what is the IP address of this interface? Does this agree with the value reported by ifconfig? Modify this file to (temporarily) change your IP address by adding 100 to the final octet. For example if your current IP address is , change it to Restart the eth0 interface and run ifconfig again to verify that the change has been made. Ask your neighbour to trying pinging you at this new address. Don't forget to set your IP address back to its original value when you're done. (Note: to restart the network interface you can either run "service network restart" or use the commands ifdown and ifup to restart one specific interface.) Examine the routing table. Which entry in the table specifies the network to which your eth0 interface is connected? What is the IP address of this network. Which entry in the table specifies the default gateway? What is the IP address of this gateway? : Basic Network Troubleshooting Use dig to perform a DNS lookup for the machine From the output of dig, determine (a) the IP address of and (b) the IP address of the DNS server that responded to the request. Try using nslookup to perform the same query. Which tool gives the most helpful output for debugging? Use the following four methods to determine if the sshd daemon is running on your machine: 1. See if it is present in the output from ps -ef 2. Run the command "service sshd status" 3. Run the command netstat -ant. Is anything listening on port 22? 4. Run the command lsof -i. Is anything listening on port 22? Run the command traceroute or some other site of your choice. 9/11

10 Examine the output. Which gateway does the packet go through on its first hop? How many gateways does the packet go through altogether? 109.4: Configure client-side DNS Examine the file /etc/nsswitch.conf. Which information sources are consulted for host name lookups? Is DNS used? Examine the file /etc/resolv.conf. Which DNS servers is your machine configured to use? 110.1: Perform Security Administration Tasks Set a grub password, following the procedure shown in the notes. Reboot, and verify that you can boot using the pre-defined settings without supplying the grub password, but that you need to supply the password to change those settings. Run find to get a list of all the setuid programs owned by root. Save the list in a file. Log in as root and set the setuid bit on the program /bin/cat. Run the find command again and save the output in a second file. diff the files. Do you see the new setuid program? Why would it be VERY insecure if cat ran as a setuid program on a real-world system? Run chage -l to list the password ageing settings for your own account. Change the settings so that your account will expire on 31 December of the current year and so that you are required to change your password every month. Run chage -l again to verify the new settings. open? Install nmap and run a port scan on your neighbour's machine. Which ports are As root, edit the file /etc/security/limits.conf and set a hard limit on file size of 50 Kbytes for your own account. Log out and log back in again. Run the ulimit -a command and verify that the file size limit is what you expect. Try to copy the linux kernel image from /boot (the name will be of the form vmlinuz-2.6.*) into your home directory. Does this succeed? If not, how much of the file is copied? Is this consistent with your ulimit setting? Set the filesize limit back to being unlimited. Log out and log in again to restore the original limit : Set up host security In this exercise we'll configure xinetd to enable the very simple chargen service. First, verify that the chargen service is not running by verifying that nothing is listening on port 19. Modify the xinetd config file for chargen to enable the service. Send a HUP signal to xinetd. Verify that there is now a service listening on port 19. Try connecting to the chargen service with "telnet localhost chargen". You should see a continuous stream of characters output. (To get back to a telnet prompt enter ^] then type quit.) Ask your neighbour to try telnetting to your chargen service. Does this work? Modify your xinetd configuration so that you can still connect to your chargen service but your neighbour cannot. In this exercise we'll use TCP wrappers to limit access to sshd to one of 10/11

11 your fellow students, but deny it to others. First run ldd to verify that your sshd is linked against the libwrap library. (If it isn't, this is not going to work!) Create a /etc/hosts.deny file that contains the line: ALL: ALL Edit your /etc/hosts.allow file and add an entry that allows access to your sshd from one of your fellow students, but no-one else. Restart the sshd daemon. Verify that your chosen student is able to perform an ssh login to your machine, but other students cannot : Securing data with encryption In this exercise you will work with another student (your "neighbour") in this exercise. The object is to set up passwordless secure login using ssh and user public/private keys. Perform an ssh login to an account on your neighbour's machine. If this is the first time you have done this you'll be asked to verify the authenticity of the host. Compare the key fingerprint reported in this message with the fingerprint reported on your neighbour's machine. (See the student guide for how to do this.) Following the steps in the student guide, create a DSA key pair for yourself (do not set a password) and copy the public key into the appropriate directory on the your neighbour's machine. Verify that you can now perform a password-less ssh login to your neighbour's machine. ==== Use ssh remote port forwarding so that your neighbour can make a telnet connection to port 6789 on his local machine, and connect to your own chargen service (enabled in an earlier exercise) 11/11

CompTIA Linux Course Overview. Prerequisites/Audience. Course Outline. Exam Code: XK0-002 Course Length: 5 Days

CompTIA Linux Course Overview. Prerequisites/Audience. Course Outline. Exam Code: XK0-002 Course Length: 5 Days CompTIA Linux+ 2009 Exam Code: XK0-002 Course Length: 5 Days Course Overview This instructor-led course will prepare students for the 2009 CompTIA Linux+ certification exam. It provides a comprehensive

More information

Linux Essentials Objectives Topics:

Linux Essentials Objectives Topics: Linux Essentials Linux Essentials is a professional development certificate program that covers basic knowledge for those working and studying Open Source and various distributions of Linux. Exam Objectives

More information

The table below lists the domains measured by this examination and the extent to which they are represented in the examination.

The table below lists the domains measured by this examination and the extent to which they are represented in the examination. Introduction The Linux+ Certification is designed to measure the competencies of the Linux Professional with six to twelve months experience with the Linux operating system. This person provides basic

More information

LPIC-1 System Administrator

LPIC-1 System Administrator LPIC-1 System Administrator The world s largest and most recognized Linux Certification LPIC-1 is the first certification in LPI s multi-level Linux professional certification program. The LPIC-1 will

More information

Please choose the best answer. More than one answer might be true, but choose the one that is best.

Please choose the best answer. More than one answer might be true, but choose the one that is best. Introduction to Linux and Unix - endterm Please choose the best answer. More than one answer might be true, but choose the one that is best. SYSTEM STARTUP 1. A hard disk master boot record is located:

More information

Exam Linux-Praxis - 1 ( From )

Exam Linux-Praxis - 1 ( From  ) Exam Linux-Praxis - 1 ( From http://www.linux-praxis.de ) (1)Which of the following commands results in mailing the content of the current directory to Bob? A. mail Bob < ls B. ls > mail Bob C. ls mail

More information

TestOut Linux Pro - English 4.0.x OBJECTIVE MAPPING: CompTIA Linux+ LX0-103

TestOut Linux Pro - English 4.0.x OBJECTIVE MAPPING: CompTIA Linux+ LX0-103 TestOut Linux Pro - English 4.0.x OBJECTIVE MAPPING: CompTIA Linux+ LX0-103 CompTIA Linux+ Powered by LPI LX0-103 Objectives The Linux+ Powered by LPI Exam: LX0-103 exam covers the following topics. #

More information

hash Remember the full pathname of a name argument head Output the first part of file(s) history Command History hostname Print or set system name

hash Remember the full pathname of a name argument head Output the first part of file(s) history Command History hostname Print or set system name LINUX Commands alias Create an alias apropos Search Help manual pages (man -k) awk Find and Replace text, database sort/validate/index break Exit from a loop builtin Run a shell builtin bzip2 Compress

More information

Operating Systems Lab 1 (Users, Groups, and Security)

Operating Systems Lab 1 (Users, Groups, and Security) Operating Systems Lab 1 (Users, Groups, and Security) Overview This chapter covers the most common commands related to users, groups, and security. It will also discuss topics like account creation/deletion,

More information

client X11 Linux workstation

client X11 Linux workstation LPIC1 LPIC Linux: System Administrator LPIC 1 LPI command line LPIC-1 Linux LPIC-1 client X11 Linux workstation Unix GNU Linux Fundamentals Unix and its Design Principles FSF and GNU GPL - General Public

More information

Linux Command Line Primer. By: Scott Marshall

Linux Command Line Primer. By: Scott Marshall Linux Command Line Primer By: Scott Marshall Draft: 10/21/2007 Table of Contents Topic Page(s) Preface 1 General Filesystem Background Information 2 General Filesystem Commands 2 Working with Files and

More information

List of Linux Commands in an IPm

List of Linux Commands in an IPm List of Linux Commands in an IPm Directory structure for Executables bin: ash cpio false ln mount rm tar zcat busybox date getopt login mv rmdir touch cat dd grep ls perl sed true chgrp df gunzip mkdir

More information

CSCM98 Lab Class #5 Getting familiar with the command line

CSCM98 Lab Class #5 Getting familiar with the command line CSCM98 Lab Class #5 Getting familiar with the command line Lab Class Description. Unix has some powerful commands that can be combined inside shell scripts. Today we will have a look at various commands

More information

Basic Linux Command Line Interface Guide

Basic Linux Command Line Interface Guide This basic Linux Command-Line Interface (CLI) Guide provides a general explanation of commonly used Bash shell commands for the Barracuda NG Firewall. You can access the command-line interface by connecting

More information

SA2 v6 Linux System Administration II Net Configuration, Software, Troubleshooting

SA2 v6 Linux System Administration II Net Configuration, Software, Troubleshooting SA2 v6 Linux System Administration II Net Configuration, Software, Troubleshooting Synopsis: This is the second System Administration class, a follow-on class for new administrators with limited networking

More information

NETWORK CONFIGURATION AND SERVICES. route add default gw /etc/init.d/apache restart

NETWORK CONFIGURATION AND SERVICES. route add default gw /etc/init.d/apache restart NETWORK CONFIGURATION AND SERVICES route add default gw 192.168.0.1 /etc/init.d/apache restart NETWORK CONFIGURATION There are two main approaches to configuring a machine for network access: Static configuration

More information

Computer Systems and Architecture

Computer Systems and Architecture Computer Systems and Architecture Introduction to UNIX Stephen Pauwels University of Antwerp October 2, 2015 Outline What is Unix? Getting started Streams Exercises UNIX Operating system Servers, desktops,

More information

Prerequisites: General computing knowledge and experience. No prior knowledge with Linux is required. Supported Distributions:

Prerequisites: General computing knowledge and experience. No prior knowledge with Linux is required. Supported Distributions: This course prepares students to take the 101 exam of the LPI level 1 certification. The Linux Professional Institute (LPI) is the go to certification body for vendor independent Linux certifications.

More information

"Charting the Course... MOC B: Linux System Administration. Course Summary

Charting the Course... MOC B: Linux System Administration. Course Summary Description Course Summary This four-day instructor-led course is designed to provide students with the necessary skills and abilities to work as a professional Linux system administrator. The course covers

More information

Basic Linux Command Line Interface Guide

Basic Linux Command Line Interface Guide This basic Linux Command-Line Interface (CLI) Guide provides a general explanation of commonly used Bash shell commands for the Barracuda NG Firewall. You can access the command-line interface by connecting

More information

Prerequisites: Students must be proficient in general computing skills but not necessarily experienced with Linux or Unix. Supported Distributions:

Prerequisites: Students must be proficient in general computing skills but not necessarily experienced with Linux or Unix. Supported Distributions: This GL124 course is designed to follow an identical set of topics as the Red Hat RH124 course with the added benefit of very comprehensive lab exercises and detailed lecture material. The Red Hat Enterprise

More information

TestOut Linux Pro - English 4.0.x OBJECTIVE MAPPING: CompTIA Linux+ LX0-104

TestOut Linux Pro - English 4.0.x OBJECTIVE MAPPING: CompTIA Linux+ LX0-104 TestOut Linux Pro - English 4.0.x OBJECTIVE MAPPING: CompTIA Linux+ LX0-104 CompTIA Linux+ Powered by LPI LX0-104 Objectives The Linux+ Powered by LPI Exam: LX0-104 exam covers the following topics. #

More information

Chapter 5: User Management. Chapter 5 User Management

Chapter 5: User Management. Chapter 5 User Management Chapter 5: User Management Chapter 5 User Management Last revised: 20/6/2004 Chapter 5 Outline In this chapter we will learn Where user and group account information is stored How to manage user accounts

More information

RH133. Red Hat Linux System Administration

RH133. Red Hat Linux System Administration RH133 Red Hat Linux System Administration Version 3.5 QUESTION NO: 1 RH133 John works as a Network Administrator for Perfect Solutions Inc. The company has a Linux-based network. He is working as a root

More information

UNIX Quick Reference

UNIX Quick Reference UNIX Quick Reference This card represents a brief summary of some of the more frequently used UNIX commands that all users should be at least somewhat familiar with. Some commands listed have much more

More information

Course 55187B Linux System Administration

Course 55187B Linux System Administration Course Outline Module 1: System Startup and Shutdown This module explains how to manage startup and shutdown processes in Linux. Understanding the Boot Sequence The Grand Unified Boot Loader GRUB Configuration

More information

At course completion. Overview. Audience profile. Course Outline. : 55187B: Linux System Administration. Course Outline :: 55187B::

At course completion. Overview. Audience profile. Course Outline. : 55187B: Linux System Administration. Course Outline :: 55187B:: Module Title Duration : 55187B: Linux System Administration : 4 days Overview This four-day instructor-led course is designed to provide students with the necessary skills and abilities to work as a professional

More information

CL030 is a csage Certification Preparatory Course!

CL030 is a csage Certification Preparatory Course! Corder Enterprises International Building World Class MIS Teams, for you! CL030 is a csage Certification Preparatory Course! CL030 - LINUX System Administration Course Description: Learn and practice essential

More information

Q) Q) What is Linux and why is it so popular? Answer - Linux is an operating system that uses UNIX like Operating system...

Q) Q) What is Linux and why is it so popular? Answer - Linux is an operating system that uses UNIX like Operating system... Q) Q) What is Linux and why is it so popular? Answer - Linux is an operating system that uses UNIX like Operating system... Q) Q) What is the difference between home directory and working directory? Answer

More information

Bash command line for Linux. adduser Add a user to the system. addgroup Add a group to the system. Create an alias

Bash command line for Linux. adduser Add a user to the system. addgroup Add a group to the system. Create an alias Bash command line for Linux. adduser Add a user to the system addgroup Add a group to the system alias Create an alias apropos Search Help manual pages (man -k) apt-get Search for and install software

More information

Computer Systems and Architecture

Computer Systems and Architecture Computer Systems and Architecture Stephen Pauwels Computer Systems Academic Year 2018-2019 Overview of the Semester UNIX Introductie Regular Expressions Scripting Data Representation Integers, Fixed point,

More information

LPIC-l/CompTIA. Certification. Lmux+ ONE. ALL a IN. (Exams LPIC-1/LX0-101 & LXO-102) Robb H. Tracy EXAM GUIDE. Graw Hill

LPIC-l/CompTIA. Certification. Lmux+ ONE. ALL a IN. (Exams LPIC-1/LX0-101 & LXO-102) Robb H. Tracy EXAM GUIDE. Graw Hill ALL a IN ONE LPIC-l/CompTIA t Lmux+ TM Certification EXAM GUIDE (Exams LPIC-1/LX0-101 & LXO-102) Robb H. Tracy TECHNISCHE INFORMATIONSBiBLIOTHEK UNIVER! ivjc Graw Hill BIBUOTHEK VER New York Chicago San

More information

RedHat. Rh202. Redhat Certified Technician on Redhat Enterprise Linux 4 (Labs)

RedHat. Rh202. Redhat Certified Technician on Redhat Enterprise Linux 4 (Labs) RedHat Rh202 Redhat Certified Technician on Redhat Enterprise Linux 4 (Labs) http://killexams.com/exam-detail/rh202 QUESTION: 156 Who ever creates the files/directories on /data group owner should be automatically

More information

SysadminSG RHCSA Study Guide

SysadminSG RHCSA Study Guide SysadminSG RHCSA Study Guide This is the RHCSA Study Guide for the System Administration Study Group. The study guide is intended to be printed by those who wish to study common tasks performed by many

More information

Prerequisites: Students should be comfortable with computers. No familiarity with Linux or other Unix operating systems is required.

Prerequisites: Students should be comfortable with computers. No familiarity with Linux or other Unix operating systems is required. GL-120: Linux Fundamentals Course Length: 4 days Course Description: The GL120 is a challenging course that focuses on the fundamental tools and concepts of Linux and Unix. Students gain proficiency using

More information

ITEC451 Network Design & Analysis Laboratory Guide: Appendix

ITEC451 Network Design & Analysis Laboratory Guide: Appendix Linux Guide Accessing the command prompt Before you can access the command prompt, you must login to the system. The administrative user on Linux machines is named root. On most Linux distributions, you

More information

Linux Essentials. Smith, Roderick W. Table of Contents ISBN-13: Introduction xvii. Chapter 1 Selecting an Operating System 1

Linux Essentials. Smith, Roderick W. Table of Contents ISBN-13: Introduction xvii. Chapter 1 Selecting an Operating System 1 Linux Essentials Smith, Roderick W. ISBN-13: 9781118106792 Table of Contents Introduction xvii Chapter 1 Selecting an Operating System 1 What Is an OS? 1 What Is a Kernel? 1 What Else Identifies an OS?

More information

Basic Linux Security. Roman Bohuk University of Virginia

Basic Linux Security. Roman Bohuk University of Virginia Basic Linux Security Roman Bohuk University of Virginia What is Linux? An open source operating system Project started by Linus Torvalds kernel Kernel: core program that controls everything else (controls

More information

Some Ubuntu Practice...

Some Ubuntu Practice... Some Ubuntu Practice... SANOG 10 August 29 New Delhi, India 1. Get used to using sudo 2. Create an inst account 3. Learn how to install software 4. Install gcc and make 5. Learn how to control services

More information

Linux Administration

Linux Administration Linux Administration This course will cover all aspects of Linux Certification. At the end of the course delegates will have the skills required to administer a Linux System. It is designed for professionals

More information

BIOINFORMATICS POST-DIPLOMA PROGRAM SUBJECT OUTLINE Subject Title: OPERATING SYSTEMS AND PROJECT MANAGEMENT Subject Code: BIF713 Subject Description:

BIOINFORMATICS POST-DIPLOMA PROGRAM SUBJECT OUTLINE Subject Title: OPERATING SYSTEMS AND PROJECT MANAGEMENT Subject Code: BIF713 Subject Description: BIOINFORMATICS POST-DIPLOMA PROGRAM SUBJECT OUTLINE Subject Title: OPERATING SYSTEMS AND PROJECT MANAGEMENT Subject Code: BIF713 Subject Description: This course provides Bioinformatics students with the

More information

Introduction to remote command line Linux. Research Computing Team University of Birmingham

Introduction to remote command line Linux. Research Computing Team University of Birmingham Introduction to remote command line Linux Research Computing Team University of Birmingham Linux/UNIX/BSD/OSX/what? v All different v UNIX is the oldest, mostly now commercial only in large environments

More information

Table of contents. Our goal. Notes. Notes. Notes. Summer June 29, Our goal is to see how we can use Unix as a tool for developing programs

Table of contents. Our goal. Notes. Notes. Notes. Summer June 29, Our goal is to see how we can use Unix as a tool for developing programs Summer 2010 Department of Computer Science and Engineering York University Toronto June 29, 2010 1 / 36 Table of contents 1 2 3 4 2 / 36 Our goal Our goal is to see how we can use Unix as a tool for developing

More information

Actual4Test. Actual4test - actual test exam dumps-pass for IT exams

Actual4Test.   Actual4test - actual test exam dumps-pass for IT exams Actual4Test http://www.actual4test.com Actual4test - actual test exam dumps-pass for IT exams Exam : RH-302 Title : Red Hat Certified Engineer on Redhat Enterprise Linux 5 (Labs) Vendors : RedHat Version

More information

Contents in Detail. Acknowledgments

Contents in Detail. Acknowledgments Acknowledgments xix Introduction What s in This Book... xxii What Is Ethical Hacking?... xxiii Penetration Testing... xxiii Military and Espionage... xxiii Why Hackers Use Linux... xxiv Linux Is Open Source....

More information

CompTIA Exam LX0-102 Linux Part 2 Version: 10.0 [ Total Questions: 177 ]

CompTIA Exam LX0-102 Linux Part 2 Version: 10.0 [ Total Questions: 177 ] s@lm@n CompTIA Exam LX0-102 Linux Part 2 Version: 10.0 [ Total Questions: 177 ] CompTIA LX0-102 : Practice Test Topic break down Topic No. of Questions Topic 1: Volume A 60 Topic 2: Volume B 59 Topic 3:

More information

NETW 110 Lab 5 Creating and Assigning Users and Groups Page 1

NETW 110 Lab 5 Creating and Assigning Users and Groups Page 1 NETW 110 Lab 5 Creating and Assigning Users and Groups Page 1 Objective At the conclusion of this lab, the student will be able to add and delete users, create and assign users to groups, and assign users

More information

CSE 390a Lecture 2. Exploring Shell Commands, Streams, Redirection, and Processes

CSE 390a Lecture 2. Exploring Shell Commands, Streams, Redirection, and Processes CSE 390a Lecture 2 Exploring Shell Commands, Streams, Redirection, and Processes slides created by Marty Stepp, modified by Jessica Miller & Ruth Anderson http://www.cs.washington.edu/390a/ 1 2 Lecture

More information

RH-202. RedHat. Redhat Certified Technician on Redhat Enterprise Linux 4 (Labs)

RH-202. RedHat. Redhat Certified Technician on Redhat Enterprise Linux 4 (Labs) RedHat RH-202 Redhat Certified Technician on Redhat Enterprise Linux 4 (Labs) Download Full Version : https://killexams.com/pass4sure/exam-detail/rh-202 QUESTION: 159 Install the dialog-* Questions asking

More information

Part 1 : Getting Familiar with Linux. Hours. Part II : Administering Red Hat Enterprise Linux

Part 1 : Getting Familiar with Linux. Hours. Part II : Administering Red Hat Enterprise Linux Part 1 : Getting Familiar with Linux Chapter 1 : Getting started with Red Hat Enterprise Linux Chapter 2 Finding Your Way on the Command Line Hours Part II : Administering Red Hat Enterprise Linux Linux,

More information

Lab 1: Introduction to Linux Networking

Lab 1: Introduction to Linux Networking CMPE 150: Introduction to Computer Networks Fall 2011 http://courses.soe.ucsc.edu/courses/cmpe150/fall11/01/ Lab 1: Introduction to Linux Networking Materials: Please bring a USB drive to each lab section.

More information

Course 144 Supplementary Materials. UNIX Fundamentals

Course 144 Supplementary Materials. UNIX Fundamentals Course 144 Supplementary Materials UNIX Fundamentals 1 Background to UNIX Command Fundamentals This appendix provides a overview of critical commands and concepts Prerequisite knowledge attendees should

More information

RH202. Redhat Certified Technician on Redhat Enterprise Linux 4 (Labs) Exam.

RH202. Redhat Certified Technician on Redhat Enterprise Linux 4 (Labs) Exam. REDHAT RH202 Redhat Certified Technician on Redhat Enterprise Linux 4 (Labs) Exam TYPE: DEMO http://www.examskey.com/rh202.html Examskey REDHAT RH202 exam demo product is here for you to test the quality

More information

Post Ubuntu Install Exercises

Post Ubuntu Install Exercises Post Ubuntu Install Exercises PacNOG 3 June 18 Rarotonga, Cook Islands 1. Get used to using sudo 2. Create an ainst account 3. Learn how to install software 4. Install gcc and make 5. Learn how to control

More information

Answers to Even- Numbered Exercises

Answers to Even- Numbered Exercises Answers to Even- 17 Numbered Exercises from page 1077 1. What option should you use with fsck if you want to review the status of your filesystems without making any changes to them? How does fsck determine

More information

Stop all processes and then reboot - same as above startx. Log in as superuser from current login exit

Stop all processes and then reboot - same as above startx. Log in as superuser from current login exit Starting & Stopping shutdown -h now Shutdown the system now and do not reboot shutdown -r 5 Shutdown the system in 5 minutes and reboot shutdown -r now Shutdown the system now and reboot reboot Stop all

More information

Lab on User administration

Lab on User administration Lab on User administration To add user #useradd [options] -c Change the comment field. This is often the users full name. -d Change the home directory -e Set

More information

User Manual op5 System 3.1

User Manual op5 System 3.1 User Manual op5 System 3.1 Table of Contents 1 Introduction... 2 2 Fundamentals... 2 2.1 op5 System... 2 2.2 System access... 2 2.2.1 The portal page... 2 2.2.2 Console and SSH access... 3 2.3 System accounts...

More information

Open Source Operating Systems: Basic Server Administration

Open Source Operating Systems: Basic Server Administration General information Unit title: Open Source Operating Systems: Basic Server Administration Unit code: HP34 48 Superclass: CD Publication date: August 2017 Source: Scottish Qualifications Authority Version:

More information

FastTrack to Red Hat Linux System Administrator Course Overview

FastTrack to Red Hat Linux System Administrator Course Overview Course Overview This highly practical instructor led training course is designed to give experienced LINUX/UNIX administrators practical experience in the administration of a LINUX system to a level required

More information

This lab exercise is to be submitted at the end of the lab session! passwd [That is the command to change your current password to a new one]

This lab exercise is to be submitted at the end of the lab session! passwd [That is the command to change your current password to a new one] Data and Computer Security (CMPD414) Lab II Topics: secure login, moving into HOME-directory, navigation on Unix, basic commands for vi, Message Digest This lab exercise is to be submitted at the end of

More information

LINUX FUNDAMENTALS (5 Day)

LINUX FUNDAMENTALS (5 Day) www.peaklearningllc.com LINUX FUNDAMENTALS (5 Day) Designed to provide the essential skills needed to be proficient at the Unix or Linux command line. This challenging course focuses on the fundamental

More information

Linux Interview Questions and Answers

Linux Interview Questions and Answers Linux Interview Questions and Answers You need to see the last fifteen lines of the files dog, cat and horse. What command should you use? tail -15 dog cat horse The tail utility displays the end of a

More information

SANJAY GHODAWAT POLYTECHNIC

SANJAY GHODAWAT POLYTECHNIC EXPERIMENT NO. 01 Name of Experiment Implement following commands with their options: ps and kill. df and du mount and umount. (4 Hours) Prerequisite of. / execution of Basic knowledge about linux command.

More information

Critical Analysis and last hour guide for RHCSA/RHCE Enterprise 7

Critical Analysis and last hour guide for RHCSA/RHCE Enterprise 7 Critical Analysis and last hour guide for RHCSA/RHCE Enterprise 7 Disclaimer: I haven t gone through RHCSA/RHCE EL 7. I am preparing for upgrade of my RHCE certificate from RHCE EL4 to RHCE EL7. I don

More information

Installation of the OS

Installation of the OS Lab 1 Installation of the OS 1.1 Objectives The goal of this first session is to install a Debian/Linux operating system from scratch on a Intel x86- based computer. The installation will be made on a

More information

LPI102 EXAM PREPARATION LPIC-1 (LINUX PROFESSIONAL INSTITUTE)

LPI102 EXAM PREPARATION LPIC-1 (LINUX PROFESSIONAL INSTITUTE) LPI102 EXAM PREPARATION LPIC-1 (LINUX PROFESSIONAL INSTITUTE) COURSE DESCRIPTION: This course prepares students to take the LPI 102 exam of the LPI level 1 certification. The LPI objectives covered are

More information

Accurate study guides, High passing rate! IT TEST BOOK QUESTION & ANSWER. Ittestbook provides update free of charge in one year!

Accurate study guides, High passing rate! IT TEST BOOK QUESTION & ANSWER. Ittestbook provides update free of charge in one year! IT TEST BOOK QUESTION & ANSWER Ittestbook provides update free of charge in one year! Accurate study guides, High passing rate! Exam : RH133 Title : Red Hat Linux System Administration Version : Demo 1

More information

Lab 2A> ADDING USERS in Linux

Lab 2A> ADDING USERS in Linux Lab 2A> ADDING USERS in Linux Objective In this lab, student will learn how to create user accounts using the Linux operating system. Scenario The XYZ Company has just installed a server running Linux.

More information

Introduction to Linux

Introduction to Linux Introduction to Linux University of Bristol - Advance Computing Research Centre 1 / 47 Operating Systems Program running all the time Interfaces between other programs and hardware Provides abstractions

More information

The Unix Shell & Shell Scripts

The Unix Shell & Shell Scripts The Unix Shell & Shell Scripts You should do steps 1 to 7 before going to the lab. Use the Linux system you installed in the previous lab. In the lab do step 8, the TA may give you additional exercises

More information

Topics. Installation Basics of Using GNU/ Linux Administration Tools

Topics. Installation Basics of Using GNU/ Linux Administration Tools GNU/ Linux Basics Topics Installation Basics of Using GNU/ Linux Administration Tools Installation Installing Using the GUI Disc Partitioning Allocation of swap space Selection of packages to install Configuring

More information

The student will have the essential skills needed to be proficient at the Unix or Linux command line.

The student will have the essential skills needed to be proficient at the Unix or Linux command line. Table of Contents Introduction Audience At Course Completion Prerequisites Certified Professional Exams Student Materials Course Outline Introduction This challenging course focuses on the fundamental

More information

1Z Oracle Linux Fundamentals (Oracle Partner Network) Exam Summary Syllabus Questions

1Z Oracle Linux Fundamentals (Oracle Partner Network) Exam Summary Syllabus Questions 1Z0-409 Oracle Linux Fundamentals (Oracle Partner Network) Exam Summary Syllabus Questions Table of Contents Introduction to 1Z0-409 Exam on Oracle Linux Fundamentals (Oracle Partner Network)... 2 Oracle

More information

RedHat Certified Engineer

RedHat Certified Engineer RedHat Certified Engineer Red Hat Certified Engineer (RHCE) is a performance-based test that measures actual competency on live systems. Called the "crown jewel of Linux certifications," RHCE proves an

More information

This is Worksheet and Assignment 12. Disks, Partitions, and File Systems

This is Worksheet and Assignment 12. Disks, Partitions, and File Systems This is Worksheet and Assignment 12 This is a combined Worksheet and Assignment.. Quizzes and tests may refer to work done in this Worksheet and Assignment; save your answers. You will use a checking program

More information

OPERATING SYSTEMS LINUX

OPERATING SYSTEMS LINUX OPERATING SYSTEMS LINUX Božo Krstajić, PhD, University of Montenegro Podgorica bozok@cg.ac.yu Process management Linux operating systems work with processes. Basically a process consists of program code

More information

HP-UX System Administration Course Overview. Skills Gained. Who will the Course Benefit?

HP-UX System Administration Course Overview. Skills Gained. Who will the Course Benefit? HP-UX System Administration Course Overview This Hewlett Packard HP-UX System Administration training course is designed to give delegates practical experience in the administration of an HP-UX UNIX System.

More information

Kali Linux Commands Cheat Sheet

Kali Linux Commands Cheat Sheet Kali Linux Commands Cheat Sheet Todos os comandos básicos de A a Z em Kali Linux. A apropos : Search Help manual pages (man -k) apt-get : Search for and install software packages (Debian/Ubuntu) aptitude

More information

Introduction to Linux (Part I) BUPT/QMUL 2018/03/14

Introduction to Linux (Part I) BUPT/QMUL 2018/03/14 Introduction to Linux (Part I) BUPT/QMUL 2018/03/14 Contents 1. Background on Linux 2. Starting / Finishing 3. Typing Linux Commands 4. Commands to Use Right Away 5. Linux help continued 2 Contents 6.

More information

Exam Objective Reference

Exam Objective Reference APPENDIX Exam Objective Reference A To help you prepare for your Linux+/LPIC 1 exams, we ve included a listing of each objective and where you can find the associated content in the book. The list of objectives

More information

UNIX System Administration

UNIX System Administration $!... 14:13 $$... 14:13.netrc...12:27-28 /etc/fstab... 6:25 /etc/hosts.equiv... 8:23 /etc/inittab Entries... 4:8 /etc/netmasks... 8:22 /etc/shells... 12:25 /home... 6:69 /tmp...6:61-67 /usr... 6:70 /var...

More information

Unit 2: Manage Files Graphically with Nautilus Objective: Manage files graphically and access remote systems with Nautilus

Unit 2: Manage Files Graphically with Nautilus Objective: Manage files graphically and access remote systems with Nautilus Linux system administrator-i Unit 1: Get Started with the GNOME Graphical Desktop Objective: Get started with GNOME and edit text files with gedit Unit 2: Manage Files Graphically with Nautilus Objective:

More information

Introduction p. 1 Who Should Read This Book? p. 1 What You Need to Know Before Reading This Book p. 2 How This Book Is Organized p.

Introduction p. 1 Who Should Read This Book? p. 1 What You Need to Know Before Reading This Book p. 2 How This Book Is Organized p. Introduction p. 1 Who Should Read This Book? p. 1 What You Need to Know Before Reading This Book p. 2 How This Book Is Organized p. 2 Conventions Used in This Book p. 2 Introduction to UNIX p. 5 An Overview

More information

CSE 390a Lecture 3. bash shell continued: processes; multi-user systems; remote login; editors

CSE 390a Lecture 3. bash shell continued: processes; multi-user systems; remote login; editors CSE 390a Lecture 3 bash shell continued: processes; multi-user systems; remote login; editors slides created by Marty Stepp, modified by Jessica Miller and Ruth Anderson http://www.cs.washington.edu/390a/

More information

Linux Reference Card - Command Summary

Linux Reference Card - Command Summary Linux Reference Card - Command Summary adduser adduser dsoneil This command will automatically add a new user to the system The Bash script can be found in /usr/sbin if it needs to be changes alias alias

More information

www highskills pt pt

www highskills pt pt Linux Basic Administration Objetivos Gerais Este curso é dirigido a todos os que pretendem tornar-se profissionais em Linux, e pretende dotar os participantes dos conhecimentos técnicos e experiência nas

More information

Using RANCID. Contents. 1 Introduction Goals Notes Install rancid Add alias Configure rancid...

Using RANCID. Contents. 1 Introduction Goals Notes Install rancid Add alias Configure rancid... Using RANCID Contents 1 Introduction 2 1.1 Goals................................. 2 1.2 Notes................................. 2 2 Install rancid 2 2.1 Add alias............................... 3 2.2 Configure

More information

Introduction to Linux

Introduction to Linux Introduction to Linux Mukesh Pund Principal Scientist, NISCAIR, New Delhi, India History In 1969, a team of developers developed a new operating system called Unix which was written using C Linus Torvalds,

More information

Getting Started with OpenSolaris An Introduction for Technical Evaluators

Getting Started with OpenSolaris An Introduction for Technical Evaluators Getting Started with OpenSolaris 2009.06 - An Introduction for Technical Evaluators 3 days starting 25 January at Guillemot Park, Camberley, Surrey To book please make direct contact with Sarah Clayton

More information

Embedded Linux Systems. Bin Li Assistant Professor Dept. of Electrical, Computer and Biomedical Engineering University of Rhode Island

Embedded Linux Systems. Bin Li Assistant Professor Dept. of Electrical, Computer and Biomedical Engineering University of Rhode Island Embedded Linux Systems Bin Li Assistant Professor Dept. of Electrical, Computer and Biomedical Engineering University of Rhode Island Generic Embedded Systems Structure User Sensors ADC microcontroller

More information

Introduction to Unix The Windows User perspective. Wes Frisby Kyle Horne Todd Johansen

Introduction to Unix The Windows User perspective. Wes Frisby Kyle Horne Todd Johansen Introduction to Unix The Windows User perspective Wes Frisby Kyle Horne Todd Johansen What is Unix? Portable, multi-tasking, and multi-user operating system Software development environment Hardware independent

More information

Linux+ Guide to Linux Certification, Third Edition

Linux+ Guide to Linux Certification, Third Edition Linux+ Guide to Linux Certification, Third Edition Chapter 14 Troubleshooting, Performance, and Security Objectives Describe and outline good troubleshooting practices Effectively troubleshoot common hardware-

More information

LINUX FUNDAMENTALS. Supported Distributions: Red Hat Enterprise Linux 6 SUSE Linux Enterprise 11 Ubuntu LTS. Recommended Class Length: 5 days

LINUX FUNDAMENTALS. Supported Distributions: Red Hat Enterprise Linux 6 SUSE Linux Enterprise 11 Ubuntu LTS. Recommended Class Length: 5 days LINUX FUNDAMENTALS The course is a challenging course that focuses on the fundamental tools and concepts of Linux and Unix. Students gain proficiency using the command line. Beginners develop a solid foundation

More information

IBM AIX Operating System Courses

IBM AIX Operating System Courses IBM AIX Operating System Courses (Platforms: POWER4+ based) AIX Basics Fundamentals (3 days) AIX Basics Shell Scripting (Korn / Bash ) and awk Programming (3 days) Advanced IBM AIX Systems Programming

More information

Actual4Test. Actual4test - actual test exam dumps-pass for IT exams

Actual4Test.   Actual4test - actual test exam dumps-pass for IT exams Actual4Test http://www.actual4test.com Actual4test - actual test exam dumps-pass for IT exams Exam : RH133 Title : Red Hat Linux System Administration Vendor : RedHat Version : DEMO Get Latest & Valid

More information

Freescale FAE75 Training Genesi Pegasos II LinuxTraining. Maurie Ommerman June 10, 2004

Freescale FAE75 Training Genesi Pegasos II LinuxTraining. Maurie Ommerman June 10, 2004 Freescale FAE75 Training Genesi Pegasos II LinuxTraining Maurie Ommerman June 10, 2004 FAE75 Part 3 Debian Linux Maurie Ommerman June 10, 2004 Open Firmware boot script Boot Options Upon PowerUP, this

More information

commands exercises Linux System Administration and IP Services AfNOG 2015 Linux Commands # Notes

commands exercises Linux System Administration and IP Services AfNOG 2015 Linux Commands # Notes Linux System Administration and IP Services AfNOG 2015 Linux Commands # Notes * Commands preceded with "$" imply that you should execute the command as a general user not as root. * Commands preceded with

More information

More Raspian. An editor Configuration files Shell scripts Shell variables System admin

More Raspian. An editor Configuration files Shell scripts Shell variables System admin More Raspian An editor Configuration files Shell scripts Shell variables System admin Nano, a simple editor Nano does not require the mouse. You must use your keyboard to move around the file and make

More information

HP-UX System Administration

HP-UX System Administration HP-UX System Administration This intensive course is designed for experienced UNIX administrators who like to understand the differences between HP-UX and standard UNIX. It is essential that students have

More information