-
Notifications
You must be signed in to change notification settings - Fork 50
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for Windows #11
Comments
Does #18 fix this issue? |
It fix it partially. we need to add documentation & also check if everything is running smoothly on Windows |
As I got from a previous conversation you have macOS & everything is okay with you. so why not to add documentation for macOS? As for Linux everything is okay & I have Linux machine to test changes. |
I suggest in README.md we
I'll take a look at OSX and make a proposal for README.md |
|
sample: RHEL/CentOS 64-bitsu -
wget http://download.virtualbox.org/virtualbox/rpm/el/virtualbox.repo -O /etc/yum.repos.d/virtualbox.repo
yum clean dbcache; yum -y repolist # Import the GPG keys
yum -y install epel-release # should be 7.8
export virtualbox_version=`yum search VirtualBox | grep "VirtualBox-" | sed 's/ : Oracle VM VirtualBox//' | sed 's/.x86_64//' | tail -1`
yum -y install git gcc make kernel-devel $virtualbox_version
/sbin/vboxconfig # load the vboxdrv kernel module
systemctl status vboxdrv # enabled?
VBoxManage --version # should return no errors
reboot su -
export vagrant_version=`wget --quiet -O - https://releases.hashicorp.com/vagrant/ | sed -n 's/.*href="\([^"]*\)".*/\1/p' | sort -r | head -1 | sed 's/[\/|vagrant]//g'`
yum -y install https://releases.hashicorp.com/vagrant/"$vagrant_version"/vagrant_"$vagrant_version"_x86_64.rpm |
i can help with adding support for windows |
@epicavic You are more than welcomed to do so |
@epicavic indeed welcome, please submit a PR. Some remarks and questions for giving you a good start.
Hopes this helps, if you have any questions, please don't hesitate to discuss or ask. |
- Installation is pretty straightforward. In fact it's a wrapper around
cygwin. Gives you all the advantages of bash shell and compiled packages
for cygwin project ... but it's not an alternative to WSL.
- not sure if it's required to add WSL or Babun. "vagrant up" should work
from cmd.exe without any issues.
- i will check if all exercises can be done with vagrant images...if not -
will compare to Sanders images.
…On 16 April 2017 at 16:34, smartbit ***@***.***> wrote:
@epicavic <https://github.com/epicavic> indeed welcome, please submit a
PR. Some remarks and questions for giving you a good start.
- Personally I never heard of Babun <https://github.com/babun/babun>
before. Given the current low penetration of Win10, on first sight, Babun
seems a viable alternative to Windows Subsystem for Linux
<https://msdn.microsoft.com/en-us/commandline/wsl/about>. Do you think
aspirant RHCSA/RHCE would install Babun?
- Would it be possible to add support for both *Babun* and *WSL* in a *combined
set* of instructions/batch/bash file(s)?
- The vagrant images lack certain features and not al exercises can be
done on them. All exercises can (probably) be done on the V3.0.3
images by Sander <https://www.rhatcert.com/downloads/>. @AnwarYagoub
<https://github.com/AnwarYagoub> created a sample Packer repository
<https://github.com/AnwarYagoub/Packer-Test> which could be a starting
point for overcoming the limitations of the vagrant images.
Hopes this helps, if you have any questions, please don't hesitate to
discuss or ask.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#11 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/ALTb-NhuAcB_Yd8TlqMuGfSIyHshqrbnks5rwhjKgaJpZM4KMhH5>
.
|
Add support to use Windows as host machine for this environment.
suggestions:
The text was updated successfully, but these errors were encountered: