Posts

Showing posts from May, 2017

How to upload an ISO image from local drive to a proxmox server

How to upload an ISO image from local drive to a proxmox server Login to proxmox web control panel. Goto server view from drop down on left hand side. Expand datacenter menu until you see local then click it Right hand side select COntent tab click upload button Click select file, find your ISO, click upload.

: Too many open files in system

When you see this error while using commands in linux  ": Too many open files in system" Do the following:- first use this command to find the culprit process ID lsof | awk '{ print $2; }' | uniq -c | sort -rn | head Then kill the ID.