Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Cloud Platform : Can i install open source s/w like Ghostscript in any IaaS?

In my application i have to install Ghostscript in the server to run the application.Is Google Compute Engine(IaaS), Amazon EC2, VMware, WindowsAzure etc., or anyone support software installation from user side.

like image 623
Master Mind Avatar asked Nov 04 '22 14:11

Master Mind


1 Answers

Yes. On IaaS you get full access to the computing platform (the infrastructure) and you can do pretty much whatever you want with it (ehm... legal aspects apply).

Basically, you get an API which allows you to manage virtual computing resources (Servers, Disk space, Firewalls, Load balancers,...).

Normally, the service is delivered as a web or console interface which allows you to spawn new resources and, in the case of virtual machines, get root access to them.

In many of such services, you are even able to upload your custom disk images and run the OS installed on them. This gives you the ability to customize things down to the kernel level.

The IaaS section on wikipedia may shed some more light on the argument.

like image 146
GaretJax Avatar answered Nov 13 '22 05:11

GaretJax