How to run Varying Vagrant Vagrants aka VVV on Windows 10

If you ever need to install Varying Vagrant Vagrants on Windows 10, this is what worked for me (three times on three different computers).

Tested with Windows 10 64bit, VirtualBox 5.0.20, Vagrant 1.8.4, Cygwin 2.5.1 and VVV 1.3.0.

Requirements

  • Administrator privileges
  • Good enough hardware
  • Basic knowledge of VVV
  • Basic knowledge of linux shell
  • Patience
  • Luck (or a bloody sacrifice to some dark god)
  • User name that doesn’t contain spaces in C:\Users\%YOUR_NAME%

Note: If you do have spaces in your username, Cygwin is going to create your home directory in C:\Cygwin64\%YOUR USERNAME% which will later cause problems with running Vagrant. So, right after installing Cygwin, you need to change your home directory to something without spaces and other controversial characters.

Steps to follow

  1. Install Virtualbox.
  2. Install Vagrant.
  3. Install Cygwin.
    1. While installing, select (at least) these additional packages: git, curl and nano.
    2. Choose to create the desktop shortcut.
  4. Install the Microsoft Visual C++ 2010 SP1 Redistributable Package (x86) and don’t ask me why.
  5. Locate the file C:\Windows\System32\drivers\etc\hosts and change its privileges so that you (the current user) can read and write to it.
  6. Open Cygwin and continue working in the terminal.
  7. Get VVV: git clone https://github.com/Varying-Vagrant-Vagrants/VVV.git
  8. Adjust the Customfile to get over a nasty Vagrant/Windows issue:
    cd VVV
    nano Customfile
    and then add these two lines to the Customfile:
    config.vm.box = "trusty32"
    config.vm.box_url = "https://cloud-images.ubuntu.com/vagrant/trusty/current/trusty-server-cloudimg-i386-vagrant-disk1.box"

    and save with Ctrl+O, Ctrl+X.
  9. Install the hosts updater plugin: vagrant plugin install vagrant-hostsupdater.
  10. Install the triggers plugin: vagrant plugin install vagrant-triggers.
  11. Start the whole thing by vagrant up.
  12. Go grab a coffee or six, it will take a while even if your hardware is good.
  13. Let me know how it worked for you.

Disable captive portal detection on elementary OS Freya

Freya comes with a captive portal assistant that tries to help you to login (accept ToS) on public networks (like Wifi in a café, etc.). When you connect to such network, a new window opens with what Freaya thinks is the portal website. Actually, it opens https://elementary.io/ and expects it to be redirected to the portal.

However useful it can be for most people, in some situations you may wish to disable this feature. It is very simple, but difficult to find out. Just run this command:

sudo chmod -x /etc/NetworkManager/dispatcher.d/90captive_portal_test

And that’s it!

Reference: https://bugs.dogfood.paddev.net/elementaryos/+bug/1039042

Guide to dark GUI in elementaryOS and Lubuntu

Some time ago I decided I want to use dark GUI wherever possible, main reason being the fact that “white on black” causes much less strain of the eyes than the other way round. This post contains references to all the different guides, dark themes, software or other related tips I encountered and found useful in some way.

It may look like a lot of work, but if you spend a lot of time on the computer and care about your health, it is definitely worth it.

I provide guides for the two linux distributions I use, but they might be useful also for another Ubuntu-based distros. Continue reading Guide to dark GUI in elementaryOS and Lubuntu

Blogparser 2.0

Včera vyšla po velmi dlouhé době nová verze programu Blogparser. Program jsem kompletně přepsal do jazyka Groovy kvůli úspoře času při budoucím vývoji. Nová verze reaguje na změněnou strukturu blogů na blog.cz, ale ještě si neporadí např. s obrázky ve článcích. Ve vývoji budu nicméně pokračovat, takže se i toho ve vzdálenější budoucnosti snad dočkáte.

Stránka programu

Nastavení proměnné JAVA_HOME ve Windows 7

  1. Zjistěte si cestu, kde je nainstalován Java Development Kit (JDK). Obvykle to bývá něco jako C:\Program Files (x86)\Java\jre7.
  2. Klikněte pravým tlačítkem na Tento počítač, zvolte Vlastnosti.
  3. Klikněte na Upřesnit nastavení systému.
  4. Otevře se okno Vlastnosti systému s aktivní kartou Upřesnit. Klikněte na Proměnné prostředí.
  5. V sekci Systémové proměnné zvolte Nová.
  6. Jako název proměnné zadejte JAVA_HOME a jako hodnotu cestu k JDK. Potvrďte OK.
  7. V systémových proměnných dále najděte Path, vyberte, klikněte na Upravit.
  8. Na konec hodnoty napište přesně: %JAVA_HOME%/bin; (pozor i na mezery okolo)
  9. Vše potvrďte a restartujte počítač.