rdbtool – The universal Amiga disk partitioning tool
last update: 6.4.2012
1. Introduction
The rdbtool is a tool from the amitools tool set that allows to inspect or create hard disk partitions readable by the classic Amiga family of computers. The RDB or Rigid Disk Block is a format to describe the first blocks of a hard disk that store information of partitions and file systems used in the partitions.
If you want to work with files stored in the DOS file system of a partition then have a look at the xdftool of amitools.
2. Usage
rdbtool is a command line utility that is always called with an hard disk image file path name as the first argument and with one or more commands working on this image:
> rdbtool <image.rdb|image.rdisk> <command> [option]
You can issue multiple commands on a single image by concatenating them with a plus character:
> rdbtool <image.rdb> <command1> [options1] + <command2> [options2] ...
For example:
> rdbtool myimg.rdb create size=10Mi + init + fill
Most options in rdbtool are given as key=value pairs. Here the option “size” is given with value “10Mi” for a 10 MiB sized disk image.
Real Block Devices
On Unix/Linux/Mac OS X you can also use a block device of a real hard disk or a CF/SD flash card to directly work on a real device. The file names for the block device differ on the different platforms but typical names are /dev/rdisk1 or /dev/sda. Always make sure to select the block device of the whole drive (e.g. /dev/hdc) and not the device of some already existing paritioning (e.g. /dev/hdc1). Also make sure (really, really sure!) to select the correct block device of the hard disk you want to alter with rdbtool. Otherwise you might destroy your actual system disk!!! Most OSes need a priviliged user to perform these operations so you need to run rdbtool as root in this case.
3. Commands
This section describes the commands available for rdbtool. You can always issue a “help” command to see all commands:
> rdbtool test.img help
3.1 Open/Create an Image
In rdbtool there are two ways to access an image: open or create it. The “open” operation assumes that the disk image file already exists or is used for existing devices available through block device names.
‘create’ – Create a new disk image
SYNTAX
create [ size=<size> | chs=<cyl>,<heads>,<secs> ]
DESCRIPTION
The “create” operation is used to create a new image file. The create command needs a size parameter:
> rdbtool test.img create size=10Mi
You can either specify the total size in bytes (or here with unis M=mega Mi=Ki-Units) and let rdbtool choose a suitable disk geometry automatically or you can give the geometry with:
> rdbtool test.img create chs=10,1,32
Here 10 cylinders, 1 head and 32 sectors are defined.
You can only use the “create” command if the given image file does not exist yet. If it already exists then an error message is generated. However, you can force the creation of the image file by giving the “-f” switch for force:
> rdbtool -f test.img create chs=10,1,32
‘open’ – Open existing image for processing
SYNTAX
open [ chs=<cyl>,<heads>,<secs> | c=<cyl> h=<heads> s=<secs> ]
DESCRIPTION
The open operation usually does not need any paramters:
> rdbtool test.img open + info
You can even omit the “open” command in this case:
> rdbtool test.img info
This will implicitly open the image first.
If no option is given then the disk geometry is automatically determined from the image size. If this does not work for an image you can also specify the geometry of the image in the open command:
> rdbtool test.img open chs=10,1,32
You can also only hint the geometry by giving some geometry paramters and let rdbtool guess the others:
> rdbtool test.img open c=10 h=2 s=32
3.2 Inspect the Partition Layout
‘info’ – Show information of the RDB data structures
SYNTAX
info
DESCRIPTION
This command gives an overview of the partitions and file systems stored in the RDB blocks. It will return something like:
PhysicalDisk:              0    7817    7880544 3.8Gi heads=16 sectors=63 LogicalDisk:               2    7817    7878528 3.8Gi rdb_blks=[0:2015,60(60)] cyl_blks=1008 Partition: #0 'CDH0'       2     103     102816  50Mi   1.31% DOS3 bootable pri=0 Partition: #1 'DH0'      104     205     102816  50Mi   1.31% DOS3 Partition: #2 'DH1'      206    2035    1844640 900Mi  23.41% DOS3 Partition: #3 'DH2'     2036    3763    1741824 850Mi  22.11% DOS3 Partition: #4 'DH3'     3764    3909     147168  71Mi   1.87% DOS3 Partition: #5 'CDH1'    3910    3971      62496  30Mi   0.79% DOS3 Partition: #6 'DH4'     3972    4124     154224  75Mi   1.96% DOS3 Partition: #7 'DH5'     4125    5953    1843632 900Mi  23.40% DOS3 Partition: #8 'DH6'     5954    7817    1878912 917Mi  23.85% DOS3 FileSystem #0                                             DOS1 version=40.1 size=24588
‘show’ – Show internal block representation of the RDB data structures
SYNTAX
show
DESCRIPTION
This command is a low-level tool that shows the blocks available in the RDB data structure with their corresponding values. Use this to debug or analyze issues with complex RDBs.
3.3 Create a new RDB
‘init’ – Create a new and empty RDB structure
SYNTAX
init [ rdb_cyls=<cyls> ]
DESCRIPTION
This command creates a new and initially empty RDB structure. Any existing partitioning layout will be lost after executing this command! So you have been warned! Call this command first to start building a new RDB structure.
> rdbtool test.img create size=10Mi + init
The default RDB occupies all the sectors of the first cylinder. If you have chosen a geometry with small cylinders then a single cylinder might not be sufficient to hold the RDB data structures. In this case use the “rdb_cyls” option to set the number of cylinders to reserve for RDB:
> rdbtool test.img create size=10Mi + init rdb_cyls=2
‘add’ – Add a new partition
SYNTAX
add <size> [ name=<name> ] [ dostype|fs=<dostag> ] [ bootable[=true|false] ] [ pri=<priority> ] [ automount=true|false ]
DESCRIPTION
This command creates a new partition.
You have to give the size of the partition in one of the following ways:
1. Give start and end cylinder:
start=<cyl> end=<cyl>
2. Give start cylinder and size:
start=<cyl> size=<cyl|percent|bytes>
3. Only give size:
size=<cyl|percent|bytes>
For the size you can specify a number of cylinders, a percent value, or a byte size (The percent value gives the ratio of the total logical disk size):
> rdbtool test.img add start=2 end=5Â Â Â ; give start and end cylinder > rdbtool test.img add start=4 size=10Â ; give start and number of cylinders > rdbtool test.img add size=10MiBÂ Â Â Â Â Â ; give size in bytes > rdbtool test.img add size=50%Â Â Â Â Â Â Â Â ; use half the disk size
If no “name” option is given then the defaul name “DH” is used appended with the current partition number starting with 0: DH0, DH1. You can alter the base name by giving the “-p” switch (for drive prefix):
> rdbtool -p CH test.img init + add size=10%Â Â ; create partition CH0
The “dostype” or “fs” switch can be used to select the file system you will use to format the partition. The default is “DOS3”, i.e. Fast Filing System with International Support. You can give the dostype with “DOS<n>” or as a hex number 0x44556677 or for standard DOS file systems with “ofs”, “ffs” and append “dc” or “dircache” or “intl” flags:
... dostype=DOS0       ; OFS ... dostype=ofs+dc     ; OFS + dircache ... dostype=ffs+intl   ; FFS + international mode ... dostype=0x44556677 ; give hex of dostype
You can make a partition bootable by setting the “bootable” flag. Additionally you can select the boot priority with “pri=<n>”:
> rdbtool test.img add size=10% bootable pri=10
‘change’ – Modify parameters of an existing partition
SYNTAX
change <id>Â [ name=<name> ] [ dostype|fs=<dostag> ] [ bootable[=true|false] ] [ pri=<priority> ] [ automount=true|false ]
DESCRIPTION
The <id> is the number of the paritition as given in the ‘info’ command. You can also use the device name to select a parition.
> rdbtool test.img change 0 name=CH0 bootable=true
‘free’ – Show free cylinder range in partition layout
SYNTAX
free
DESCRIPTION
This command returns one or more cylinder ranges that are currently not occupied by partitions. You can use this command to find out the range for a new partition.
If the current partition layout aready occupies the whole disk then this command will return nothing.
‘fill’ – Fill the remaining space in the partition layout with new partition(s)
SYNTAX
fill
DESCRIPTION
This command takes the free space in a partition layout and creates a newpartition that fills this space.
This command supports the same options as used in the ‘add’ command above.
If multiple holes are in the current partition layout then this command creates a new partition for each existing hole.
With this command you can easily finish paritioning without the need of calculating the size of the final partition:
> rdbtool test.img init + add size=50% + fill  ; create 2 partitions with 50% size each > rdbtool test.img init + add size=10% + add size=20% + fill
‘delete’ – Delete an existing partition
SYNTAX
delete <id>
DESCRIPTION
This command removes an existing partition and frees all associated resources.
The <id> is the number of the paritition as given in the ‘info’ command. You can also use the device name to select a parition.
> rdbtool mydisk.rdb delete 0 > rdbtool mydisk.rdb delete dh1
‘map’ – Show the allocation map of the RDB blocks
SYNTAX
map
DESCRIPTION
This command lets you look under the hood of the RDB. It will print all blocks associated with the RDB and shows their current contents. A two char code is used for each block:
--   block is empty and not used for RDB RD   the main rigid disk block P?   partition <n> F?   file system <n>
> rdbtool mydisk.rdb map
3.4 Working with File Systems
The RDB data structure allows to store file system drivers for classic AmigaOS, so the Kickstart can load the driver before mounting a parition in the RDB.
File systems are LoadSeg()able Amiga Hunk binaries directly embedded in the RDB blocks.
Use the “info” command to see if any file systems are already stored in the RDB. In the output you can see that the file systems are numbered in rdbtool starting with 0.
‘fsget’ – Retrieve the file system driver from a RDB structure
SYNTAX
fsget <id> <filename>
DESCRIPTION
This command extracts the file system numbered <id> and stores the LoadSeg()able Amiga binary on your local system into a new file with the given <filename>:
> rdbtool mydisk.rdb fsget 0 ffs  ; create a new file "ffs" with the first driver
‘fsadd’ – Add a new file system driver
SYNTAX
fsadd <filename> [version=<x.y>]
DESCRIPTION
Add the LoadSeg()able file system driver stored in file <filename> to the current RDB.
Every file system driver needs a version information given as <x>.<y>, e.g. 40.63. When a file is loaded the version is automatically extracted from a “VER:” tag inside the binary. If this tag cannot be found you can specify the version with the “version” option.
> rdbtool mydisk.rdb fsadd ffs version=60.32
‘fsflags’ – Change flags of file system
SYNTAX
fsflags <id> [ clear | key=value ... ]
DESCRIPTION
With this command you can alter the device node flags of a file system.
The file system <id> is the number of the file system as listed with the ‘info’ command.
The following keys are supported:
type task lock handler stack_size priority startup seg_list_blk global_vec
The “clear” option will remove all flags first. All other commands add the corresponding flag:
> rdbtool mydisk.rdb fsflags 0 clear stack_size=8192
Have a look at the output of the ‘info’ command to see the flags set for a file system.
‘fsdelete’ – Remove a file system
SYNTAX
fsdelete <id>
DESCRIPTION
The file system with the given number is removed. All associated blocks of the file system are free’d.
EOF
Sw33t, this rdbtool is something I was looking for!