By lunytunes
hey, i use right now windows server vps for firefox+imacro but i want test now ubuntu on digitalocean or any other OS
there is option to install firefox and imacros on it? so i can Automate my macros tasks even if the vnc window closed. just like on windows server vps.
about the gui part i read here: https://www.digitalocean.com/community/tutorials/how-to-setup-vnc-for-ubuntu-12
thank you!
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Yes. Since imacro appears to be a firefox addon it should run on any platform supported by firefox. If you create a new Ubuntu 14.04 or Ubuntu 16.04 droplet and on the create page, check the “user-data” box and paste in the following script your droplet will be configured with an XFCE desktop environment and the x2go service which I think is a better option than VNC (it runs over ssh so it’s encrypted by default and supports ssh-key authentication). You can download a client for Windows, Mac or Linux here.
#!/bin/sh
export DEBIAN_FRONTEND=noninteractive;
apt-get update;
apt-get -y install software-properties-common xubuntu-desktop firefox;
add-apt-repository -y ppa:x2go/stable;
apt-get update;
apt-get -y install x2goserver x2goserver-xsession;
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.