mkdir folder_of_awesomeness
cd folder_of_awesomeness/
vagrant init bento/ubuntu-16.04
vagrant up --provider=virtualbox # because they don't have a libvert provider
vagrant ssh
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
# concatenate_test.py | |
# based on https://stackoverflow.com/a/24718551/7407726 | |
# modified to include f string benchmarking for a task I'm working on now, might come in handy later | |
from __future__ import print_function | |
import timeit | |
domain = 'some_really_long_example.com' | |
lang = 'en' |
Note: I need to do this on multiple machines, and it took a while to figure out the easiest way to do this on Fedora, so I'm documenting the process.
- Get & Configure the Kernel
git clone https://github.com/torvalds/linux.git
cd linux
make allnoconfig
make x86_64_defconfig
NewerOlder