LFS201 - Chapter 17 Discussion // Questions // Banter - Disk Partitioning
So I run all these exercises on virtual machines that do not let me access the actual drives (I use LVM for all storage). How can I play around with fdisk?
Script to exercise the use of fdisk
I had to break my head a little, but eventually I came up with a solution. The script below creates a file that will hold virtual file systems created by fdisk. The file system(s) will then be mounted. At that point you could create files/folders and play around with them like with any other folder or file system that is mounted. Along the way it will stop at each step and show the command it'll run.
At the end the script removes the mount points and deletes the image file so you can start clean as a whistle.
Feel free to edit/improve the script and add more file systems to the case ... esac part.
The script must be run with "sudo" (root permissions)
#!/bin/bash # fdisk exercise # # Copyright (C) 2020 Heiko Sieger # https://heiko-sieger.info # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # Name of the image file: file="mbrtest" # Specify size in MBytes: size=512 user=$(logname) pause(){ msg="$1" cmd="$2" echo -e "$msg\n" echo -e "$cmd\n" read -p "Press [ENTER] to continue..." wait_for_enter echo -e "\n" ${cmd} echo -e "\n" } if [ $UID -ne 0 ]; then pause "Run script as 'root'! Abort." "exit 1" fi # Create file "$file" filled with zeros ($size Mbyte) pause "Create $file filled with zeros (512 Mbyte)" "dd if=/dev/zero of=$file bs=1M count=$size" # Get the loop device that kpartx will mount dev="$(kpartx -l $file | awk '{ print $NF }')" # Mount $file as loop device pause "Mount $file as loop device:" "kpartx -av $file" echo -e "$dev\n" # dev="$(lsblk -lo NAME,SIZE | egrep loop[0-9p]?[0-9] | sort -h -k 2 | awk '{ print $(NF-1) }')" echo -e "In the next step we are going to invoke fdisk." echo -e "Use fdisk to create partitions, change partition type, etc." echo -e "Once you finished and checked everything, use the "w" command" pause "to write the changes to the partition table." "fdisk $dev" dev2="$(kpartx -l $file | awk '{ print $1 }')" dev2=($dev2) pause "Finished fdisk. Now we update the partition mappings:" "kpartx -u $file" pause "Show partitions inside $file using 'fdisk':" "fdisk -l $dev" type="$(fdisk -l $dev | egrep ${dev:5}[0-9p]?[1-9] | sort -h -k 2 | awk '{ print $(NF-1) }')" pause "Partition type(s):\n $type\n" "" type=($type) for ((i=0;i<${#dev2[*]};i++)); do device="/dev/mapper/${dev2[i]}" # echo "${dev2[i]}" # echo -e "Device: $device\n" mnt="/mnt/${dev2[i]}" case ${type[i]} in 0) cmd="mkfs.ext4";; 1) cmd="mkfs.fat -v -F 12";; 4) cmd="mkfs.fat -v -F 16";; 6) cmd="mkfs.fat -v -F 16";; 7) cmd="mkfs.ntfs -v";; NTFS) cmd="mkfs.ntfs -v";; FAT32) cmd="mkfs.fat -v -F 32";; 83) cmd="mke2fs -v";; EFI) cmd="mkfs.fat -v -F 16";; *) cmd="mkfs.ext4 -v";; esac pause "Format $device as ${type[i]}:" "$cmd $device" pause "Create mount point:" "mkdir $mnt" pause "Mount partition on $mnt:" "mount $device $mnt" pause "Change ownership:" "chown $user:$user $mnt" done pause "See new partitions as loop devices using lsblk:" "lsblk" pause "See if the partitions are mounted:" "df" pause "Let's check /proc/mounts:" "grep loop /proc/mounts" pause "You could now create content on the file system(s), but we unmount:" "umount /mnt/*" pause "Remove mount points:" "rm -rf /mnt/*" pause "Delete loop device mappings:" "kpartx -d $file" pause "Delete $file:" "rm $file" pause "All is back to as it was before. Done." "exit 0" #END
Enjoy!
Comments
-
Dammit - I did it again. Can an administrator change the thread title? It should read:
Chapter 17 Discussion // Questions // Banter - Disk Partitioning
Why is there a 15 minutes limit to edit posts?
0 -
Much to my surprise I was able to change the title. )
I did not know there was a 15 minute time limit but I suspect that is intrinsic. Fcioanca may be able to comment on that.
One thing I'd love to limit is how often people post, as sometimes people post multiple messages in a short period (like 10 in an hour) as they think this is a real time chat. We are good on this forum but not all forums get this much attention, and I don't like the posts where 10 minutes later people say, don't bother I figured it out. That should happen before they post When people do this I personally rate-limit my responses and introduce a delay, like a day before I answer certain people.
1 -
Thanks coop!
In "Lab 17.3. Using losetup and parted" we learn how to use losetup. I have only had bad experiences with losetup.
For example, issuing losetup -d ... did not remove the partitions loop1p1, loop1p2 etc.
I redid the exercise to test using losetup -D, --detach-all which is supposed to "Detach all associated loop devices." No luck. The loop devices are still in /dev/...
Recently I had to rewrite my rsync backup script and replace losetup with kpartx because I couldn't get losetup to work. Some update (kernel?) broke the automatic discovery and mounting of partitions using the "losetup -P" option.
On the other hand, kpartx has worked for me flawlessly for the last 8 years or so.
0 -
Hi @heiko_s ,
So I run all these exercises on virtual machines that do not let me access
the actual drives (I use LVM for all storage). How can I play around with fdisk?At least for playing with fdisk, you can create a disk image and then add it to a guest. Then you can mount it (at least it works like that in VirtualBox). Then you can play with LVM or anything you want.
Regards,
Luis.0 -
You can definitely add a second disk in vmware as well (and I'm sure kvm etc.) You can also "expand" the disk to a larger size and add new parititions etc. This is even easier and I've done it many times. It's like a couple of mouse clicks.
As far as the losetup hassles, not the first time I've seen inconsistent results between distros, which among other things use different names for loop devices. I don't have a specific solution. I generally would never script anything partitioning devices as it is so easy to induce an error which bricks your system. It only makes sense if you are intending on using it to deploy numerous systems at once and then you would be extremely careful and you would not be likely to be using loopback devices. For example, even basic fdisk has varied quited a bit between distros as older and newer versions have had different defaults etc.
0 -
Here is the gdisk script. It leaves room for improvement, but offers the possibility to use LVM within a file. All except the gdisk part is semi-automatic.
Be careful: when creating LVM volumes it will actually change the LVM entries of the OS you are running. So you should go through with the program and reverse the steps (the program does it), or reverse them manually in case you interrupted the program!
#!/bin/bash # gdisk exercise # # Copyright (C) 2020 Heiko Sieger # https://heiko-sieger.info # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # Name of the image file: file="gpttest" # Specify size in MBytes: size=512 #user=$(logname) pv_list="" vg_name="" GR='\033[1;32m' # Green NC='\033[0m' # No Color pause(){ msg="$1" cmd="$2" input="$3" echo -e "\n$msg" [[ -n "$input" ]] && read -p "$input: " input garbage echo -e "\n${GR}$cmd${NC}\n" read -p "Press [ENTER] to continue..." wait_for_enter # echo -e "\n" ${cmd} } if [ $UID -ne 0 ]; then pause "Run script as 'root'! Abort." "exit 1" fi # Create file "$file" filled with zeros ($size Mbyte) pause "Creating $file filled with zeros ($size Mbyte)." "dd if=/dev/zero of=$file bs=1M count=$size" # Get the loop device that kpartx will map dev="$(kpartx -l $file | awk '{ print $NF }')" # Map $file as loop device pause "Mapping $file as loop device." "kpartx -av $file" echo -e "$dev\n" echo -e "In the next step we are going to invoke gdisk." echo -e "Use gdisk to create partitions, change partition type, etc." echo -e "Once you finished and checked everything, use the "w" command" echo -e "to write the changes to the partition table." pause "" "gdisk $dev" dev2="$(kpartx -l $file | awk '{ print $1 }')" dev2=($dev2) pause "Finished gdisk. Now we update the partition mappings." "kpartx -u $file" pause "Show partitions inside $file using 'gdisk'." "gdisk -l $dev" type="$(gdisk -l $dev | egrep [[:space:]][0-9A-F]{4}[[:space:]]{2} | awk '{ print $6 }')" pause "Partition type(s):\n $type\n" "" type=($type) for ((i=0;i<${#dev2[*]};i++)); do device="/dev/mapper/${dev2[i]}" mnt="/mnt/${dev2[i]}" case ${type[i]} in 0700) cmd="mkfs.ntfs -v";; 2700) cmd="mkfs.ntfs -v";; 8200) cmd="mkswap";; 8300) cmd="mke2fs -v";; 8E00) pause "We need to create a PV (LVM) for partition type 8E00:" "pvcreate $device"; pv_list="$pv_list $device" if [ -z "$vg_name" ]; then rc=1; while [ $rc -ne 0 ] ; do pause "Now we create a VG (volume group)." "" "Enter the name of the VG"; vg_name=$input; [[ $vg_name =~ ^[a-zA-Z0-9]+ ]] && rc=0 ; done ; pause "Creating VG..." "vgcreate $vg_name $device" "" ; sleep 2 ; else pause "Extending VG $vg_name..." "vgextend -A n -y -v $vg_name $device"; fi rc=1; sleep 1 ; while [ $rc -ne 0 ] ; do pause "Next we create a LV (logical volume)." "" "Enter the name of the LV"; lv_name=$input; [[ $lv_name =~ ^[a-zA-Z0-9]+ ]] && rc=0 ; done ; rc=1; sleep 1 ; while [ $rc -ne 0 ] ; do pause "Enter the size of the LV $lv_name." "" "Use K for Kilobytes, M for Megabytes, or G for Gigabytes (example 100M)"; lv_size=$input; pause "Creating LV..." "lvcreate -L $lv_size -n $lv_name $vg_name" ""; rc=$?; [[ $rc -ne 0 ]] && echo -e "Size is too big.\n"; done ; pause "Listing the LVs:" "lvs"; device="/dev/mapper/$vg_name-$lv_name"; cmd="mkfs.ext4 -v";; EF00) cmd="mkfs.fat -v -F 16";; *) cmd="mkfs.ext4 -v";; esac pause "Formating $device as ${type[i]}" "$cmd $device" pause "Creating mount point" "mkdir $mnt" pause "Mounting partition on $mnt" "mount $device $mnt" # pause "Changing ownership" "chown $user:$user $mnt" done pause "See new partitions as loop devices using lsblk:" "lsblk" pause "See if the partitions are mounted:" "df -Th" pause "Let's check /proc/mounts:" "grep loop /proc/mounts" pause "You could now create content on the file system(s), but we unmount..." "umount /mnt/*" pause "Removing mount points..." "rm -rf /mnt/*" if [ ! -z "$vg_name" ]; then pause "Removing all LVs we created..." "lvremove -A n -f -v $vg_name" pause "Removing the VG..." "vgremove -f -y -v $vg_name" pause "List the remaining VGs:" "vgs" pause "Removing PV$pv_list..." "pvremove -f -y -v$pv_list" pause "List the remaining PVs:" "pvs" fi pause "Deleting loop device mappings..." "kpartx -d $file" pause "Deleting $file..." "rm $file" pause "All is back to as it was before. Done." "exit 0" #END
2 -
@heiko_s These scripts are fantastic.
There was one concern that I had with a step in the MBR version that could potentially be too destructive.
line:92
pause "Remove mount points:" "rm -rf /mnt/*"
This made me think that it would be really nice to be able to comment on the script and potentially contribute suggestions. Have you thought about putting these up on GitLab or GitHub?
0 -
@GRO 108 said:
@heiko_s These scripts are fantastic.There was one concern that I had with a step in the MBR version that could potentially be too destructive.
line:92
pause "Remove mount points:" "rm -rf /mnt/*"
This made me think that it would be really nice to be able to comment on the script and potentially contribute suggestions. Have you thought about putting these up on GitLab or GitHub?
Wow, thanks for pointing that out! You are absolutely right - this needs to be changed!
How about adding / changing:
mkdir /mnt/exercise mnt="/mnt/exercise/${dev2[i]}" pause "Remove mount points:" "rm -rf /mnt/exercise/*" rmdir /mnt/exercise
The script was kind of a quick way to get an environment to exercise. I'm running all classes in VMs so as long as I back them up there is not much harm done. But you are right - this could wipe out somebodies most precious data.
Unfortunately I can't edit the original post, which is too bad. I would have changed it right away.
2 -
Yeah VMs are the way to go. I've been taking advantage of a Google Cloud free trial which has been very convenient.
Thanks for the update.
1 -
@heiko_s said:
@GRO 108 said:
@heiko_s These scripts are fantastic.There was one concern that I had with a step in the MBR version that could potentially be too destructive.
line:92
pause "Remove mount points:" "rm -rf /mnt/*"
This made me think that it would be really nice to be able to comment on the script and potentially contribute suggestions. Have you thought about putting these up on GitLab or GitHub?
Wow, thanks for pointing that out! You are absolutely right - this needs to be changed!
How about adding / changing:
mkdir /mnt/exercise mnt="/mnt/exercise/${dev2[i]}" pause "Remove mount points:" "rm -rf /mnt/exercise/*" rmdir /mnt/exercise
The script was kind of a quick way to get an environment to exercise. I'm running all classes in VMs so as long as I back them up there is not much harm done. But you are right - this could wipe out somebodies most precious data.
Unfortunately I can't edit the original post, which is too bad. I would have changed it right away.
These scripts really are great Heiko! In the interest of really leveraging their potential to the fullest extent, and to prevent not being able to edit the original version - github would be awesome!
0 -
Hello,
I agree with Chris, if you were to leverage something like github.com or gitlab.com it would help with any scripts or files that multiple people can help improve.
A good first page to read about using git and github:
https://towardsdatascience.com/getting-started-with-git-and-github-6fcd0f2d4ac6To plug some FREE courses, to help all of you on this journey, this one has some good content on git and other tools:
https://training.linuxfoundation.org/resources/free-courses/beginner-guide-to-oss-development/To learn more about git and working with others in a team (focus on the Kernel, but the process is the same):
https://training.linuxfoundation.org/resources/free-courses/a-beginners-guide-to-linux-kernel-development/1 -
Thanks for all the feedback! There are several reasons I haven't used github:
- I'm at a beginner level of scripting, at best.
- The scripts are quick hacks that haven't been thoroughly tested.
- As @GRO 108 pointed out, they are potentially destructive! See "rm -rf /mnt".
I run the scripts on a VM. If things break, it takes less than a minute to restore the whole VM. In fact, as I write this, I thought of creating an LVM snapshot before running the VM for exercises. This would allow me to instantly restore to the snapshot state and it would conserve disk space.
github is for the general public. If some uninitiated fellow downloads and runs one of the scripts above, chances are he accidentally wipes out entire drives mounted under /mnt. I prefer to share the scripts only with fellow students at this point.
However, I will put the scripts above (and throw in some others) on my Google drive.
Here is the link: https://drive.google.com/drive/folders/18Kz2mb4rNrR4f2R1Ajsew47XbGEldRCW?usp=sharing
Note: I've improved the gpt.sh script! See next post for link.
1
Categories
- All Categories
- 217 LFX Mentorship
- 217 LFX Mentorship: Linux Kernel
- 791 Linux Foundation IT Professional Programs
- 353 Cloud Engineer IT Professional Program
- 178 Advanced Cloud Engineer IT Professional Program
- 82 DevOps Engineer IT Professional Program
- 147 Cloud Native Developer IT Professional Program
- 137 Express Training Courses
- 137 Express Courses - Discussion Forum
- 6.2K Training Courses
- 47 LFC110 Class Forum - Discontinued
- 71 LFC131 Class Forum
- 42 LFD102 Class Forum
- 226 LFD103 Class Forum
- 18 LFD110 Class Forum
- 38 LFD121 Class Forum
- 18 LFD133 Class Forum
- 7 LFD134 Class Forum
- 18 LFD137 Class Forum
- 71 LFD201 Class Forum
- 4 LFD210 Class Forum
- 5 LFD210-CN Class Forum
- 2 LFD213 Class Forum - Discontinued
- 128 LFD232 Class Forum - Discontinued
- 2 LFD233 Class Forum
- 4 LFD237 Class Forum
- 24 LFD254 Class Forum
- 697 LFD259 Class Forum
- 111 LFD272 Class Forum
- 4 LFD272-JP クラス フォーラム
- 12 LFD273 Class Forum
- 148 LFS101 Class Forum
- 1 LFS111 Class Forum
- 3 LFS112 Class Forum
- 2 LFS116 Class Forum
- 4 LFS118 Class Forum
- LFS120 Class Forum
- 7 LFS142 Class Forum
- 5 LFS144 Class Forum
- 4 LFS145 Class Forum
- 2 LFS146 Class Forum
- 3 LFS147 Class Forum
- 1 LFS148 Class Forum
- 15 LFS151 Class Forum
- 2 LFS157 Class Forum
- 29 LFS158 Class Forum
- 7 LFS162 Class Forum
- 2 LFS166 Class Forum
- 4 LFS167 Class Forum
- 3 LFS170 Class Forum
- 2 LFS171 Class Forum
- 3 LFS178 Class Forum
- 3 LFS180 Class Forum
- 2 LFS182 Class Forum
- 5 LFS183 Class Forum
- 31 LFS200 Class Forum
- 737 LFS201 Class Forum - Discontinued
- 3 LFS201-JP クラス フォーラム
- 18 LFS203 Class Forum
- 134 LFS207 Class Forum
- 2 LFS207-DE-Klassenforum
- 1 LFS207-JP クラス フォーラム
- 302 LFS211 Class Forum
- 56 LFS216 Class Forum
- 52 LFS241 Class Forum
- 48 LFS242 Class Forum
- 38 LFS243 Class Forum
- 15 LFS244 Class Forum
- 2 LFS245 Class Forum
- LFS246 Class Forum
- 48 LFS250 Class Forum
- 2 LFS250-JP クラス フォーラム
- 1 LFS251 Class Forum
- 152 LFS253 Class Forum
- 1 LFS254 Class Forum
- 1 LFS255 Class Forum
- 7 LFS256 Class Forum
- 1 LFS257 Class Forum
- 1.2K LFS258 Class Forum
- 10 LFS258-JP クラス フォーラム
- 118 LFS260 Class Forum
- 159 LFS261 Class Forum
- 42 LFS262 Class Forum
- 82 LFS263 Class Forum - Discontinued
- 15 LFS264 Class Forum - Discontinued
- 11 LFS266 Class Forum - Discontinued
- 24 LFS267 Class Forum
- 22 LFS268 Class Forum
- 30 LFS269 Class Forum
- LFS270 Class Forum
- 202 LFS272 Class Forum
- 2 LFS272-JP クラス フォーラム
- 1 LFS274 Class Forum
- 4 LFS281 Class Forum
- 9 LFW111 Class Forum
- 259 LFW211 Class Forum
- 181 LFW212 Class Forum
- 13 SKF100 Class Forum
- 1 SKF200 Class Forum
- 1 SKF201 Class Forum
- 795 Hardware
- 199 Drivers
- 68 I/O Devices
- 37 Monitors
- 102 Multimedia
- 174 Networking
- 91 Printers & Scanners
- 85 Storage
- 758 Linux Distributions
- 82 Debian
- 67 Fedora
- 17 Linux Mint
- 13 Mageia
- 23 openSUSE
- 148 Red Hat Enterprise
- 31 Slackware
- 13 SUSE Enterprise
- 353 Ubuntu
- 468 Linux System Administration
- 39 Cloud Computing
- 71 Command Line/Scripting
- Github systems admin projects
- 93 Linux Security
- 78 Network Management
- 102 System Management
- 47 Web Management
- 63 Mobile Computing
- 18 Android
- 33 Development
- 1.2K New to Linux
- 1K Getting Started with Linux
- 371 Off Topic
- 114 Introductions
- 174 Small Talk
- 22 Study Material
- 805 Programming and Development
- 303 Kernel Development
- 484 Software Development
- 1.8K Software
- 261 Applications
- 183 Command Line
- 3 Compiling/Installing
- 987 Games
- 317 Installation
- 97 All In Program
- 97 All In Forum
Upcoming Training
-
August 20, 2018
Kubernetes Administration (LFS458)
-
August 20, 2018
Linux System Administration (LFS301)
-
August 27, 2018
Open Source Virtualization (LFS462)
-
August 27, 2018
Linux Kernel Debugging and Security (LFD440)