Advertisement
Guest User

Untitled

a guest
Dec 16th, 2011
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.81 KB | None | 0 0
  1. #
  2. # This is an example for a configuration file that can
  3. # be passed to colinux-daemon in this manner:
  4. #
  5. # colinux-daemon @example.conf
  6. #
  7. # Note that you can still prepend or append configuration and
  8. # boot parameters before and after '@', or you can use more
  9. # that one '@ to load several settings one after another.
  10. #
  11. # colinux-daemon @example.conf @overrider.conf mem=32
  12. #
  13. # Full list of config params is listed in colinux-daemon.txt.
  14.  
  15. # The default kernel
  16. kernel=vmlinux
  17.  
  18. # File contains the root file system.
  19. # Download and extract preconfigured file from SF "Images for 2.6".
  20. sda7="\Device\HarddiskVolume5"
  21.  
  22. # Boot
  23. sda5="\Device\HarddiskVolume3"
  24.  
  25. # Swap device, should be an empty file with 128..512MB.
  26. sda6="\Device\HarddiskVolume4"
  27.  
  28. # Windows
  29. #sda2="\Device\HarddiskVolume6"
  30.  
  31. # Tell kernel the name of root device (mostly /dev/cobd0,
  32. # /dev/cobd/0 on Gentoo)
  33. # This parameter will be forward to Linux kernel.
  34. root=/dev/sda7
  35.  
  36. # Additional kernel parameters (ro = rootfs mount read only)
  37. #ro
  38.  
  39. # Initrd installs modules into the root file system.
  40. # Need only on first boot.
  41. initrd=initrd.gz
  42.  
  43. # Maximal memory for linux guest
  44. #mem=64
  45.  
  46. # Select console size, default is 80x25
  47. #cocon=120x40
  48.  
  49. # Slirp for internet connection (outgoing)
  50. # Inside running coLinux configure eth0 with this static settings:
  51. # ipaddress 10.0.2.15 broadcast 10.0.2.255 netmask 255.255.255.0
  52. # gateway 10.0.2.2 nameserver 10.0.2.3
  53. eth0=ndis-bridge,"Ethernet",50:e5:49:36:ac:d7
  54.  
  55. # Tuntap as private network between guest and host on second linux device
  56. #eth1=tuntap
  57.  
  58. # Setup for serial device
  59. #ttys0=COM1,"BAUD=115200 PARITY=n DATA=8 STOP=1 dtr=on rts=on"
  60.  
  61. # Run an application on colinux start (Sample Xming, a Xserver)
  62. exec0="C:\Program Files\Xming\Xming.exe",":0 -clipboard -multiwindow -ac"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement