Instruct Hetzner installimage to use SSD as primary OS drive The Next CEO of Stack OverflowAre SSD drives as reliable as mechanical drives (2013)?Various problems with software raid1 array built with Samsung 840 Pro SSDsProcessing data faster using ssis and an ssd driveHetzner script, configuring SSD + RAID1 image installationCan't use external IP on Hetzner VPSUse SSD to buffer a storage Hard DriveHow to install RDO (OpenStack) in Hetzner?Hetzner netscan abuseGoogle Domains & HetznerFrequent Proxmox server interruptions in Hetzner
Read/write a pipe-delimited file line by line with some simple text manipulation
How seriously should I take size and weight limits of hand luggage?
Is a linearly independent set whose span is dense a Schauder basis?
Which acid/base does a strong base/acid react when added to a buffer solution?
Another proof that dividing by 0 does not exist -- is it right?
Can I cast Thunderwave and be at the center of its bottom face, but not be affected by it?
Physiological effects of huge anime eyes
Prodigo = pro + ago?
Are British MPs missing the point, with these 'Indicative Votes'?
My boss doesn't want me to have a side project
Simplify trigonometric expression using trigonometric identities
Post-doc vs. Assistant Professor choice, but neither ideal
Upgrading From a 9 Speed Sora Derailleur?
Find the majority element, which appears more than half the time
Is it possible to create a QR code using text?
"Eavesdropping" vs "Listen in on"
Is a distribution that is normal, but highly skewed, considered Gaussian?
Can Sri Krishna be called 'a person'?
How do I secure a TV wall mount?
Mathematica command that allows it to read my intentions
How can the PCs determine if an item is a phylactery?
How can a day be of 24 hours?
Why does freezing point matter when picking cooler ice packs?
Traveling with my 5 year old daughter (as the father) without the mother from Germany to Mexico
Instruct Hetzner installimage to use SSD as primary OS drive
The Next CEO of Stack OverflowAre SSD drives as reliable as mechanical drives (2013)?Various problems with software raid1 array built with Samsung 840 Pro SSDsProcessing data faster using ssis and an ssd driveHetzner script, configuring SSD + RAID1 image installationCan't use external IP on Hetzner VPSUse SSD to buffer a storage Hard DriveHow to install RDO (OpenStack) in Hetzner?Hetzner netscan abuseGoogle Domains & HetznerFrequent Proxmox server interruptions in Hetzner
Purchased a dedicated Hetzner server with 2x small SSDs and 2x large HDDs paired with hardware RAID. Running installimage from Rescue OS shows this as config:
# Adaptec RAID (LD 0): no name
DRIVE1 /dev/sda
# Adaptec RAID (LD 1): no name
DRIVE2 /dev/sdb
...
Lower down, it shows,
## your system has the following devices:
#
# Disk /dev/sda: 749 GB (=> 697 GiB).
# Disk /dev/sdb: 119 GB (=> 111 GiB).
I set SWRAID 0. How do I tell the script to mount the SSD pair as the primary drive for installing the OS?
My first attempt was to swap the DRIVEx statements around, which resulted in this on Debian:
root@Debian-90-stretch-64-minimal / # lsblk
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT
sda 8:0 1 698G 0 disk
|-sda1 8:1 1 12G 0 part
| `-md0 9:0 0 12G 0 raid1 [SWAP]
|-sda2 8:2 1 512M 0 part
| `-md1 9:1 0 511.4M 0 raid1 /boot
`-sda3 8:3 1 99.1G 0 part
`-md2 9:2 0 99G 0 raid1 /
sdb 8:16 1 111.6G 0 disk
|-sdb1 8:17 1 12G 0 part
|-sdb2 8:18 1 512M 0 part
`-sdb3 8:19 1 99.1G 0 part
As you can see the SSDs are a on sdb and the larger 698GB HDDs are on sda, but sda is not fully partitioned. It feels like potentially the drives are incorrectly paired.
ssd operating-system hetzner
bumped to the homepage by Community♦ yesterday
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
Purchased a dedicated Hetzner server with 2x small SSDs and 2x large HDDs paired with hardware RAID. Running installimage from Rescue OS shows this as config:
# Adaptec RAID (LD 0): no name
DRIVE1 /dev/sda
# Adaptec RAID (LD 1): no name
DRIVE2 /dev/sdb
...
Lower down, it shows,
## your system has the following devices:
#
# Disk /dev/sda: 749 GB (=> 697 GiB).
# Disk /dev/sdb: 119 GB (=> 111 GiB).
I set SWRAID 0. How do I tell the script to mount the SSD pair as the primary drive for installing the OS?
My first attempt was to swap the DRIVEx statements around, which resulted in this on Debian:
root@Debian-90-stretch-64-minimal / # lsblk
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT
sda 8:0 1 698G 0 disk
|-sda1 8:1 1 12G 0 part
| `-md0 9:0 0 12G 0 raid1 [SWAP]
|-sda2 8:2 1 512M 0 part
| `-md1 9:1 0 511.4M 0 raid1 /boot
`-sda3 8:3 1 99.1G 0 part
`-md2 9:2 0 99G 0 raid1 /
sdb 8:16 1 111.6G 0 disk
|-sdb1 8:17 1 12G 0 part
|-sdb2 8:18 1 512M 0 part
`-sdb3 8:19 1 99.1G 0 part
As you can see the SSDs are a on sdb and the larger 698GB HDDs are on sda, but sda is not fully partitioned. It feels like potentially the drives are incorrectly paired.
ssd operating-system hetzner
bumped to the homepage by Community♦ yesterday
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
What do you want to swap? Just use/dev/sdbas installation disk.
– Lenniey
Jul 11 '17 at 12:21
@Lenniey how do I do that using theinstallimageconfig?
– Petrus Theron
Jul 11 '17 at 12:29
There is a documentation wiki.hetzner.de/index.php/Installimage/en. This is the important part: Drives The drives that are present in the server are identified in the first row with the variable DRIVE. Above each line you can see the type of drive. Here you can select on which drives you want the OS to be installed. The drives will be completely wiped, and all data currently on them will be lost.# SSDSC2BB480G4 #DRIVE1 /dev/sda # SSDSC2BB480G4 DRIVE1 /dev/sdb
– Lenniey
Jul 11 '17 at 13:06
Thanks @Lenniey, but I can't figure out how to specify which physical drive to install the OS on.
– Petrus Theron
Jul 25 '17 at 9:14
add a comment |
Purchased a dedicated Hetzner server with 2x small SSDs and 2x large HDDs paired with hardware RAID. Running installimage from Rescue OS shows this as config:
# Adaptec RAID (LD 0): no name
DRIVE1 /dev/sda
# Adaptec RAID (LD 1): no name
DRIVE2 /dev/sdb
...
Lower down, it shows,
## your system has the following devices:
#
# Disk /dev/sda: 749 GB (=> 697 GiB).
# Disk /dev/sdb: 119 GB (=> 111 GiB).
I set SWRAID 0. How do I tell the script to mount the SSD pair as the primary drive for installing the OS?
My first attempt was to swap the DRIVEx statements around, which resulted in this on Debian:
root@Debian-90-stretch-64-minimal / # lsblk
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT
sda 8:0 1 698G 0 disk
|-sda1 8:1 1 12G 0 part
| `-md0 9:0 0 12G 0 raid1 [SWAP]
|-sda2 8:2 1 512M 0 part
| `-md1 9:1 0 511.4M 0 raid1 /boot
`-sda3 8:3 1 99.1G 0 part
`-md2 9:2 0 99G 0 raid1 /
sdb 8:16 1 111.6G 0 disk
|-sdb1 8:17 1 12G 0 part
|-sdb2 8:18 1 512M 0 part
`-sdb3 8:19 1 99.1G 0 part
As you can see the SSDs are a on sdb and the larger 698GB HDDs are on sda, but sda is not fully partitioned. It feels like potentially the drives are incorrectly paired.
ssd operating-system hetzner
Purchased a dedicated Hetzner server with 2x small SSDs and 2x large HDDs paired with hardware RAID. Running installimage from Rescue OS shows this as config:
# Adaptec RAID (LD 0): no name
DRIVE1 /dev/sda
# Adaptec RAID (LD 1): no name
DRIVE2 /dev/sdb
...
Lower down, it shows,
## your system has the following devices:
#
# Disk /dev/sda: 749 GB (=> 697 GiB).
# Disk /dev/sdb: 119 GB (=> 111 GiB).
I set SWRAID 0. How do I tell the script to mount the SSD pair as the primary drive for installing the OS?
My first attempt was to swap the DRIVEx statements around, which resulted in this on Debian:
root@Debian-90-stretch-64-minimal / # lsblk
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT
sda 8:0 1 698G 0 disk
|-sda1 8:1 1 12G 0 part
| `-md0 9:0 0 12G 0 raid1 [SWAP]
|-sda2 8:2 1 512M 0 part
| `-md1 9:1 0 511.4M 0 raid1 /boot
`-sda3 8:3 1 99.1G 0 part
`-md2 9:2 0 99G 0 raid1 /
sdb 8:16 1 111.6G 0 disk
|-sdb1 8:17 1 12G 0 part
|-sdb2 8:18 1 512M 0 part
`-sdb3 8:19 1 99.1G 0 part
As you can see the SSDs are a on sdb and the larger 698GB HDDs are on sda, but sda is not fully partitioned. It feels like potentially the drives are incorrectly paired.
ssd operating-system hetzner
ssd operating-system hetzner
edited Jul 11 '17 at 12:42
Petrus Theron
asked Jul 11 '17 at 11:37
Petrus TheronPetrus Theron
82131221
82131221
bumped to the homepage by Community♦ yesterday
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
bumped to the homepage by Community♦ yesterday
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
What do you want to swap? Just use/dev/sdbas installation disk.
– Lenniey
Jul 11 '17 at 12:21
@Lenniey how do I do that using theinstallimageconfig?
– Petrus Theron
Jul 11 '17 at 12:29
There is a documentation wiki.hetzner.de/index.php/Installimage/en. This is the important part: Drives The drives that are present in the server are identified in the first row with the variable DRIVE. Above each line you can see the type of drive. Here you can select on which drives you want the OS to be installed. The drives will be completely wiped, and all data currently on them will be lost.# SSDSC2BB480G4 #DRIVE1 /dev/sda # SSDSC2BB480G4 DRIVE1 /dev/sdb
– Lenniey
Jul 11 '17 at 13:06
Thanks @Lenniey, but I can't figure out how to specify which physical drive to install the OS on.
– Petrus Theron
Jul 25 '17 at 9:14
add a comment |
What do you want to swap? Just use/dev/sdbas installation disk.
– Lenniey
Jul 11 '17 at 12:21
@Lenniey how do I do that using theinstallimageconfig?
– Petrus Theron
Jul 11 '17 at 12:29
There is a documentation wiki.hetzner.de/index.php/Installimage/en. This is the important part: Drives The drives that are present in the server are identified in the first row with the variable DRIVE. Above each line you can see the type of drive. Here you can select on which drives you want the OS to be installed. The drives will be completely wiped, and all data currently on them will be lost.# SSDSC2BB480G4 #DRIVE1 /dev/sda # SSDSC2BB480G4 DRIVE1 /dev/sdb
– Lenniey
Jul 11 '17 at 13:06
Thanks @Lenniey, but I can't figure out how to specify which physical drive to install the OS on.
– Petrus Theron
Jul 25 '17 at 9:14
What do you want to swap? Just use
/dev/sdb as installation disk.– Lenniey
Jul 11 '17 at 12:21
What do you want to swap? Just use
/dev/sdb as installation disk.– Lenniey
Jul 11 '17 at 12:21
@Lenniey how do I do that using the
installimage config?– Petrus Theron
Jul 11 '17 at 12:29
@Lenniey how do I do that using the
installimage config?– Petrus Theron
Jul 11 '17 at 12:29
There is a documentation wiki.hetzner.de/index.php/Installimage/en. This is the important part: Drives The drives that are present in the server are identified in the first row with the variable DRIVE. Above each line you can see the type of drive. Here you can select on which drives you want the OS to be installed. The drives will be completely wiped, and all data currently on them will be lost.
# SSDSC2BB480G4 #DRIVE1 /dev/sda # SSDSC2BB480G4 DRIVE1 /dev/sdb– Lenniey
Jul 11 '17 at 13:06
There is a documentation wiki.hetzner.de/index.php/Installimage/en. This is the important part: Drives The drives that are present in the server are identified in the first row with the variable DRIVE. Above each line you can see the type of drive. Here you can select on which drives you want the OS to be installed. The drives will be completely wiped, and all data currently on them will be lost.
# SSDSC2BB480G4 #DRIVE1 /dev/sda # SSDSC2BB480G4 DRIVE1 /dev/sdb– Lenniey
Jul 11 '17 at 13:06
Thanks @Lenniey, but I can't figure out how to specify which physical drive to install the OS on.
– Petrus Theron
Jul 25 '17 at 9:14
Thanks @Lenniey, but I can't figure out how to specify which physical drive to install the OS on.
– Petrus Theron
Jul 25 '17 at 9:14
add a comment |
2 Answers
2
active
oldest
votes
If the box is still "clean" maybe you could remove your two raid arrays and recreate them so the ssd-array is the first one.
There is sufficient documentation on how to do this using arcconf on https://wiki.hetzner.de/index.php/Adaptec_RAID_Controller
If you need further assistance I'll need the output ofarcconf GETCONFIG 1 LD
– Andreas Rogge
Jul 11 '17 at 14:15
This would be the "beautiful" solution. But it's quite the hassle, too. If there's no need to switch the diskssdb/sdaI wouldn't do it.
– Lenniey
Jul 11 '17 at 14:52
I guess the box will boot from sda, so you'll have to put your bootloader there.
– Andreas Rogge
Jul 11 '17 at 19:47
Could be, yes. I sure hope they set both RAIDs as bootable and have both volumes in BIOS ;)
– Lenniey
Jul 12 '17 at 7:13
add a comment |
You should remove one of the discs from the config.
If you want to leave a drive in its current state and not make any
changes to it you can leave it out (remove it) by placing a "#" before
it. Please note that doing so means that the number after the next
DRIVE variable must be properly adjusted.
Otherwise, all 4 physical disks will be in one raid massive:
Any software RAID levels are always applied to all (marked with DRIVE,
as discussed above) drives. If you don't want a software RAID on a
particular drive, you'll need to remove it accordingly.
Later, after system installation, you can format and mount second raid massive
https://wiki.hetzner.de/index.php/Installimage/en
add a comment |
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "2"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f861503%2finstruct-hetzner-installimage-to-use-ssd-as-primary-os-drive%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
If the box is still "clean" maybe you could remove your two raid arrays and recreate them so the ssd-array is the first one.
There is sufficient documentation on how to do this using arcconf on https://wiki.hetzner.de/index.php/Adaptec_RAID_Controller
If you need further assistance I'll need the output ofarcconf GETCONFIG 1 LD
– Andreas Rogge
Jul 11 '17 at 14:15
This would be the "beautiful" solution. But it's quite the hassle, too. If there's no need to switch the diskssdb/sdaI wouldn't do it.
– Lenniey
Jul 11 '17 at 14:52
I guess the box will boot from sda, so you'll have to put your bootloader there.
– Andreas Rogge
Jul 11 '17 at 19:47
Could be, yes. I sure hope they set both RAIDs as bootable and have both volumes in BIOS ;)
– Lenniey
Jul 12 '17 at 7:13
add a comment |
If the box is still "clean" maybe you could remove your two raid arrays and recreate them so the ssd-array is the first one.
There is sufficient documentation on how to do this using arcconf on https://wiki.hetzner.de/index.php/Adaptec_RAID_Controller
If you need further assistance I'll need the output ofarcconf GETCONFIG 1 LD
– Andreas Rogge
Jul 11 '17 at 14:15
This would be the "beautiful" solution. But it's quite the hassle, too. If there's no need to switch the diskssdb/sdaI wouldn't do it.
– Lenniey
Jul 11 '17 at 14:52
I guess the box will boot from sda, so you'll have to put your bootloader there.
– Andreas Rogge
Jul 11 '17 at 19:47
Could be, yes. I sure hope they set both RAIDs as bootable and have both volumes in BIOS ;)
– Lenniey
Jul 12 '17 at 7:13
add a comment |
If the box is still "clean" maybe you could remove your two raid arrays and recreate them so the ssd-array is the first one.
There is sufficient documentation on how to do this using arcconf on https://wiki.hetzner.de/index.php/Adaptec_RAID_Controller
If the box is still "clean" maybe you could remove your two raid arrays and recreate them so the ssd-array is the first one.
There is sufficient documentation on how to do this using arcconf on https://wiki.hetzner.de/index.php/Adaptec_RAID_Controller
answered Jul 11 '17 at 14:14
Andreas RoggeAndreas Rogge
1,870318
1,870318
If you need further assistance I'll need the output ofarcconf GETCONFIG 1 LD
– Andreas Rogge
Jul 11 '17 at 14:15
This would be the "beautiful" solution. But it's quite the hassle, too. If there's no need to switch the diskssdb/sdaI wouldn't do it.
– Lenniey
Jul 11 '17 at 14:52
I guess the box will boot from sda, so you'll have to put your bootloader there.
– Andreas Rogge
Jul 11 '17 at 19:47
Could be, yes. I sure hope they set both RAIDs as bootable and have both volumes in BIOS ;)
– Lenniey
Jul 12 '17 at 7:13
add a comment |
If you need further assistance I'll need the output ofarcconf GETCONFIG 1 LD
– Andreas Rogge
Jul 11 '17 at 14:15
This would be the "beautiful" solution. But it's quite the hassle, too. If there's no need to switch the diskssdb/sdaI wouldn't do it.
– Lenniey
Jul 11 '17 at 14:52
I guess the box will boot from sda, so you'll have to put your bootloader there.
– Andreas Rogge
Jul 11 '17 at 19:47
Could be, yes. I sure hope they set both RAIDs as bootable and have both volumes in BIOS ;)
– Lenniey
Jul 12 '17 at 7:13
If you need further assistance I'll need the output of
arcconf GETCONFIG 1 LD– Andreas Rogge
Jul 11 '17 at 14:15
If you need further assistance I'll need the output of
arcconf GETCONFIG 1 LD– Andreas Rogge
Jul 11 '17 at 14:15
This would be the "beautiful" solution. But it's quite the hassle, too. If there's no need to switch the disks
sdb/sda I wouldn't do it.– Lenniey
Jul 11 '17 at 14:52
This would be the "beautiful" solution. But it's quite the hassle, too. If there's no need to switch the disks
sdb/sda I wouldn't do it.– Lenniey
Jul 11 '17 at 14:52
I guess the box will boot from sda, so you'll have to put your bootloader there.
– Andreas Rogge
Jul 11 '17 at 19:47
I guess the box will boot from sda, so you'll have to put your bootloader there.
– Andreas Rogge
Jul 11 '17 at 19:47
Could be, yes. I sure hope they set both RAIDs as bootable and have both volumes in BIOS ;)
– Lenniey
Jul 12 '17 at 7:13
Could be, yes. I sure hope they set both RAIDs as bootable and have both volumes in BIOS ;)
– Lenniey
Jul 12 '17 at 7:13
add a comment |
You should remove one of the discs from the config.
If you want to leave a drive in its current state and not make any
changes to it you can leave it out (remove it) by placing a "#" before
it. Please note that doing so means that the number after the next
DRIVE variable must be properly adjusted.
Otherwise, all 4 physical disks will be in one raid massive:
Any software RAID levels are always applied to all (marked with DRIVE,
as discussed above) drives. If you don't want a software RAID on a
particular drive, you'll need to remove it accordingly.
Later, after system installation, you can format and mount second raid massive
https://wiki.hetzner.de/index.php/Installimage/en
add a comment |
You should remove one of the discs from the config.
If you want to leave a drive in its current state and not make any
changes to it you can leave it out (remove it) by placing a "#" before
it. Please note that doing so means that the number after the next
DRIVE variable must be properly adjusted.
Otherwise, all 4 physical disks will be in one raid massive:
Any software RAID levels are always applied to all (marked with DRIVE,
as discussed above) drives. If you don't want a software RAID on a
particular drive, you'll need to remove it accordingly.
Later, after system installation, you can format and mount second raid massive
https://wiki.hetzner.de/index.php/Installimage/en
add a comment |
You should remove one of the discs from the config.
If you want to leave a drive in its current state and not make any
changes to it you can leave it out (remove it) by placing a "#" before
it. Please note that doing so means that the number after the next
DRIVE variable must be properly adjusted.
Otherwise, all 4 physical disks will be in one raid massive:
Any software RAID levels are always applied to all (marked with DRIVE,
as discussed above) drives. If you don't want a software RAID on a
particular drive, you'll need to remove it accordingly.
Later, after system installation, you can format and mount second raid massive
https://wiki.hetzner.de/index.php/Installimage/en
You should remove one of the discs from the config.
If you want to leave a drive in its current state and not make any
changes to it you can leave it out (remove it) by placing a "#" before
it. Please note that doing so means that the number after the next
DRIVE variable must be properly adjusted.
Otherwise, all 4 physical disks will be in one raid massive:
Any software RAID levels are always applied to all (marked with DRIVE,
as discussed above) drives. If you don't want a software RAID on a
particular drive, you'll need to remove it accordingly.
Later, after system installation, you can format and mount second raid massive
https://wiki.hetzner.de/index.php/Installimage/en
answered Nov 26 '18 at 20:29
demon101demon101
1044
1044
add a comment |
add a comment |
Thanks for contributing an answer to Server Fault!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f861503%2finstruct-hetzner-installimage-to-use-ssd-as-primary-os-drive%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown

What do you want to swap? Just use
/dev/sdbas installation disk.– Lenniey
Jul 11 '17 at 12:21
@Lenniey how do I do that using the
installimageconfig?– Petrus Theron
Jul 11 '17 at 12:29
There is a documentation wiki.hetzner.de/index.php/Installimage/en. This is the important part: Drives The drives that are present in the server are identified in the first row with the variable DRIVE. Above each line you can see the type of drive. Here you can select on which drives you want the OS to be installed. The drives will be completely wiped, and all data currently on them will be lost.
# SSDSC2BB480G4 #DRIVE1 /dev/sda # SSDSC2BB480G4 DRIVE1 /dev/sdb– Lenniey
Jul 11 '17 at 13:06
Thanks @Lenniey, but I can't figure out how to specify which physical drive to install the OS on.
– Petrus Theron
Jul 25 '17 at 9:14