[SOLVED] Problem with import big OVF file

cazz

Member
Jul 18, 2021
65
2
13
47
Sweden
Hi
I trying to import a VM that have export from my vmware to my new promox.
But the problem is the /temp is to small size so I have to store it somewhere else when I then trying to import OVF file to local-lvm.
Any idea how to fix that?
 
Do you mean /tmp ?

Do you have somewhere where there will be enough space?

There are a few tricks you can do to fake free space. For example if you have a second disk that is mounted to /data, you can
mv /tmp /tmp.old
mkdir /data/tmp
ln -s /data/tmp /tmp
after you are done
rm /tmp
mv /tmp.old /tmp

Note that this is very high level and assumes you know what you are doing. Dont do anything if you are not sure.



Ultra low latency all-NVME shared storage for Proxmox - https://www.blockbridge.com/proxmox
 
I trying to do something simple

Add a USB external drive to proxmox
Format the USB drive to ext4
create a mount for USB drive
copy OVF folder to the USB drive with winscp
Run the import command from proxmox (not there yet)

Going to take somtime but I have no hurry :D