Node.js and npm packages are available in the Community Repository.
pacman -S nodejs npm
curl -sL https://deb.nodesource.com/setup_5.x | sudo -E bash -
sudo apt-get install -y nodejs
<html> | |
<body> | |
<div class="post_body"> | |
<div itemprop="commentText" class="post entry-content "> | |
<!--cached-Fri, 12 Feb 2016 11:58:52 +0000--><p><u><span style="font-family:arial, helvetica, sans-serif"><strong><span style="font-size:18px">Run Vanilla OS X El Capitan, Yosemite or Mavericks in VirtualBox 5.0.10 on a Windows Host</span></strong></span></u></p> | |
<p><span style="font-family:arial, helvetica, sans-serif"><span style="font-size:11pt">Following on from my <a href="http://www.insanelymac.com/forum/topic/309556-run-vanilla-os-x-el-capitan-in-vmware-workstation-12-on-a-windows-host/" class="bbc_url" title="">previous guide</a> on how to create a VMware virtual machine running Vanilla OS X El Capitan in Windows, I’ve decided to write a similar guide for creating a VirtualBox El Capitan VM. </span></span></p> | |
<p> </p> |
#!/bin/bash | |
# Mount the installer image to some directory by using the hdiutil tool | |
hdiutil attach "/Applications/Install OS X El Capitan.app/Contents/SharedSupport/InstallESD.dmg" -noverify -nobrowse -mountpoint /Volumes/esd | |
# Now let's create a placeholder image of our ISO file | |
hdiutil create -o ElCapitan3.cdr -size 7316m -layout SPUD -fs HFS+J | |
# After an empty ISO file will be created, we need to mount it | |
hdiutil attach ElCapitan3.cdr.dmg -noverify -nobrowse -mountpoint /Volumes/iso |
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
# All Vagrant configuration is done below. The "2" in Vagrant.configure | |
# configures the configuration version (we support older styles for | |
# backwards compatibility). Please don't change it unless you know what | |
# you're doing. | |
Vagrant.configure(2) do |config| | |
# The most common configuration options are documented and commented below. | |
# For a complete reference, please see the online documentation at |
#-*- coding: utf-8 -*- | |
def application(environ, start_response): | |
import sys | |
pvar = 'Hello world !!' | |
output = pvar.encode('utf8') | |
# output = sys.version.encode('utf8') | |
status = '200 OK' | |
headers = [('Content-type', 'text/plain'), | |
('Content-Length', str(len(output)))] | |
start_response(status, headers) |
#!/bin/bash | |
iptables -P INPUT ACCEPT | |
iptables -P FORWARD ACCEPT | |
iptables -P OUTPUT ACCEPT | |
echo "Flush All Rules, Delete All Chains, and Accept All [OK]" |
Node.js and npm packages are available in the Community Repository.
pacman -S nodejs npm
curl -sL https://deb.nodesource.com/setup_5.x | sudo -E bash -
sudo apt-get install -y nodejs
pacman -Syu
pacman -S virtualbox-guest-utils
Fichier: /etc/modules-load.d/virtualbox.conf
vboxguest
vboxsf
vboxvideo
(Based on Beginners' guide)
Host :
Guest :