DataMuseum.dk

Presents historical artifacts from the history of:

Regnecentalen RC-900

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about Regnecentalen RC-900

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download
Index: T u

⟦4f86bfd8a⟧ TextFile

    Length: 884 (0x374)
    Types: TextFile
    Names: »usr/admin/menu/diskmgmt/harddisk/display «

Derivation

└─⟦3d8f416b2⟧ Bits:30004042/core2.imd SW95705I 386/ix Multi-user Release 1.2
    └─⟦this⟧ »usr/admin/menu/diskmgmt/harddisk/display « 

TextFile

#ident	"@(#)display	1.3"
#menu# display hard disk partitioning
#help# 
#help#	Display the partitioning of a hard disk.  Also shows the
#help#	hardware location of the selected disk.

flags="-qq -k$$"
trap 'exit 0' 1 2  15

while  true
do
	echo "
		Display disk partitions and vtoc

	Selection of a number 1 - 4 will cause the display of the
	partitions and the vtoc of the corresponding disk.  If the disk
	is not configured in the file /etc/partitions, an error message will
	be displayed.

		1 disk0    2 disk01     3 disk02     4 disk03

	Enter a number or q to quit: \c "

	read sel;

	case "$sel" in 

		1)  
 		/etc/mkpart -t vp disk0
		;;
		2)  
 		/etc/mkpart -t vp disk01
		;;
		3)  
 		/etc/mkpart -t vp disk02
		;;
		4)  
 		/etc/mkpart -t vp disk03
		;;
		q)  
		exit 0
		;;
		*)
		echo "Invalid selection"
		;;

	esac

	echo "Enter any key to continue:  \c"
	read x
done