https://github.com/adamouization/vm-configurations
:wrench: My dotfiles, IDE configurations, cheat sheets + install checklist for Linux VMs (Ubuntu & Fedora)
Science Score: 23.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
✓codemeta.json file
Found codemeta.json file -
○.zenodo.json file
-
○DOI references
-
○Academic publication links
-
✓Committers with academic emails
1 of 2 committers (50.0%) from academic institutions -
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (11.6%) to scientific vocabulary
Keywords
Repository
:wrench: My dotfiles, IDE configurations, cheat sheets + install checklist for Linux VMs (Ubuntu & Fedora)
Basic Info
Statistics
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
- Releases: 0
Topics
Metadata Files
README.md
New Linux VM in VirtualBox Checklist
1. Download VirtualBox:
2. Download your linux OS ISO:
3. Install VirtualBox and create your basic VM using this guide
4. Enable 3D acceleration and install Guest additions:
Open a new terminal window and type
/usr/lib/nux/unity_support_test -p. The last line should say that Unity 3D is not supported: "No". It should say yes to allow 3D acceleration, which will boost the VM's graphic abilities.Install tools for compiling kernel modules before installing the Guest Additions:
sudo apt update && sudo apt dist-upgradeReboot
Install required packages for building the kernel modules:
sudo apt install build-essential module-assistant dkmsPrepare the system to build kernel modules:
sudo m-a prepareThe Guess Additions can now be installed. In the VirtualBox menu, 'Select Devices' > 'Insert Guest Additions CD image'. Then click 'Run' when prompted.

Shut the VM off
In the VM display settings, allocate at least 3/4 of video memory, and enable 3D acceleration:

- Restart your VM. A massive graphic speed improvement should be noticed. Run
/usr/lib/nux/unity_support_test -pagain to see that Unity 3D is now supported: "Yes".
5. Enable bi-directional shared clipboard
Do this step after having installed the guest additions:
enable Devices > Shared Clipboard > Bidirectional
run this this command:
sudo apt-get install virtualbox-guest-dkmsreboot the vm
6. Install and Setup GIT
Install git:
sudo apt-get install git
$ git config --global user.name "Adamouization"
$ git config --global user.email xxx@xxx.com
git config --list
Install tig, a text-mode interface for git:
sudo apt-get tig
or
sudo dnf install tig
7. Install VIM and set as default git commit editor:
sudo apt-get install vim
git config --global core.editor "vim"
export GIT_EDITOR=vim
Add the VIM configuration file to the home directory: cp /home/ajaamour/Projects/VmConfigurations/vim_configuration/.vimrc ~
8. Install Python
sudo apt-get install python
You can also install a better version of the REPL:
sudo apt-get install ipython
To run it, type ipython instead of using python
9. Install Java
sudo apt-get install default-jre
sudo apt-get install default-jdk
10. Install JetBrains IDEs
Download the IDEs from here:
Untar the .tar.gz file directly from the ~/Download directory to the directory where you wish to install e.g. in your ~/Applications directory (must support executables), otherwise the recommended installation location according to the filesystem hierarchy standard (FHS) is /opt:
sudo tar -xvfz pycharm-*.tar.gz -C /opt/
Start running the application by going to the bin directory and running pycharm.sh:
cd /opt/pycharm-*/bin
sh pycharm.sh &
Repeat this process for each .tar.gz file you downloaded.
More info here
Once the installation is finished, you can delete the .tar.gz file: rm -rf pycharm-*.tar.gz
11. Install TMUX
sudo apt-get install tmux
Move the .tmux.conf file to the home directory for custom settings: cp /home/ajaamour/Projects/VmConfigurations/tmux_configuration/.tmux.conf ~
Use this script to automatically launch tmux with vertically split windows. You'll first need to copy the bash script to your desired location, then give the appropriate permissions. Then you can run it any time:
cp /home/ajaamour/Projects/VmConfigurations/bash_scripts/tmux_setup ~
chmod +x tmux_setup.sh
./tmux_setup.sh
The script opens a pane with htop instead of top, so be sure to have it installed first (otherwise change the command in the script from top to htop):
sudo apt-get install htop
Owner
- Name: Adam Jaamour
- Login: Adamouization
- Kind: user
- Location: United Kingdom
- Company: @NewDayTechnology
- Website: www.adam.jaamour.com
- Twitter: Adamouization
- Repositories: 43
- Profile: https://github.com/Adamouization
💻 Data Scientist @NewDayTechnology 🧠 MSc AI @ Uni of St Andrews 📓 BSc Computer Science @ Uni of Bath 💼 Former SWE @ Scuderia Alpha Tauri F1 Team
GitHub Events
Total
Last Year
Committers
Last synced: 7 months ago
Top Committers
| Name | Commits | |
|---|---|---|
| Adam Jaamour | a****5@b****k | 89 |
| Adam Jaamour | a****r@t****m | 1 |
Committer Domains (Top 20 + Academic)
Issues and Pull Requests
Last synced: 7 months ago
All Time
- Total issues: 0
- Total pull requests: 0
- Average time to close issues: N/A
- Average time to close pull requests: N/A
- Total issue authors: 0
- Total pull request authors: 0
- Average comments per issue: 0
- Average comments per pull request: 0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0
Past Year
- Issues: 0
- Pull requests: 0
- Average time to close issues: N/A
- Average time to close pull requests: N/A
- Issue authors: 0
- Pull request authors: 0
- Average comments per issue: 0
- Average comments per pull request: 0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0