|
http://karenchandlercancertrust.com/aspnet_client/system_web/161/divine-intervention43.html Divine Intervention , jdgp , http://esmarttools.com/goodage/guestbook/18/coffee-facts43.html Coffee Facts , cflkrj , http://carexperts4u.info/wp-includes/Text/39/ubuntu-linux90.html Ubuntu Linux , =-OOO , http://nassel.com/wp-content/themes/22/sad-songs69.html Sad Songs , 24787 , http://iambtsa.com/cp/scripts/49/city-of-ormond-beach207.html City Of Ormond Beach , 302 , http://wisdeal.com/course/pinyin/418/calendar-on-line117.html Calendar On Line , 2447 , http://cocineira.com/images/icons/380/ky-state-police99.html Ky State Police , 170 ,
|
All of this is directly taken from my Fedora 9 attempts.
This needs to be altered and updated.
K
This is a guide to get Windows running in a sandbox. What this means is that windows runs on an artificial system within Linux, so those windows-only apps that you still want hanging around (like Quicken or TurboTax, perhaps) will work, or if someone tells you about something that you "gotta try" you can.
Overview
- Download the most recent VirtualBox RPM for your system from http://www.virtualbox.org/wiki/Downloads
- Install the rpm
sudo yum localinstall --nogpgcheck VirtualBox-1.6.2_31466_fedora9-1.x86_64.rpm
- Make sure you have kernel development packages installed, because we will be doing exactly that
sudo yum install make automake autoconf gcc kernel-devel
- Build the VB kernel
sudo /etc/init.d/vboxdrv setup
- Add yourself to the vbox users group. I tried using sudo for the following, but it didn't work and I had to log in as root with su. That didn't work immediately, but at some point it did work. I'm leaving it as sudo for the time.
sudo /usr/sbin/usermod -G vboxusers -a kevin
- You will need to logout for the change in group membership to take effect. So, log out and log back in
- Check that your username has vboxusers as a group using
groups kevin
- At this point you can start VirtualBox by typing
VirtualBox
Pre-Startup Settings and Support
- You sould be able to figure out how to create a new VirtualBox sandbox easily. Make sure to give up enough Ram and Hard Disk space. I created a separate partition for my virtualbox installations.
- Customize your settings by hitting settings:
- Despite an educated guest, the VB User Guide recommends not turning on CPU Virtualization Hardware Acceleration because it claims it's software acceleration, which conflicts, does a better job than the CPU.
- Sound
- Make sure to turn sound on. If you have disabled PulseAudio (as recommended in Hardware? to get the microphone to work), use the ALSA option. With this, I have had no problems. It actually integrates better than many other linux sound systems (there were no errors using linux programs and VB-XP at the same time)
- USB Support. I haven't tested full USB support but it seems like evertyhing works. The following is taken from FedoraForum Post in case you have problems
- create a new group called "usb";
- locate file usbfs: in my case is /sys/bus/usb/drivers (I suggest to find the file with a usb device inserted;
- modify file /etc/fstab inserting a line containing the right path and the number corresponding the "usb" group :
none /sys/bus/usb/drivers usbfs devgid=503,devmode=664 0 0
- command
mount -a;
- start VB and try...;
Post-Install Settings
- After you install a Windows (or Linux) Sandbox, there is still more work to make the sandbox best:
- Additions are things that you need to make your experience better, but they can only be installed after your OS is set up.
- When you are running the Windows Sandbox, pull down Devices >> Install VirtualBox Guest Additions.
- This will "insert a CD" with the software to install into the operating system. Among other things, this allows you to have automatically re-sizing screen resolution, and "transparent mousing" (your mouse can move between Linux and the Sandbox seamlessly, without an exclusive capture).
- Network Shares : It was hard to get this set up for me, because my Windows didn't have "View Entire Network" in Network Places.
- First, use VirtualBox to specify the physical locations that you want available to Windows under Shared Folders. This should be straightforward.
- Then, in the Windows Sandbox, go to My Network Places
- Choose Add a network place
- Choose Choose another network location
- Browse
- Entire Network
- Under VirtualBox Shared Folders, all of your specified shares should be located. Choose one and press next.
- Now it should show up under My Network Places whenever you click on it.
- To make it accessible as a Hard Drive (recommended)
- Choose Map Network Drive from the Tools menu in any MyComputer type Explorer Window.
- Browse for the network share folder as you did above.
- Select an unused Hard Drive.
- Make sure Reconnect at Login is selected if you want this to be permanent.
|