Ubuntu + Windows + .dotfiles
Lars Moelleken

Lars Moelleken @suckup_de

About: "There is nothing good unless you do it." - Erich Kästner

Location:
Voerde - Germany
Joined:
Aug 17, 2017

Ubuntu + Windows + .dotfiles

Publish Date: Oct 17 '21
1 0

Ubuntu + Windows + .dotfiles

1. Open “Update & Security” > “For Developers” > activate the “Developer Mode”.

2. Under “Programs” > “Programs and Features”, click “Turn Windows Features On or Off”.

3. Enable the “Windows Subsystem for Linux (Beta)” option in the list and click “OK”.

4. After an “reboot”, you open the command line (cmd) and type “bash” and press [Enter].

5. Enter a “Username” and a “Password. (you need the password for “sudo”-commands)

6. Now you can open “Bash on Ubuntu on Windows”.

7. Install “git” via:

sudo apt-get install git
Enter fullscreen mode Exit fullscreen mode

8. Get the “.dotfiles” via:

cd ~ ; git clone https://github.com/voku/dotfiles.git; cd dotfiles
Enter fullscreen mode Exit fullscreen mode

9. Install dependencies via:

./firstInstallDebianBased.sh
Enter fullscreen mode Exit fullscreen mode

10. Install zsh (optional, but recommended).

11. Use the “.dotfiles” via:

./bootstrap.sh
Enter fullscreen mode Exit fullscreen mode

12. Download, install and configure “ConEmu” …

… a alternative “Command Line GUI” for Windows. Instead of the default GUI we have UTF-8 support with “ConEmu”, so we can use chars like “✓”.

-> http://conemu.github.io

After you have installed it, we can force “bash” to “zsh” in the configuration.

13. Add some “symlinks” for easier navigation via: e.g.

sudo ln -s /mnt/c /c

sudo ln -s /mnt/d /d
Enter fullscreen mode Exit fullscreen mode

14. Add the current “hostname” into the “/etc/hosts”-file.

sudo su

echo "127.0.0.1 $(hostname)" >> /etc/hosts

exit
Enter fullscreen mode Exit fullscreen mode

Now you can edit your “.dotfiles”-settings and tweak your configuration.

Here is my example-config: https://github.com/voku/dotfiles#add-custom-commands-without-creating-a-new-fork


Comments 0 total

    Add comment