mirror of
https://github.com/funkypenguin/geek-cookbook/
synced 2025-12-13 17:56:26 +00:00
Updated doc structure (#9)
This commit is contained in:
10
examples/scripts/create_data_volume.sh
Normal file
10
examples/scripts/create_data_volume.sh
Normal file
@@ -0,0 +1,10 @@
|
||||
#!/bin/bash
|
||||
(
|
||||
echo o # Create a new empty DOS partition table
|
||||
echo n # Add a new partition
|
||||
echo p # Primary partition
|
||||
echo 1 # Partition number
|
||||
echo # First sector (Accept default: 1)
|
||||
echo # Last sector (Accept default: varies)
|
||||
echo w # Write changes
|
||||
) | sudo fdisk /dev/vdb
|
||||
Reference in New Issue
Block a user