RSS

Menambahkan HDD Baru Pada Proxmox

Menambahkan HDD Baru Pada Proxmox VE 5 ini biasanya dikarenakan untuk penambahan vm baru, penyimpanan backupan vm sudah tidak mencukupi atau hal lainnya. Pada tutorial ini penambahan hdd dengan kapasitas 2TB. Sebelum melakukkan penambahan hdd baru, pastikan semua vm sudah dalam kondisi mati. Karena nantinya proxmox akan dimatikan perlebih dahulu sebelum dimasukkan hdd yang baru. Berikut tutorial langkah-langkahnya

1. Pastikan semua VM dalam kondisi mati.
2. Shutdown Proxmox VE
3. Masukkan HDD yang baru
4. Nyalakan server
5. Klik Proxmox Node > Disks
hdd yang baru sudah terbaca pada /dev/sda

6. SSH ke server Proxmox VE dan masukkan perintah berikut

1
fdisk /dev/sda

7. Buat partisi baru, Ketik n enter

1
2
3
4
Welcome to fdisk (util-linux 2.29.2).
Changes will remain in memory only, until you decide to write them.
Be careful before using the write command.
Command (m for help): n

8. Pilih tipe partisi, ketik p enter

1
2
3
4
Partition type
p primary (0 primary, 0 extended, 4 free)
e extended (container for logical partitions)
Select (default p): p

9. Nomor partisi, gunakan default dengan menekan enter 3x

1
2
3
4
5
Partition number (1-4, default 1):
First sector (2048-16777215, default 2048):
Last sector, +sectors or +size{K,M,G,T,P} (2048-16777215, default 16777215):
 
Created a new partition 1 of type 'Linux' and of size 1,82TB GiB.

10. Save partisi, ketik w enter

1
2
3
4
Command (m for help): w
The partition table has been altered.
Calling ioctl() to re-read partition table.
Syncing disks.

11. Format partisi dengan perintah berikut

1
mkfs.ext4 /dev/sda1

12. Buat direktori penyimpanan, dan mounting partisi ke direktori tersebut

1
2
mkdir -p /mnt/data/backup/
mount /dev/sda1 /mnt/data/backup/

13. Buat auto mounting partisi

1
nano /etc/fstab

masukkan berikut pada baris paling bawah

1
/dev/sda1 /mnt/data/backup ext4 defaults 0 2

14. Klik Datacenter > Storage > Add, pilih Directory

15. Masukkan ID, Directory, Content sesuai berikut, kemudian klik Add

16. Bila berhasil akan tampil storage baru seperti berikut

Semoga bermanfaat..

sumber -> https://saad.web.id/2020/01/menambahkan-hdd-baru-pada-proxmox-ve-5/

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

Quick how-to: Using the Proxmox ISO on an Nvidia GPU

I just finished building a new server based on consumer hardware and to my surprise the Proxmox installer would fail to load the xserver and would just give a black screen.

The root cause of this issue seems to be the 'noeveau' driver not supporting all Nvidia cards.
While this could be worked around by first installing Debian and then the Proxmox packages I figured there must be a way to do this all from the ISO.

I finally cracked this thanks to a comment from u/Digger412 and figured I should make a full write up here.

  1. When the ISO loads the menu option 'Install Proxmox VE' should be selected press 'e' to start editing the boot option.

  2. On the 4th line (starts with linux) add nomodeset

  3. Press Ctrl + x

  4. After (attempting to) get DHCP the system will state 'Starting a root shell on tty3'

  5. Wait for the system to detect the installation failure and drop to shell in TTY1 (Do not switch to TTY3)

  6. Run chmod 1777 /tmp to unlock /tmp

  7. Run apt update (I think this is partially to verify that /tmp is unlocked)

  8. Run Xorg -configure To generate a new configuration file

  9. Run mv /xorg.conf.new /etc/X11/xorg.conf to move the file to the config directory

  10. Start editing the configuration file with your favorite editor.

  11. Search for nouveau (there should be only one occurrence) and replace it with fbdev

  12. Save and close the config file.

  13. Run startx

  14. Enjoy a working GUI installer

  15. Use Ctrl + D to restart the system after the installer exits.

I hope this helps, feel free to share this info because this seems like a huge issue that requires way too much searching for a good solution.

PS: After reboot the screen seems to keep flickering but remote access should now work and it could probably be fixed by installing the proper drivers.

copy from => Proxmox Nvidia

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS