Partitioning the SD card ● First of all remember that check the drive which you are formatting otherwise you will loose all your data, “SDA” is reserved.

Slides:



Advertisements
Similar presentations
Hard Disks Low-level format- organizes both sides of each platter into tracks and sectors to define where items will be stored on the disk. Partitioning:
Advertisements

ITI-481: Unix Administration Rutgers University Center for Applied Computer Technologies Christopher Uriarte, Instructor Meeting 4.
Chapter 9 Part III Linux File System Administration
System Administration Storage Systems. Agenda Storage Devices Partitioning LVM File Systems.
Operating Systems File Management.
BSD Partitions COEN 152/252 Computer Forensics. BSD Partitions Some BSD systems use IA32 hardware  Designed to co-exists with MS partitions.  Use DOS.
Linux Installation LINUX INSTALLATION. Download LINUX Linux Installation To install Red Hat, you will need to download the ISO images (CD Images) of the.
04/21/2004CSCI 315 Operating Systems Design1 Disk Management.
MCDST : Supporting Users and Troubleshooting a Microsoft Windows XP Operating System Chapter 8: Troubleshooting Storage Devices and Display Devices.
Managing Your Hard Disk and Operating System 23,26 March :30pm - 4:00pm.
Linux+ Guide to Linux Certification, Second Edition Chapter 3 Linux Installation and Usage.
S.Ha.R.K. Workshop28/02/05 S.Ha.R.K. Installation HowTo Tullio Facchinetti University of Pavia - Italy.
Installing Windows XP and Windows Installing two different versions of Windows on the same machine. In this example, Windows 2000 and Windows XP.
Lesson 5-Accessing Networks. Overview Introduction to Windows XP Professional. Introduction to Novell Client. Introduction to Red Hat Linux workstation.
Chapter 8: Adding a Disk — Unix Hard Disk Basics Installation and Configuration Barry Kane CMSC-691X.
FDISK Partitioning Hard Disks. History We bought our new hard disk drive –Right size for BIOS and OS –Right connections (PATA/SATA) We installed our new.
Basic Computer Maintenance Basic Computer Maintenance Clean and Cool Deleting Temporary Files Scandisk Backup Your Data How to.
1 © 2001, Cisco Systems, Inc. All rights reserved. Session Number Presentation_ID 8.6(2) OVAs UCBU Platform Team.
1 Partitioning a Hard Drive ©Richard Goldman Revised January 8, 2001 Revised December 9, 2002.
A+ Guide to Managing and Maintaining Your PC Fifth Edition Chapter 8 Understanding and Installing Hard Drives.
Operating Systems Operating System
Linux+ Guide to Linux Certification Chapter Three Linux Installation and Usage.
Using Large Hard Drives in Linux Presented by Kevin McGregor Manitoba UNIX User Group March 12, 2013.
Linux Booting Procedure
F8-Noncommercial-Based Forensic Duplications Dr. John P. Abraham Professor UTPA.
Guide to Linux Installation and Administration, 2e1 Chapter 3 Installing Linux.
Guide to Linux Installation and Administration, 2e1 Chapter 8 Basic Administration Tasks.
Boot Sequence (DOS) for the IBM PC
CHAPTER Windows NT Server Installation. Chapter Objectives Give an overview of the installation process Outline the pre-installation and post- installation.
Hard Drive Installation ©Richard L. Goldman Revised - January 4, 2001.
Computer Threats Cybercrimes are criminal acts conducted through the use of computers by cybercriminals. © 2009 Prentice-Hall, Inc. 1.
Chapter 3 Managing Disk and File Systems. File Storage Basics Windows XP supports two types of storage Basic Dynamic Basic storage system Centers on partitioning.
11 INSTALLING AND MANAGING STORAGE DEVICES IN WINDOWS XP Chapter 8.
Chapter 6: Linux Filesystem Administration
Partitioning and Formatting drives The easy way, using Knoppix live CD By Carl Weisheit.
The disk surface is divided into tracks. into tracks. 1.
1 Objectives Manage and install new file systems.
Sys Admin Course Physical Storage and File Systems Fourie Joubert.
Module 1: Installing Microsoft Windows XP Professional.
Chapter 3 Partitioning Drives using NTFS and FAT32 Prepared by: Khurram N. Shamsi.
Configuring Disk Devices. Module 4 – Configuring Disk Devices ♦ Overview This module deals with making partitions using fdisk, implementing RAID and Logical.
The Operating System ICS3M.  The operating system (OS) provides a consistent environment for other software programs to execute commands.  It gives.
Windows Vista Inside Out Chapter 28 - Chapter 28 - Managing Disks and Drives Last modified
Setting the BIOS BIOS – Part 3 Richard L. Goldman March 2000.
망고 100 보드로 놀아보자 -10 망고 100 NAND,SD map
Chap 3 Installation. Kickstart Kickstart is Red Hat’s program that completely or partially automates the same installation and post-installation on one.
IST 222 Day 3. Homework for Today Take up homework and go over Go to Microsoft website and check out their hardware compatibility list.
3A.List and describe the events that take place during the boot process. POWER SUPPLY THE POWER SUPPLY SENDS A SIGNAL TO THE COMPENENTS IN THE SYSTEM UNIT.
Lesson 20: Managing Local Storage MOAC : Configuring Windows 8.1.
STEP BY STEP INSTALLATION By Eng. BASSEM ALSAID. Step 1: Boot from windows server 2008 installation DVD, windows will load needed files for starting installation.
Windows 95/98 Installation and Configuration Presented by Hua Wei.
Disk storage systems Question#1 (True/False) A track is divided into multiple units called sectors.
System initialization Unit objectives A.Outline steps necessary to boot a Linux system, configure LILO and GRUB boot loaders, and dual boot Linux with.
This slide deck is for LPI Academy instructors to use for lectures for LPI Academy courses. ©Copyright Network Development Group Module 10 Understanding.
From: Jörg Bänder Damian Borth Yong Soo Deutschle.
How to Recover Data from SanDisk Memory Card ?. 2 Sources:
Linux Filesystem Administration
Guide to Linux Installation and Administration, 2e
Unix System Administration
Partitioning a Hard Drive
Basic Computer Maintenance
Drive formatting Jake + Jacob.
File Structure 2018, Spring Pusan National University Joon-Seok Kim
Operating System Module 1: Linux Installation
Troubleshooting (CPU)
Linux File Systems Partitioning Mounting File Systems
COEN 252: Computer Forensics
Modern PC operating systems
Hard disk basics Prof:R.CHARLES SILVESTER JOE Departmet of Electronics St.Joseph’s College,Trichy.
Presentation transcript:

Partitioning the SD card ● First of all remember that check the drive which you are formatting otherwise you will loose all your data, “SDA” is reserved for your hard disk. ● The memory card you connect will become either “SDB” or “SDC” etc., check first using command – # lsblk (lists all the block devices) ● Check your drive then continue further.

Partitioning SD Card ● Use fdisk command to enter your drive – # fdisk /dev/sdb (After this a sub menu is displayed) ● Enter m for help : ● : d (to delete the existing partition) ● : n (to create new partition) – : p (for primary partition) – : partition number : 1 – : First Sector : Default – : Last Sector : +128M (else it will take entire disk)

● : n (for Second partition) – : p (choose primary partition) – : partition number : 2 – : First Sector : Default – : Last Sector : Default (it will take entire disk after first partition)

Changing Partition ID and Toggle Flag ● Changing Partition's system ID – : t ( Change Partiton's system ID) ● Partition Number : 1 ● L(to display list of codes) : l(A list is displayed with partitions) ● : c (for FAT32 LBA) – : a (toggle Boot Flag) ● Partition Number : 1 – : w (write changes to disk)

Formatting Partitions ● We must format primary partition 1 with vfat so we use command – # mkfs.vfat -F32 /dev/sdb1 ● For Second Partition you can use any file system but best to choose ext file system – # mkfs.ext4 /dev/sdb2