Download: /archlinux x86_64.iso

Size: px
Start display at page:

Download "Download: https://mirrors.kernel.org/archlinux/iso/ /archlinux x86_64.iso"

Transcription

1 Install Arch Linux! Download: htts://mirrors.kernel.org/archlinux/iso/ /archlinux x86_64.iso Ste 1: Build a Virtual Machine VirtualBox ========== New Machine 2 rocessors 40G hard drive (fixed) 4096 MB RAM Storage: hooku archlinux x86_64.iso Move the Virtual Machine to your SSD drive. ====== htt://zeus.cs.acificu.edu/chadd/cs460s18/lectures/cs460_1.df#age=22 Ste 2: Boot the ISO image Boot the Virtual Machine Arch Linux install disk. ====== We will follow the Installation Guide closely but I have all the commands you need in the document. htts://wiki.archlinux.org/index.h/installation_guide ls touch test ls ls /sys/firmware/efi/efivars (should not find this file when using Virtual Box) # check networking # should work ing -c 3 archlinux.org set the date/time date timedatectl list-timezones timedatectl set-timezone America/Los_Angeles timedatectl set-nt true timedatectl status date

2 ===== fdisk (Partition Disk) and format artitions ===== fdisk -l fdisk /dev/sda # make / artition n 1 [enter] default start sector +15G (size of artition # make swa artition n 2 [enter] default start sector +2G (size of artition # make /home artition n 3 [enter] default start sector [enter] default size w = format artitions = mkfs.ext4 /dev/sda1 mkswa /dev/sda2 mkfs.xfs /dev/sda3 swaon /dev/sda2

3 ===== mount ===== mount /dev/sda1 /mnt mkdir /mnt/home mount /dev/sda3 /mnt/home == install mirrors == vi /etc/acman.d/mirrorlist # Sread the load! # if your PUNetID's last digit is odd ut dx at the to # otherwise ut osuosl at the to! # coy the dx.edu mirror to the to! / dx yy :1 # coy the osuosl.edu mirror to the to! / osuosl yy :2 # make sure it worked head /etc/acman.d/mirrorlist ====== install base system ====== acstra /mnt base

4 ===== fstab ===== genfstab -L /mnt >> /mnt/etc/fstab # make sure /home is added # sometimes it does not get added. vi /mnt/etc/fstab i /dev/sda2 swa swa defaults 0 0 /dev/sda3 /home xfs defaults 0 2 [escae] cat /mnt/etc/fstab ====== chroot ====== arch-chroot /mnt # now we are working with the newly installed system! ======== timezone ======== ln -sf /usr/share/zoneinfo/america/los_angeles /etc/localtime hwclock --systohc date ====== locale ====== vi /etc/locale.gen / en_us.utf / [to search twice] x [delete the hash mark] locale-gen vi /etc/locale.conf i LANG=en_US.UTF-8 [escae]

5 ======== hostname ======== vi /etc/hostname # use your unetid i cs460-unetid [escae] vi /etc/hosts i [escae] cs460-unetid root assword asswd Use any assword CS460PAC!! boot loader acman -S grub grub-install /dev/sda grub-mkconfig -o /boot/grub/grub.cfg ======= reboot! ======= exit umount -R /mnt shutdown -P now <remove iso from VirtualBox> Boot Virtual Machine! console login root/assword

6 = network config = lsci -v less # look for ethernet (should see e1000) dmesg gre e1000 # see the loaded driver # find address of network card (en0s3) i link i addr ing -c 3 archlinux.org # install network manager acman -S dhccd systemctl enable dhccd systemctl start dhccd # wait 30 seconds to get an i address slee 30 i addr ing -c 3 archlinux.org Create User useradd -m -G wheel -s /bin/bash unetid asswd unetid cat /etc/asswd cat /etc/shadow acman -S sudo visudo uncomment or add: %wheel ALL=(ALL) ALL exit console login unetid/assword

7 cat /etc/shadow sudo cat /etc/shadow Install VB Guest additions # you must install the guest additions and reboot # before building the new kernel! sudo acman -Syu linux-headers sudo acman -S virtualbox-guest-utils virtualbox-guest-dkms = Window Manager = # X Server sudo acman -S xorg # (all) 1 Y # Window Manager / Deskto environment # (all) (all) Y sudo acman -S xfce4 xfce4-goodies # Dislay Manager sudo acman -S lightdm lightdm-gtk-greeter sudo systemctl enable lightdm.service sudo reboot lightdm login # if the screen is a blurry mess here the VB drivers are # not loaded. # boot using init=/bin/bash # systemctl disable lightdm.service # reboot # go back and reinstall the VB Guest additions # Reinstalling the Guest Additions is almost always the answer. unetid/assword # choose default config Oen Terminal sudo acman -S terminator geany gvim sudo acman -S base-devel ttf-dejavu # (all)

8 sudo acman -S chromium OR firefox # 1 sudo acman -S subversion git = reboot # can you resize the Virtual Machine? # if not, reinstall Guest Additions # ugrade all the ackages -- do this later on your own time at your own risk sudo acman -Syu Add SSHD ======== sudo acman -S oenssh sudo systemctl enable sshd sudo systemctl start sshd ssh localhost exit Add atd ======= sudo acman -S at sudo systemctl enable atd sudo systemctl start atd at now+1 minutes ls > out control-d # wait 1 minute ls out Allow Host OS to ssh to guest OS === VirtualBox Network Advanced Port Forwarding Host Port 2222 Guest Port 22 In Windows: Putty Host Name: localhost Port: 2222 Accet key and connect as your unetid!

9 Custom Kernel uname -a # show current kernel acman -S base-devel xmlto docbook-xsl kmod inetutils bc wget qt5-base # (all) mkdir ~/kernelbuild cd ~/kernelbuild wget htts:// mkdir ristine-linux cd ristine-linux tar -xvjf linux xz cd linux make clean && make mrroer cd ~/kernelbuild tar -xvjf linux xz cd linux # this is the kernel you will edit geany Makefile & extraversion = -unetid lsmod gre vb # VB modules must be loaded! make clean && make mrroer make localmodconfig # VB modules must be loaded! (vboxvideo,vboxsf,vboxguest) # choose all defaults # not strictly necessary, just for show make xconfig # search for drm, should not need to make any changes make -j6 # (with 2 CPUs) ~10 min sudo make modules_install sudo c -v arch/x86_64/boot/bzimage /boot/vmlinuz-linux-cs460 sudo mkinitcio -k unetid-ARCH -g /boot/initramfs-linux-cs640.img sudo c System.ma /boot/system.ma-cs460

10 sudo grub-mkconfig -o /boot/grub/grub.cfg reboot (default is new kernel, advanced config allows you to select the stock kernel (fallback)) choose default kernel unetid/assword uname -a # is your kernel running? # Can you resize the screen? acman -S virtualbox-guest-utils virtualbox-guest-dkms Build a Patch cd ~/kernelbuild/linux make clean ; make mrroer diff -rcnp ~/kernelbuild/ristine-linux/linux ~/kernelbuild/linux > ~/kernelbuild/atch.out Resources ========= htts://wiki.archlinux.org/index.h/arch_boot_rocess htts://wiki.archlinux.org/index.h/installation_guide htts://wiki.archlinux.org/index.h/network_configuration htts://wiki.archlinux.org/index.h/general_recommendations htts://wiki.archlinux.org/index.h/hel:reading htts://wiki.archlinux.org/index.h/fstab htts://wiki.archlinux.org/index.h/network_configuration htts://wiki.archlinux.org/index.h/network_debugging htts://kernelnewbies.org/kernelbuild google: archlinux xxxxx

11 Toics Necessary === systemd / systemctl [enable disable start sto] journalctl dmesg kernel boot loader (grub) artition sudo lsci i link i addr ntd sshd dhccd / dhc disk /dev/sda artition / /home swa filesystem swa XServer (xorg) Window Manager (xfce) Dislaymanager (lightdm)

Linux Kernel Update - from scratch (almost) Platform: Archlinux, UEFI, GRUB2, and initramfs. Prof. Rossano Pablo Pinto

Linux Kernel Update - from scratch (almost) Platform: Archlinux, UEFI, GRUB2, and initramfs. Prof. Rossano Pablo Pinto Linux Kernel Update - from scratch (almost) Platform: Archlinux, UEFI, GRUB2, and initramfs FATEC Americana May/2017 - v0.9 Agenda Install development software Overview of the steps Archlinux 64 bits with

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

Operating System. Hanyang University. Hyunmin Yoon Operating System Hanyang University

Operating System. Hanyang University. Hyunmin Yoon Operating System Hanyang University Hyunmin Yoon (fulcanelli86@gmail.com) 2 Linux development ENVIRONMENT 2 3 References ubuntu documentation Kernel/Compile https://help.ubuntu.com/community/kernel/compile 3 4 Tools $ software-properties-gtk

More information

How to securely isolate Damn Vulnerable Linux with VirtualBox

How to securely isolate Damn Vulnerable Linux with VirtualBox How to securely isolate Damn Vulnerable Linux with VirtualBox Motivation I have this vision of going through and testing software inside of a closed lab that allows me to understand exploits and vulnerabilities

More information

Arch Linux Grub You Need To Load The Kernel First

Arch Linux Grub You Need To Load The Kernel First Arch Linux Grub You Need To Load The Kernel First Preface. A bootloader is the first software program that runs when a computer starts. It is responsible for loading and transferring control to the Linux

More information

Linux Systems Security. Backup and Change Management NETS Fall 2016

Linux Systems Security. Backup and Change Management NETS Fall 2016 Linux Systems Security Backup and Change Management NETS1028 - Fall 2016 Backup Security breaches can cast doubt on entire installations or render them corrupt Files or entire systems may have to be recovered

More information

NASA Lab. Partition/Filesystem/Bootloader. TinRay, Yu-Chuan

NASA Lab. Partition/Filesystem/Bootloader. TinRay, Yu-Chuan NASA Lab Partition/Filesystem/Bootloader TinRay, Yu-Chuan Agenda Conceptual Storage Structure Bootloader Practical & \Exercise/ Linux Device File Storage Related Commands Boot Related Commands 2 Before

More information

Grub Manual Install Ubuntu Without >>>CLICK HERE<<<

Grub Manual Install Ubuntu Without >>>CLICK HERE<<< Grub Manual Install Ubuntu 10.04 Without 1st option : get a disk including Boot-Repair, 2nd option : install Boot-Repair in Ubuntu or when you can't boot Windows after installing Ubuntu, or when GRUB is

More information

Installing Virtualbox Guest Additions Vboxadditions on CentOS 7, Fedora 19 / 20 and RHEL 6.5 / 5.10 on Windows host

Installing Virtualbox Guest Additions Vboxadditions on CentOS 7, Fedora 19 / 20 and RHEL 6.5 / 5.10 on Windows host Installing Virtualbox Guest Additions Vboxadditions on CentOS 7, Fedora 19 / 20 and RHEL 6.5 / 5.10 on Windows host Author : admin If you decided to use Redhat based Linux distribution inside Virtualbox

More information

Project 3: An Introduction to File Systems. COP 4610 / CGS 5765 Principles of Operating Systems

Project 3: An Introduction to File Systems. COP 4610 / CGS 5765 Principles of Operating Systems Project 3: An Introduction to File Systems COP 4610 / CGS 5765 Principles of Operating Systems Introduction Project 3 learning objectives File system design and implementation File system testing Data

More information

A Kernel Compiling Adventure By Grant Nelson

A Kernel Compiling Adventure By Grant Nelson A Kernel Compiling Adventure By Grant Nelson Goals Virtual Ubuntu Compiling a New Kernel Complications Installing Ubuntu on WinXP Building a Block Scheduler Conclusion 2 Read entire document before performing

More information

Cross-compilation with Buildroot

Cross-compilation with Buildroot Instituto Superior de Engenharia do Porto Mestrado em Engenharia Eletrotécnica e de Computadores Arquitetura de Computadores Cross-compilation with Buildroot Introduction Buildroot is a tool that can be

More information

Ex.no:2 Date: Kernel Configuration, Compilation and Installation

Ex.no:2 Date: Kernel Configuration, Compilation and Installation Ex.no:2 Date: Kernel Configuration, Compilation and Installation AIM: To download latest Linux kernel from the web configure the source, compile the kernel and install the kernel in client machine. Procedure:

More information

Lab E2: bypassing authentication and resetting passwords

Lab E2: bypassing authentication and resetting passwords Lab E2: bypassing authentication and resetting passwords TTM4175 September 7, 2015 The purpose of this lab is to learn about techniques for bypassing the authentication and access control of Windows and

More information

Week 10 Project 3: An Introduction to File Systems. Classes COP4610 / CGS5765 Florida State University

Week 10 Project 3: An Introduction to File Systems. Classes COP4610 / CGS5765 Florida State University Week 10 Project 3: An Introduction to File Systems Classes COP4610 / CGS5765 Florida State University 1 Introduction The goal of project 3 is to understand basic file system design and implementation file

More information

(Ubuntu 10.04), the installation command is slightly different.

(Ubuntu 10.04), the installation command is slightly different. Grub Manual Install Ubuntu 10.04 Without 1st option : get a disk including Boot-Repair, 2nd option : install Boot-Repair in Ubuntu or when you can't boot Windows after installing Ubuntu, or when GRUB is

More information

Bash exercices. Write 6 random numbers between 0 and 9 in a file named randoms then display them in a sorted way on the screen.

Bash exercices. Write 6 random numbers between 0 and 9 in a file named randoms then display them in a sorted way on the screen. PC 2 Corrections Bash exercices Write 6 random numbers between 0 and 9 in a file named randoms then display them in a sorted way on the screen. echo $((RANDOM % 10)) >> randoms... echo $((RANDOM % 10))

More information

Build your own NAS with OpenMediaVault

Build your own NAS with OpenMediaVault Build your own NAS with OpenMediaVault Installation Minimum Requirements i486 or amd64 platform 1 GiB RAM 2 GiB HDD/DOM/CF/USB Thumb Drive used as OpenMediaVault system drive. Flash Drives without static

More information

Adding a block devices and extending file systems in Linux environments

Adding a block devices and extending file systems in Linux environments Adding a block devices and extending file systems in Linux environments In this exercise we simulate situation where user files partition /home fills up and needs to be extended. Also we migrate from static

More information

Travis Cardwell Technical Meeting

Travis Cardwell Technical Meeting .. Introduction to Docker Travis Cardwell Tokyo Linux Users Group 2014-01-18 Technical Meeting Presentation Motivation OS-level virtualization is becoming accessible Docker makes it very easy to experiment

More information

LiLo Crash Recovery. 1.0 Preparation Tips. 2.0 Quick Steps to recovery

LiLo Crash Recovery. 1.0 Preparation Tips. 2.0 Quick Steps to recovery LiLo Crash Recovery ***** *** * I have captured this information from someone else website which I didn t record where I copied it from or when I copied it. And I ve left it as it is. The credit should

More information

How To Jailbreak A PogoPlug Step One: Get Access Step Two: Set Up Your Flash Drive Step 3: Download and install Arch Linux ARM...

How To Jailbreak A PogoPlug Step One: Get Access Step Two: Set Up Your Flash Drive Step 3: Download and install Arch Linux ARM... How To Jailbreak A PogoPlug... 3 Step One: Get Access... 3 Step Two: Set Up Your Flash Drive... 3 Step 3: Download and install Arch Linux ARM... 4 Step 4: Set a Static IP Address & Set the Host Name...

More information

Sit with your new teammate

Sit with your new teammate Sit with your new teammate Chadd Group 1 Group 5 Raimundo Ben Brynn Chris M Group 2 Group 4 Group 8 Group 6 Verity Cormac Michael Scott Logan Chris G Michael Kyle Group 3 Group 7 Ryan Mason Larry Jacob

More information

Fedora Linux Installation Guide

Fedora Linux Installation Guide RocketRAID 2640/2642 SAS Controller Fedora Linux Installation Guide Version 1.2 Copyright 2012HighPoint Technologies, Inc. All rights reserved. Last updated on August 10, 2012 Table of Contents 1 Overview...

More information

Project 3: An Introduction to File Systems. COP4610 Florida State University

Project 3: An Introduction to File Systems. COP4610 Florida State University Project 3: An Introduction to File Systems COP4610 Florida State University 1 Introduction The goal of project 3 is to understand basic file system design and implementation file system testing data serialization/de-serialization

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

CTEC1863/2018F Bonus Lab Page 1 of 5

CTEC1863/2018F Bonus Lab Page 1 of 5 CTEC1863/2018F Bonus Lab Page 1 of 5 Bonus Lab: OpenSUSE Linux Rescue In this lab, we will install an OpenSUSE virtual machine. However, both the non-root user and the root passwords are unknown. To fix

More information

Upgrade Cisco Interface Module for LoRaWAN IXM using the Console

Upgrade Cisco Interface Module for LoRaWAN IXM using the Console Upgrade Cisco Interface Module for LoRaWAN IXM using the Console Contents Introduction Prerequisites Requirements Components Used Background Information Configure Step 1. Prepare the firmware images (and

More information

Guideline for the installation of C-MOR Video Surveillance Virtual Machine on VMware ESX Server

Guideline for the installation of C-MOR Video Surveillance Virtual Machine on VMware ESX Server This guideline illustrates the installation of the C-MOR Video Surveillance Virtual Machine on VMware ESX Server. This manual applies to C-MOR version 4 with 64 bit operating system. First download the

More information

Lab #5 Guide: Installing Ubuntu as a Virtual Machine

Lab #5 Guide: Installing Ubuntu as a Virtual Machine Lab #5 Guide: Installing Ubuntu as a Virtual Machine CTEC1863/2018F Operating Systems Mike Boldin Tools, Materials and Equipment Oracle VirtualBox software official site: https://www.virtualbox.org/wiki/downloads

More information

OPS235. Linux File Systems Partitioning Mounting File Systems

OPS235. Linux File Systems Partitioning Mounting File Systems OPS235 Linux File Systems Partitioning Mounting File Systems 1 Lab 4 Part 1 Topics Linux File Systems (ext2 / ext3 / ext4) Linux Partitioning / Formatting Mounting Linux File Systems 2 Linux File Systems

More information

Part A: Setup your kernel development environment

Part A: Setup your kernel development environment Part A: Setup your kernel development environment For compatibility please compile all your code on nml-cloud-205.cs.sfu.ca. (aka kernel-builder). You can ssh into this machine using your SFU auth. QEMU

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

exam.30q. Number: Passing Score: 800 Time Limit: 120 min File Version: 1 LPI

exam.30q. Number: Passing Score: 800 Time Limit: 120 min File Version: 1 LPI 201-450.exam.30q Number: 201-450 Passing Score: 800 Time Limit: 120 min File Version: 1 LPI 201-450 LPIC-2 Exam 201, Part 1 of 2, version 4.5 Exam D QUESTION 1 Which of the following commands creates a

More information

GL-280: Red Hat Linux 7 Update. Course Description. Course Outline

GL-280: Red Hat Linux 7 Update. Course Description. Course Outline GL-280: Red Hat Linux 7 Update Course Description This is a differences course that focuses on the new technologies and features that made their appearance in Red Hat Enterprise Linux v7. It is intended

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

Build Ubuntu System on Rockchip Sapphire Excavator Board

Build Ubuntu System on Rockchip Sapphire Excavator Board Build Ubuntu System on Rockchip Sapphire Excavator Board 2017-10-10 Reversion Record Date Rev Change Description Author Guohuijiang 2017-10-10 V0.10 Init draft Zhangyangchang 2017-10-13 V0.20 Release Haibing

More information

Freeing Disk Space on a Cryptshare Server. Applies to. Purpose. Solution. Freeing Disk Space on a Cryptshare Server. Situation.

Freeing Disk Space on a Cryptshare Server. Applies to. Purpose. Solution. Freeing Disk Space on a Cryptshare Server. Situation. Freeing Disk Space on a Cryptshare Server Freeing Disk Space on a Cryptshare Server Situation Table of Content related Articles The Cryptshare Server has insufficient disk space in order to operate correctly.

More information

How to Dual-Boot OS X and Ubuntu

How to Dual-Boot OS X and Ubuntu How to Dual-Boot OS X and Ubuntu Nailen Matschke - nailen@caltech.edu 10/3/2015 What you need: 1. A USB drive with at least 2 GB of space, that you don t mind wiping 2. A copy of Ubuntu (available here),

More information

cpouta exercises

cpouta exercises CSC Bioweek. 8.2. 2018 cpouta exercises 1 Table of Contents cpouta exercises 8.2. 2018 1. Launching a virtual machine... 2 1.1 Login to cpouta interface in... 2 1.2 Create your own SSH key pair... 2 A.

More information

RocketRAID 2310/2300 Controller Fedora Linux Installation Guide

RocketRAID 2310/2300 Controller Fedora Linux Installation Guide RocketRAID 2310/2300 Controller Fedora Linux Installation Guide Version 1.1 Copyright 2006 HighPoint Technologies, Inc. All rights reserved. Last updated on Jan 20, 2006 Table of Contents 1 Overview...1

More information

University of Colorado at Colorado Springs CS4500/ Fall 2018 Operating Systems Project 1 - System Calls and Processes

University of Colorado at Colorado Springs CS4500/ Fall 2018 Operating Systems Project 1 - System Calls and Processes University of Colorado at Colorado Springs CS4500/5500 - Fall 2018 Operating Systems Project 1 - System Calls and Processes Instructor: Yanyan Zhuang Total Points: 100 Out: 8/29/2018 Due: 11:59 pm, Friday,

More information

Operating System. Hanyang University. Hyunmin Yoon Operating System Hanyang University

Operating System. Hanyang University. Hyunmin Yoon Operating System Hanyang University Hyunmin Yoon (fulcanelli86@gmail.com) 2 ubuntu Linux Download https://www.ubuntu.com/download/desktop http://gofile.me/3qiyp/pj6fzmojf 2 3 VMware Workstation Player (optional) Download https://www.vmware.com/products/workstation-player/workstation-player-evaluation.html

More information

Getting Started with BeagleBoard xm

Getting Started with BeagleBoard xm Getting Started with BeagleBoard xm by Getting Started with BeagleBoard-xM 1. Beagleboard-xM BeagleBoard.org ก Texas Instruments DM3730 1 GHz ก ARM Cortex-A8 (DSP) (PowerVR) (RAM) 512 MB Serial Port, USB

More information

Chapter 6. Boot time configuration. Chapter 6 Boot time configuration

Chapter 6. Boot time configuration. Chapter 6 Boot time configuration Chapter 6. Boot time configuration Chapter 6 Boot time configuration Last revised: 20/6/2004 Chapter 6 Outline In this chapter we will learn about: How the system boots How to configure the boot loaders

More information

Building a 64-bit CentOS 7 Workstation using Oracle Virtual Box

Building a 64-bit CentOS 7 Workstation using Oracle Virtual Box Building a 64-bit CentOS 7 Workstation using Oracle Virtual Box jthomas Enterprises, 2016 Building a CentOS 7 Workstation using Oracle VirtualBox 1 Section 1 Before You Begin This section details the environment

More information

System Requirements ENTERPRISE

System Requirements ENTERPRISE System Requirements ENTERPRISE Hardware Prerequisites You must have a single bootstrap node, Mesos master nodes, and Mesos agent nodes. Bootstrap node 1 node with 2 cores, 16 GB RAM, 60 GB HDD. This is

More information

There are three separate utilities for configuring Linux kernel and they are listed below: Command-line interface # make config. Figure 1.

There are three separate utilities for configuring Linux kernel and they are listed below: Command-line interface # make config. Figure 1. There are three separate utilities for configuring Linux kernel and they are listed below: Command-line interface # make config Character-based menu interface # make menuconfig Figure 1 Figure 2 X-window

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

Linux Development Getting Started

Linux Development Getting Started Linux Development Getting Started VB-Linux on your Laptop Convenient Option Compared to Remote Transformer Access First, on your Windows or Mac OS-X laptop, install Oracle Virtual-Box as follows: First,

More information

Managing Xen With Xen-Tools, Xen-Shell, And Argo

Managing Xen With Xen-Tools, Xen-Shell, And Argo By Falko Timme Published: 2006-10-21 20:35 Managing Xen With Xen-Tools, Xen-Shell, And Argo Version 1.0 Author: Falko Timme Last edited 10/21/2006 This guide describes how

More information

Linux Distribution: Kernel Configuration

Linux Distribution: Kernel Configuration Instituto Superior de Engenharia do Porto Mestrado em Engenharia Eletrotécnica e de Computadores Arquitetura de Computadores Linux Distribution: Kernel Configuration The central element of a GNU/Linux

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

Installing MediaWiki using VirtualBox

Installing MediaWiki using VirtualBox Installing MediaWiki using VirtualBox Install VirtualBox with your package manager or download it from the https://www.virtualbox.org/ website and follow the installation instructions. Load an Image For

More information

iscsi storage is used as shared storage in Redhat cluster, VMware vsphere, Redhat Enterprise Virtualization Manager, Ovirt, etc.

iscsi storage is used as shared storage in Redhat cluster, VMware vsphere, Redhat Enterprise Virtualization Manager, Ovirt, etc. Configure iscsi Target & Initiator on CentOS 7 / RHEL7 iscsi stands for Internet Small Computer Systems Interface, IP-based storage, works on top of internet protocol by carrying SCSI commands over IP

More information

Installing caos with Cinch on Floppy Disk

Installing caos with Cinch on Floppy Disk Installing caos with Cinch on Floppy Disk Troy Andrew Johnson May 21, 2004 Abstract cinch is the caos Linux (http://www.caosity.org/) installer. Prerequisites What you need: two floppy disks (at least)

More information

Install and Configure Enterprise Linux on the First Virtual Machine

Install and Configure Enterprise Linux on the First Virtual Machine Install and Configure Enterprise Linux on the First Virtual Machine Download Enterprise Linux from Oracle and unzip the files: Enterprise-R4-U4-i386-disc1.iso Enterprise-R4-U4-i386-disc2.iso Enterprise-R4-U4-i386-disc3.iso

More information

Changing user login password on templates

Changing user login password on templates Changing user login password on templates 1. Attach an ISO via the cloudstack interface and boot the VM to rescue mode. Click on attach iso icon highlighted below: A popup window appears from which select

More information

QEMU and the Linux Kernel

QEMU and the Linux Kernel CSC 256/456: Operating Systems QEMU and the Linux Kernel John Criswell! University of Rochester 1 Outline Useful tools! Compiling the Linux Kernel! QEMU! Linux Kernel Details 2 Useful Tools 3 screen Virtual

More information

Fedora Linux Installation Guide

Fedora Linux Installation Guide RocketRAID 276x SAS Controller Fedora Linux Installation Guide Version 1.1 Copyright 2012 HighPoint Technologies, Inc. All rights reserved. Last updated on May 29, 2012 Table of Contents 1 Overview...

More information

Quick Start Guide V NLX-microUCS APPLIANCE Unified Communications Server

Quick Start Guide V NLX-microUCS APPLIANCE Unified Communications Server Quick Start Guide V.02.10 NLX-microUCS APPLIANCE Unified Communications Server Introduction The Elastix NLX-microUCS appliance puts at your fingertips all the tools you need to handle your communications

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

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

RocketRAID 2680/2684 SAS Controller Red Hat Enterprise/CentOS Linux Installation Guide

RocketRAID 2680/2684 SAS Controller Red Hat Enterprise/CentOS Linux Installation Guide RocketRAID 2680/2684 SAS Controller Red Hat Enterprise/CentOS Linux Installation Guide Version 1.0 Copyright 2008 HighPoint Technologies, Inc. All rights reserved. Last updated on November 13, 2008 Table

More information

Rebuild Linux and Buildroot for the DCP-SH7785 board

Rebuild Linux and Buildroot for the DCP-SH7785 board 2 Rebuild Linux and Buildroot for the DCP-SH7785 board Contents 2.1.............................................. 1 2.2......................................... 1 2.3 Buildroot.........................................

More information

3.5 Inch TFT Display

3.5 Inch TFT Display 3.5 Inch TFT Display Resistive&Capacity Touch Screen Website: www.inno-maker.com Contact: sales@inno-maker.com, support@inno-maker.com 1 Website: www.inno-maker.com Contact: sales@inno-maker.com, support@inno-maker.com

More information

Installation of the DigitalSystemsVM virtual machine

Installation of the DigitalSystemsVM virtual machine Installation of the DigitalSystemsVM virtual machine Notice This document explains how to install the DigitalSystemsVM virtual machine on a computer with Linux Ubuntu 16.04 LTS. If questions or problems

More information

Oracle Communication Policy Controller. Lab Environment Preparation

Oracle Communication Policy Controller. Lab Environment Preparation Oracle Communication Policy Controller Edition 1.0 April 2013 Copyright 2013, Oracle and/or its affiliates. All rights reserved. Disclaimer This document contains proprietary information and is protected

More information

Ubuntu Manually Mount Cdrom Drive Command Line Vmware

Ubuntu Manually Mount Cdrom Drive Command Line Vmware Ubuntu Manually Mount Cdrom Drive Command Line Vmware On Windows 7 (64-bit) I installed VMware Player and then Ubuntu 12.04, then Mount the virtual CD drive, Launch a terminal, Use tar to uncompress. I

More information

Chapter 6. Linux File System

Chapter 6. Linux File System Chapter 6 Linux File System 1 File System File System management how to store informations on storage devices The Hierarchical Structure Types of file Common File system Tasks 2 The Hierarchical Structure

More information

POSTouch Open Source Driver (OSE) Installation Guide

POSTouch Open Source Driver (OSE) Installation Guide POSTouch Open Source Driver (OSE) Installation Guide 2012/5/4 1. Confirm right driver before start OSE driver version x-window version request V1.0.0.7 before v1.10 V1.0.0.8 v1.10 or above If you are running

More information

NETW 110 Lab 4 Using eth0 Configuration Mounting Drives and Devices Page 1

NETW 110 Lab 4 Using eth0 Configuration Mounting Drives and Devices Page 1 NETW 110 Lab 4 Using eth0 Configuration Mounting Drives and Devices Page 1 Objective At the conclusion of this lab, the student will be able to perform necessary post-installation hardware configuration

More information

RocketRAID 231x/230x SATA Controller Fedora Linux Installation Guide

RocketRAID 231x/230x SATA Controller Fedora Linux Installation Guide RocketRAID 231x/230x SATA Controller Fedora Linux Installation Guide Version 1.0 Copyright 2008 HighPoint Technologies, Inc. All rights reserved. Last updated on April 7, 2009 Table of Contents 1 Overview...1

More information

Linux Hardware Management. Linux System Administration COMP2018 Summer 2017

Linux Hardware Management. Linux System Administration COMP2018 Summer 2017 Linux Hardware Management Linux System Administration COMP2018 Summer 2017 Hardware Resources CPU refers to the primary computing resource and is measured in processor cores RAM refers to the volatile

More information

Formatting 1. Commands starting with $ are Linux console commands on the host PC:

Formatting 1. Commands starting with $ are Linux console commands on the host PC: Custom Kernel Guide by Arrvindh Shriraman Last update: April 1, 2016 This document guides the user through: 1. Downloading and compiling the Linux kernel's source code. 2. Running a custom kernel inside

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

Zephyr Kernel Installation & Setup Manual

Zephyr Kernel Installation & Setup Manual Zephyr Kernel Installation & Setup Manual Zephyr kernel is a small footprint Single address space OS, i.e, it combines application specific code with a custom kernel to create a monolithic image that gets

More information

Installing Linux (Chapter 8) Note packet # 4. CSN 115 Operating Systems Ken Mead Genesee Community College. Objectives

Installing Linux (Chapter 8) Note packet # 4. CSN 115 Operating Systems Ken Mead Genesee Community College. Objectives Installing Linux (Chapter 8) Note packet # 4 CSN 115 Operating Systems Ken Mead Genesee Community College Objectives Learn about the hardware components of your computer system Configure hard disk space

More information

Sysinstall main menu. Move the cursor down by using the DOWN-ARROW and select Standard.

Sysinstall main menu. Move the cursor down by using the DOWN-ARROW and select Standard. Initial Boot from Install Disc 1 Turn on the power for your machine. Sysinstall main menu Immediately place the first CD-ROM of the FreeBSD 5.3 install set in your machine's CD-ROM drive. You'll see an

More information

Quick Start Guide V NLX-microUCS APPLIANCE Unified Communications Server

Quick Start Guide V NLX-microUCS APPLIANCE Unified Communications Server Quick Start Guide V.02.10 NLX-microUCS APPLIANCE Unified Communications Server www.voipon.co.uk sales@voipon.co.uk Tel: +44 (0)1245 808195 Fax: +44 (0)1245 808299 Introduction The Elastix NLX-microUCS

More information

Link Gateway ISO Installation Manual

Link Gateway ISO Installation Manual Link Gateway ISO Installation Manual Copyright 2016 NetLinkz. All Rights Reserved. No part of this publication may be reproduced, transmitted, transcribed, stored in a retrieval system, or translated into

More information

RocketRAID 231x/230x SATA Controller Red Hat Enterprise/CentOS Linux Installation Guide

RocketRAID 231x/230x SATA Controller Red Hat Enterprise/CentOS Linux Installation Guide RocketRAID 231x/230x SATA Controller Red Hat Enterprise/CentOS Linux Installation Guide Version 1.0 Copyright 2008 HighPoint Technologies, Inc. All rights reserved. Last updated on November 5, 2008 Table

More information

Installing caos with Cinch on CDROM

Installing caos with Cinch on CDROM Installing caos with Cinch on CDROM Troy Andrew Johnson May 21, 2004 Abstract cinch is the caos Linux (http://www.caosity.org/) installer. Prerequisites What you need: one blank CD-R (or CD-RW) disk (at

More information

TROUBLESHOOTING. Sylvia MATE /dev/sda36 Linux Mint Artful GNOME /dev/sda27 Ubuntu 17.10

TROUBLESHOOTING. Sylvia MATE /dev/sda36 Linux Mint Artful GNOME /dev/sda27 Ubuntu 17.10 TROUBLESHOOTING TEST VM VirtualBox HOST DISTROS Sylvia MATE /dev/sda36 Linux Mint 18.3 Artful GNOME /dev/sda27 Ubuntu 17.10 25/03/18 Next HOST LM 18.3 Sylvia Cinnamon /dev/sda26, kernel now 4.13.0-36 following

More information

Operating Systems Lab 1. Class topic: Installation of the operating system. Install Ubuntu on Oracle VirtualBox

Operating Systems Lab 1. Class topic: Installation of the operating system. Install Ubuntu on Oracle VirtualBox Operating Systems Lab 1 Class topic: Installation of the operating system. Install Ubuntu on Oracle VirtualBox Oracle VirtualBox is a cross-platform virtualization application. It installs on your existing

More information

Reboot the server and start the hypervisor from the boot menu (Xen amd64 / Debian GNU/Linux, kernel xen-amd64)

Reboot the server and start the hypervisor from the boot menu (Xen amd64 / Debian GNU/Linux, kernel xen-amd64) http://en.wikipedia.org/wiki/xen INSTALLATION root@serv1:~ apt-get install linux-image-2.6.26-2-xen-amd64 xen-hypervisor-amd64 xen-tools xen-linux-system-2.6.26-2-xen-amd64 linux-headers-2.6.26-2-xen-amd64

More information

Arch Linux with an SSD Cache using LVM on BCache. Jeremy Runyan

Arch Linux with an SSD Cache using LVM on BCache. Jeremy Runyan Arch Linux with an SSD Cache using LVM on BCache Jeremy Runyan 1 Table of Contents Introduction 3 Materials. 3 Prepare.... 4 Create Partitions.. 4-6 Format and Mount Partitions.. 6 Install Arch Linux.

More information

Exam LFCS/Course 55187B Linux System Administration

Exam LFCS/Course 55187B Linux System Administration Exam LFCS/Course 55187B Linux System Administration About this course This four-day instructor-led course is designed to provide students with the necessary skills and abilities to work as a professional

More information

SCM EVK (SCM120

SCM EVK (SCM120 SCM120-120-EVK (SCM120 and SCB120) BSP Linux User s Manual Disclaimers This manual has been carefully checked and believed to contain accurate information. Axiomtek Co., Ltd. assumes no responsibility

More information

Creating WinSystems ELS 2.0

Creating WinSystems ELS 2.0 There are literally hundreds of Linux distributions now available and just as many ways to create an embedded Linux system. Variety is one of the reasons Linux is so popular. Most users have their favorite

More information

Manual File System Check Linux Command Line

Manual File System Check Linux Command Line Manual File System Check Linux Command Line The traditional Unix environment is a CLI (command line interface), where you To move around the file system you will use cd. Nearly every command and application

More information

CompTIA Linux+/LPIC-1 COPYRIGHTED MATERIAL

CompTIA Linux+/LPIC-1 COPYRIGHTED MATERIAL CompTIA Linux+/LPIC-1 COPYRIGHTED MATERIAL Chapter System Architecture (Domain 101) THE FOLLOWING COMPTIA LINUX+/LPIC-1 EXAM OBJECTIVES ARE COVERED IN THIS CHAPTER: 101.1 Determine and Configure hardware

More information

MaRTE OS FAT16 Filesystem

MaRTE OS FAT16 Filesystem Daniel Sangorrin daniel.sangorrin@gmail.com 2009-3-4 Revision History Revision 0.1 2009-2-26 Revised by: dsl first draft Revision 0.2 2009-3-4 Revised by: dsl added Jean-Louis suggestions This document

More information

System Manager Unit (SMU) Hardware Reference

System Manager Unit (SMU) Hardware Reference System Manager Unit (SMU) Hardware Reference MK-92HNAS065-02 Notices and Disclaimer Copyright 2015 Hitachi Data Systems Corporation. All rights reserved. The performance data contained herein was obtained

More information

MASSACHUSETTS INSTITUTE OF TECHNOLOGY HAYSTACK OBSERVATORY WESTFORD, MASSACHUSETTS October, 2015

MASSACHUSETTS INSTITUTE OF TECHNOLOGY HAYSTACK OBSERVATORY WESTFORD, MASSACHUSETTS October, 2015 MASSACHUSETTS INSTITUTE OF TECHNOLOGY HAYSTACK OBSERVATORY WESTFORD, MASSACHUSETTS 01886 13 October, 2015 Telephone: 781-981-5951 Fax: 781-981-0590 TO: FROM: SUBJECT: Distribution Chester Ruszczyk Mark5

More information

INSTALLATION. Security of Information and Communication Systems. Table of contents

INSTALLATION. Security of Information and Communication Systems. Table of contents Security of Information and Communication Systems INSTALLATION Table of contents 1. Introduction...2 2....3 2.1. Hardware requirement...3 2.2. of the system...3 2.3. of ALCASAR...7 2.4. Connexion to the

More information

Deploying Cisco UCS Central

Deploying Cisco UCS Central This chapter includes the following sections: Obtaining the Cisco UCS Central Software from Cisco, page 1 Using the Cisco UCS Central OVA File, page 2 Using the Cisco UCS Central ISO File, page 4 Logging

More information

Certification. System Initialization and Services

Certification. System Initialization and Services Certification System Initialization and Services UNIT 3 System Initialization and Services UNIT 3: Objectives Upon completion of this unit the student should be able to: Describe BIOS functions with respect

More information

NetBSD on Google Compute Engine --- Step by step guide ---

NetBSD on Google Compute Engine --- Step by step guide --- NetBSD on Google Compute Engine --- Step by step guide --- 2016-03-11 netbsd BoF at AsiaBSDCon 2016 Morito Memorial Hall, Tokyo University of Science Ryo ONODERA

More information

Getting Started with Linux Development

Getting Started with Linux Development Getting Started with Linux Development VB-Linux on your Laptop First, on your Windows or Mac OS-X laptop, install Oracle Virtual-Box as follows: First, download Ubuntu Linux distribution 12.04.1, or newer

More information