View Poll Results: I use Virtual Machines to run Linux because:

Voters
9. You may not vote on this poll
  • I haven't got any spare computers / partitions to run Linux on.

    5 55.56%
  • I have too much of an investment to Windows/Mac to be able to run Linux full-time.

    4 44.44%
  • I like the safety-net of being able to fall back on windows if I get stuck.

    3 33.33%
  • I don't use Linux frequently enough to warrant a native-installation.

    4 44.44%
  • I don't know how to install Linux natively or I've had bad experiences of native installs.

    1 11.11%
  • Other reason (please specify in your reply)

    8 88.89%
Multiple Choice Poll.
Results 1 to 14 of 14

Thread: Why do YOU use Virtual Machines to run Linux?

  1. #1

    Thread Starter
    type Woss is new Grumpy; wossname's Avatar
    Join Date
    Aug 2002
    Location
    #!/bin/bash
    Posts
    5,682

    Why do YOU use Virtual Machines to run Linux?

    Everyone seems to have an obsession with Virtual Machines for running / trying out Linux. If this is you, whats you're reason?
    I don't live here any more.

  2. #2
    Frenzied Member litlewiki's Avatar
    Join Date
    Dec 2005
    Location
    Zeta Reticuli Distro:Ubuntu Fiesty
    Posts
    1,162

    Re: Why do YOU use Virtual Machines to run Linux?

    I got Ubuntu 6 installed on HD and Ubuntu 7 beta,server,FC 6,open suse on virtual machines.
    __________________
    ________________0îîî___
    ___îîî0________(___)____
    __(___)_________) _/_____
    ___\_ (_________(_/______
    ____\_)_________________

  3. #3
    Hyperactive Member ProphetBeal's Avatar
    Join Date
    Aug 2006
    Location
    New York
    Posts
    424

    Re: Why do YOU use Virtual Machines to run Linux?

    I really haven't used Linux enough ( or know enough about it) to worrant me giving it its own partition or full pc. That's what a vm is for, if after tring it out i decide i want to use it more then i'll move it to another area (partition or pc)

    Helpful Links:
    VB 6 - How to get the "Key" Value in a collection
    VB.NET - File Search Utility || VB.NET - How to compare 2 directories || VB.NET - How to trust a network share
    VB.NET - Create Excel Spreadsheet From Array || VB.NET - Example Code & Hints you may not know
    VB.NET - Save JPEG with a certain quality (image compression) || VB.NET - DragDrop Files, Emails, and Email Attachments

    Please post some of the code you need help with (it makes it easier to help you)
    If your problem has been solved then please mark the thread [RESOLVED].
    Don't forget to Rate this post

    "Pinky, you give a whole new meaning to the phrase, 'counter-intelligence'."-The Brain-

  4. #4
    Hyperactive Member CyberSurfer's Avatar
    Join Date
    Aug 2000
    Location
    Old London Town
    Posts
    425

    Re: Why do YOU use Virtual Machines to run Linux?

    I use VM installs of Linux for testing purposes...if something screws up it's easy to revert without affecting a live system.

  5. #5
    Hyperactive Member Arrow_Raider's Avatar
    Join Date
    Dec 2001
    Location
    AVR Lovers Club
    Posts
    423

    Re: Why do YOU use Virtual Machines to run Linux?

    Virtual Machines are very good for testing stuff and running linux on a virtual machine is a hassle free way of learning linux
    My monkey wearing the fedora points and laughs at you.

  6. #6
    Frenzied Member TomGibbons's Avatar
    Join Date
    Feb 2002
    Location
    San Diego, CA Previous Location: UK
    Posts
    1,345

    Re: Why do YOU use Virtual Machines to run Linux?

    Whenever I want to try a different distro out to see what all the fuss is about, I'll generally run it in a VM. It's just quicker and it's always temporary.

  7. #7
    Fanatic Member eSPiYa's Avatar
    Join Date
    Jun 2006
    Location
    in our house
    Posts
    751

    Re: Why do YOU use Virtual Machines to run Linux?

    For 14 years I'm using computers, I'm not aware that MS Windows/DOS is not the only OS that exist.

    I'm using Virtual Machine to test Cross-Platform Development/Deployment.

  8. #8
    Lively Member mightor's Avatar
    Join Date
    Apr 2007
    Location
    Turn around, I'm right behind you...
    Posts
    99

    Re: Why do YOU use Virtual Machines to run Linux?

    I love the snapshot ability. If I mess things up, I can just revert the machine.

    Gr,
    Mightor
    What the world needs is more geniuses with humility, there are so few of us left.
    If my post was accidentally useful, please rate it as such, thanks!
    Mon aéroglisseur est plein des anguilles.

  9. #9

    Thread Starter
    type Woss is new Grumpy; wossname's Avatar
    Join Date
    Aug 2002
    Location
    #!/bin/bash
    Posts
    5,682

    Re: Why do YOU use Virtual Machines to run Linux?

    You can do that with normal installs anyway. Just dump the entire partition to a file. Easy peasy. You don't even have to mount the drive to do it.

    cat </dev/hda2 >mywholedisc_backupfile
    Last edited by wossname; May 10th, 2007 at 06:44 AM.
    I don't live here any more.

  10. #10
    Lively Member mightor's Avatar
    Join Date
    Apr 2007
    Location
    Turn around, I'm right behind you...
    Posts
    99

    Re: Why do YOU use Virtual Machines to run Linux?

    Quote Originally Posted by wossname
    You can do that with normal installs anyway. Just dump the entire partition to a file. Easy peasy. You don't even have to mount the drive to do it.

    cat </dev/hda2 >mywholedisc_backupfile
    But a vmware snapshot isn't as big as your partition
    What the world needs is more geniuses with humility, there are so few of us left.
    If my post was accidentally useful, please rate it as such, thanks!
    Mon aéroglisseur est plein des anguilles.

  11. #11
    Hyperactive Member CyberSurfer's Avatar
    Join Date
    Aug 2000
    Location
    Old London Town
    Posts
    425

    Re: Why do YOU use Virtual Machines to run Linux?

    Well fine then, tar and gzip the file afterwards!!

  12. #12
    Hyperactive Member Arrow_Raider's Avatar
    Join Date
    Dec 2001
    Location
    AVR Lovers Club
    Posts
    423

    Re: Why do YOU use Virtual Machines to run Linux?

    not until dd can read and write gzip compressed files.
    My monkey wearing the fedora points and laughs at you.

  13. #13
    Lively Member mightor's Avatar
    Join Date
    Apr 2007
    Location
    Turn around, I'm right behind you...
    Posts
    99

    Re: Why do YOU use Virtual Machines to run Linux?

    Quote Originally Posted by Arrow_Raider
    not until dd can read and write gzip compressed files.
    Code:
    dd if=<disk> | gzip -c > <file>   # make dd write a gziped file
    gunzip -c <file> | dd of=<disk>   # make dd read a gzipped file :)
    My point was that vmware snapshots take about 30s to revert to, this would take a LOT longer

    Gr,
    Mightor
    What the world needs is more geniuses with humility, there are so few of us left.
    If my post was accidentally useful, please rate it as such, thanks!
    Mon aéroglisseur est plein des anguilles.

  14. #14

    Thread Starter
    type Woss is new Grumpy; wossname's Avatar
    Join Date
    Aug 2002
    Location
    #!/bin/bash
    Posts
    5,682

    Re: Why do YOU use Virtual Machines to run Linux?

    Picky picky picky.
    I don't live here any more.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width