In diesem Tutorial zeigen wir Ihnen, wie Sie local Blockstorage unter Linux auf einem netcup Server einbinden und nutzen können.
Die Anleitung richtet sich an Benutzer, die bereits Zugriff auf ihren Server über SSH haben. Bitte stellen Sie sicher, dass Ihr Benutzer die erforderlichen Berechtigungen hat.
Sie können zu Beginn einer jeden SSH-Session das folgende Kommando ausführen: bash sudo -i
Um eine Übersicht über alle erkannten Festplatten zu erhalten, verwenden Sie den Befehl:
fdisk -l
In unserem Beispiel haben wir zwei Festplatten: /dev/sda (die Systemfestplatte) und /dev/vda (eine zusätzliche 50 GiB-Festplatte).
Verwenden Sie cfdisk
, um eine Partition auf der zusätzlichen Festplatte zu erstellen:
cfdisk /dev/vdb1
Wählen Sie im Auswahlmenü "dos" für eine MBR-Partitionstabelle. Danach erstellen Sie eine 50 GiB-Partition als Primärpartition.
Verlassen Sie cfdisk
und überprüfen Sie, ob die Partition erstellt wurde:
fdisk -l
Formatieren Sie die Partition (in unserem Beispiel als ext4):
mkfs.ext4 /dev/vdb1
Erstellen Sie einen Ordner für die Festplatte (in unserem Beispiel "lbstorage"):
mkdir /lbstorage
Binden Sie die Partition in den Ordner ein:
mount /dev/vdb1 /lbstorage
Finden Sie die UUID der Partition:
blkid /dev/vdb1
Öffnen Sie die /etc/fstab
-Datei und fügen Sie die UUID hinzu:
nano /etc/fstab
Fügen Sie am Ende der Datei die Zeile ein (ersetzen Sie die UUID durch die richtige):
UUID=your_uuid_here /lbstorage ext4 defaults 0 0
Speichern Sie die Datei.
Ihr local Blockstorage wird automatisch nach einem Neustart eingebunden und ist einsatzbereit.
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicence, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
By making a contribution to this project, I certify that:
The contribution was created in whole or in part by me and I have the right to submit it under the license indicated in the file; or
The contribution is based upon previous work that, to the best of my knowledge, is covered under an appropriate license and I have the right under that license to submit that work with modifications, whether created in whole or in part by me, under the same license (unless I am permitted to submit under a different license), as indicated in the file; or
The contribution was provided directly to me by some other person who certified (a), (b) or (c) and I have not modified it.
I understand and agree that this project and the contribution are public and that a record of the contribution (including all personal information I submit with it, including my sign-off) is maintained indefinitely and may be redistributed consistent with this project or the license(s) involved.