Jump to content

nikadotme

Member
  • Posts

    3
  • Joined

  • Last visited

Awards

This user doesn't have any awards

nikadotme's Achievements

  1. KVM Switch is different thing, they are about Linux KVM... Kernel-based Virtual Machine (KVM) it is linux kernel module for virtualization. If you are trying to play, or trying to have better performance in video and so on, use Parallels Desktop 12 and you'll see big difference, other VMs are not optimized for video intensive things and so on KVM is for VM's like webserver and so on, it is good for having several desktops virtually.
  2. If you need much cheaper version, just use digitalocean, they made new storage systems about 3 times cheaper than AWS, plus they are giving you several terabytes for free, so you don't have to pay for traffic, virtual machine on EC2 starts from about 17$ and on Digitalocean it starts from 5$, plus they have many locations and however the latency is better, I have no idea why, but digitalocean has much better latency for all around the world, AWS storages are very good if you use S3, because S3 is like a HTTP storage server, but you can't use it like NAS or something like that, it uses API to get,put,delete,update files on it, if you need to use remote server, or VM for Network storage you have to use dedicated server from OVH or Codero else if you want slightly cheaper and smaller: DigitalOcean (popular) https://goo.gl/WbSygF (They'll give you 10$ for free as soon as you'll add credit card) *** they have hourly payments so if you'll decide to not use it, they'll not charge anything because they are giving you 10$ to see their service and several hours will cost less then 0.20 cents Linode https://goo.gl/c55tsx (this service gives you slightly more resources, but they don't have trial credits) digitalocean has better performance, plus many softwares support digitalocean api and it is very comfortable
  3. If you are IT student and you are learning development, you'll need Vagrant or docker VMS and such things, not WAMP... who uses wamp now days? OS selection? depends on your hardware, if your server has normal CPU and RAM, I advice you to install VMware vSphere (ESXi) and you'll be able to install two or more servers, first Windows for streaming and such things (Because, I think it'll be very hard for you to do this things on Linux... anyway), be aware that you can't see any difference between standard shared hosting or local server if you'll start using FTP and such things, FTP has so big delay for every file you are uploading it is stupidest way, because today there are lot of alternatives doing development. 1. vagrant, you can use digitalocean or your local VM software like virtualbox to run development machines and it is billion times better than having headache using FTP, because every time you want to edit something on website or development env using FTP is just a headache, what if you have 1000 files, you have to download/upload each time you do change something, else you have to use PhpStorm or something like that to automate this process, but it'll be bad anyway, because than you have to sync files every time you start, or if you'll change something using another editor, you have to sync again. so vagrant is better and I don't think normal developer will work using wamp this days. 2. docker, it is like vagrant... but much modern thing, it uses less resources, so you can run this small containers on your own computer and you'll not see any performance issues, because they are not VMs they are containers, you can run it on all operating systems. 3. and last one, you can use language's builtin webserver on your own computer and you don't have to upload or download something, or install any VM or container. just type php -S localhost:3000 and that's all you have development webserver running on Windows, Mac, Linux... everywhere. I'm software developer 12 years already and believe me )) everything I wrote are used in all big companies and they are not using FTP and wamp stupid things to develop something, none of them. so, just read documentations about vagrant, install Vmware ESXi and Windows on top of vmware and than just connect vagrant on vmware and you'll build better dev environment, than WAMP or such things. *** vagrant is linux but it makes folder sharing and it installs everything automatically, so everything that you do on local directory, it just instantly syncs to vagrant box and you don't have to wait something to sync or download/upload it, files are mirrored.
×