Linux 103 Training MOdule Basic System Mgmt.

Slides:



Advertisements
Similar presentations
Computer Basics Binary Bits & Bytes
Advertisements

Linux Installation LINUX INSTALLATION. Download LINUX Linux Installation To install Red Hat, you will need to download the ISO images (CD Images) of the.
©Brooks/Cole, 2003 Chapter 5 Computer Organization.
A Filesystem for Lots Of Little Files (LOL FS) Allison Regier and Karen Hollingsworth University of Notre Dame.
New Cluster for Heidelberg TRD(?) group. New Cluster OS : Scientific Linux 3.06 (except for alice-n5) Batch processing system : pbs (any advantage rather.
Lesson 22 – Introduction to Linux Systems Administration.
1 Administração de Sistemas (ASIST) TP 1 (English version) LINUX servers installation.
Jiapeng Xiu Chapter 3 Memory Management Chapter 3 Memory Management —— Solaris Memory Monitor.
Hardware RAID versus Software RAID CSE598D Youngjae Kim February 15, 2007.
Oracle Memory Configuration on Windows Server Configuring Large Memory for Oracle on 32-bit and 64-bit Windows.
Conventional Memory 8088 processor could address only 1 MB
Using Large Hard Drives in Linux Presented by Kevin McGregor Manitoba UNIX User Group March 12, 2013.
Linux Installation and Administration – Lesson 5 Tutor: George Papamarkos Topic: Devices in Linux.
Computer Systems. Basic Components Auxiliary Storage OutputProcessor Main Memory Input.
Some VM Complications Extra memory accesses Page tables are huge
Data Representation A series of eight bits is called a byte. A byte can be used to represent a number or a character. As you’ll see in the following table,
Chapter 6: Linux Filesystem Administration
1 Objectives Manage and install new file systems.
Sys Admin Course Physical Storage and File Systems Fourie Joubert.
Getting to know Storage Media 1.Stores information 2.Retrieve information for later use.
Guide To UNIX Using Linux Third Edition Chapter 8: Exploring the UNIX/Linux Utilities.
Computer Guts and Operating Systems CSCI 101 Week Two.
1 3 Computing System Fundamentals 3.2 Computer Architecture.
Click here to download this powerpoint template : Colorful Networks Free Powerpoint TemplateColorful Networks Free Powerpoint Template For more : Powerpoint.
Acegene IT Co. Ltd.1 Linux 操作系统 系统优化 周炯上海艾基信息技术有限公司.
Units of Storage 1.5 Types of Memory and Storage.
Computer Science Binary. Binary Code Remember the power supply that is inside your computer and how it sends electricity to all of the components? That.
Linux+ Guide to Linux Certification Chapter Six Linux Filesystem Administration.
System Administration – Part 2. Devices in UNIX are files: A device can be accessed with different file names All device files are stored in /dev or its.
Computers - The Journey Inside continues…
Excellence Publication Co. Ltd. Volume Volume 1.
The Kernel At a high level, the kernel in an operating system serves as the bridge between applications and the actual data processing of the hardware.
ICC Module 3 Lesson 3 – Storage 1 / 4 © 2015 Ph. Janson Information, Computing & Communication Storage – Clip 0 – Introduction School of Computer Science.
Binary Numbers. Base 10 and Base 2  We normally work with numbers in base 10.  In base 10 we use the digits 0, 1, 2, 3, 4, 5, 6, 7, 8 and 9.  Everything.
Guide to Parallel Operating Systems with Windows 7 and Linux Chapter 10 Operating System Management.
Guide to Parallel Operating Systems with Windows 7 and Linux Chapter 5 File Systems.
1 C1-UD 6-2 INSTALLING LINUX Academic Year DAI. Credit 1 (Single and Multiuser Operating Systems) Ferran Chic PELE-08/09 (Pla Experimental Llengües.
Linux Filesystem Administration
1 Free Electrons. Kernel, drivers and embedded Linux development, consulting, training and support. http//free-electrons.com Block filesystems Michael.
© OCR 2016 Unit 2.6 Data Representation Lesson 1 ‒ Numbers.
Chapter 10: Managing Software Packages and File Systems
New flavors of pg_top Michael Paquier Tokyo 2013/07/13
Linux Command Tips.
Chapter 3 Installing Red Hat Linux
Linux203Training Module System Mgmt.
Linux Commands Help HANDS ON TRAINING Author: Muhammad Laique
Stubbs Lab Bioinformatics – 4 Alignment Summary Report & Count files with htseq-count Nov 29, 2016 Joe Troy.
External Sort Any sort algorithm which uses external memory, such as tape or disk, during the sort. The best algorithms for processing large amounts of.
Memory Parts of a computer
Users/Groups/Permissions
Stubbs Lab Bioinformatics - 3 Review RNA-Seq Analysis Overview Alignment using Tophat2 Nov 22, 2016 Joe Troy.
Linux 202 Training Module Program and Process.
Unit 2.6 Data Representation Lesson 1 ‒ Numbers
A Guide to Unix Using Linux Fourth Edition
Introduction to Computers
Operating System Module 1: Linux Installation
How do computers work? Storage.
Computer Electronic device Accepts data - input
File Systems Implementation
Data Compression.
Bits, Bytes, and Storage.
Computer Electronic device Accepts data - input
Handles disk file 0000: array of file-offsets 0001: 0002: 0003: 0: …
Lecture 43 Syed Mansoor Sarwar
Oracle Memory Configuration on Windows Server
Computer Electronic device Accepts data - input
LINUX System : Lecture 7 Lecture notes acknowledgement : The design of UNIX Operating System.
CS533 Concepts of Operating Systems Class 18
Technology 3 Bits & Bytes.
Using Linux Command 3 Lab#6.
Presentation transcript:

Linux 103 Training MOdule Basic System Mgmt

This presentation will cover the following commands df free

df command df command in Linux provides disk space usage information of file systems. $ df Filesystem 1K-blocks Used Available Use% Mounted on /dev/sda1 132239776 6210884 119311504 5% / tmpfs 4021876 0 4021876 0% /dev/shm /dev/sdb2 30969600 117740 29278696 1% /home/oracle

Option -h stands for “human” readable format. G is used for gigabytes and M is used for megabytes. $ df -h Filesystem Size Used Avail Use% Mounted on /dev/sda1 127G 6.0G 114G 5% / tmpfs 3.9G 0 3.9G 0% /dev/shm /dev/sdb2 30G 115M 28G 1% /home/oracle /dev/sdc1 550G 70M 522G 1% /home/data Display Grand Total in the Output Display a grand total of every column then we can use the ‘–total’ flag. $ df -h --total total 710G 6.2G 668G 1%

Free command Display amount of free and used memory in the system By default without any options, free command shows the used and free space of physical and swap memory in KB units as shown below, $ free total used free shared buffers cached Mem: 509336 462216 47120 0 71408 215684 -/+ buffers/cache: 175124 334212 Swap: 915664 11928 903736 2. Switch the free Output in KB, or MB, or GB Free allows to display the size of memory space in bytes or KB or MB or GB as shown below, $ free -b Mem: 521560064 474198016 47362048 0 73826304 220983296 -/+ buffers/cache: 179388416 342171648 Swap: 937639936 12210176 925429760

$ free -k total used free shared buffers cached Mem: 509336 463084 46252 0 72104 215804 -/+ buffers/cache: 175176 334160 Swap: 915664 11924 903740 $ free -m Mem: 497 452 45 0 70 210 -/+ buffers/cache: 171 326 Swap: 894 11 882 To display the totals line at the end, execute free command with -t option $ free -t Mem: 509336 463332 46004 0 72256 215804 -/+ buffers/cache: 175272 334064 Total: 1425000 475256 949744