Instruct Hetzner installimage to use SSD as primary OS drive The Next CEO of Stack OverflowAre...

How to place nodes around a circle from some initial angle?

Make solar eclipses exceedingly rare, but still have new moons

How to edit “Name” property in GCI output?

Which one is the true statement?

Newlines in BSD sed vs gsed

How to check if all elements of 1 list are in the *same quantity* and in any order, in the list2?

Solving system of ODEs with extra parameter

Prepend last line of stdin to entire stdin

Why is quantifier elimination desirable for a given theory?

Does increasing your ability score affect your main stat?

Rotate a column

If Nick Fury and Coulson already knew about aliens (Kree and Skrull) why did they wait until Thor's appearance to start making weapons?

Why is the US ranked as #45 in Press Freedom ratings, despite its extremely permissive free speech laws?

INSERT to a table from a database to other (same SQL Server) using Dynamic SQL

Chain wire methods together in Lightning Web Components

Is wanting to ask what to write an indication that you need to change your story?

Method for adding error messages to a dictionary given a key

I want to delete every two lines after 3rd lines in file contain very large number of lines :

What connection does MS Office have to Netscape Navigator?

Is it convenient to ask the journal's editor for two additional days to complete a review?

Why, when going from special to general relativity, do we just replace partial derivatives with covariant derivatives?

Is there a difference between "Fahrstuhl" and "Aufzug"

Running a General Election and the European Elections together

Dominated convergence theorem - what sequence?



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












1















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.










share|improve this question
















bumped to the homepage by Community 41 secs ago


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/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













  • 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
















1















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.










share|improve this question
















bumped to the homepage by Community 41 secs ago


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/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













  • 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














1












1








1








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.










share|improve this question
















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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








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 41 secs ago


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 41 secs ago


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/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













  • 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











  • @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













  • 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










2 Answers
2






active

oldest

votes


















0














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






share|improve this answer
























  • 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











  • 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



















0














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






share|improve this answer
























    Your Answer








    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
    });


    }
    });














    draft saved

    draft discarded


















    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









    0














    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






    share|improve this answer
























    • 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











    • 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
















    0














    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






    share|improve this answer
























    • 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











    • 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














    0












    0








    0







    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






    share|improve this answer













    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







    share|improve this answer












    share|improve this answer



    share|improve this answer










    answered Jul 11 '17 at 14:14









    Andreas RoggeAndreas Rogge

    1,870318




    1,870318













    • 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











    • 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











    • 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











    • 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













    0














    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






    share|improve this answer




























      0














      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






      share|improve this answer


























        0












        0








        0







        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






        share|improve this answer













        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







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Nov 26 '18 at 20:29









        demon101demon101

        1044




        1044






























            draft saved

            draft discarded




















































            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.




            draft saved


            draft discarded














            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





















































            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







            Popular posts from this blog

            As a Security Precaution, the user account has been locked The Next CEO of Stack OverflowMS...

            Список ссавців Італії Природоохоронні статуси | Список |...

            Українські прізвища Зміст Історичні відомості |...