Task bar missed when creating PC-BSD release 9.1 64 bit VM in VMware Workstation Version 98.02 build-1031769

2013-05-20 Thread Chou, David J
Hi,

I  am trying to create a virtual machine of PC-BSD release 9.1 64 bit in VMware 
Workstation Version 98.02 build-1031769 based on PCBSD9.1-x64-DVD.iso 
downloaded from ftp://mirrors.isc.org/pub/pcbsd/9.1/amd64/PCBSD9.1-x64-DVD.iso 
in Windows 7 64 bits system. The screen resolution is 1280x1024,  if I chose 
Yes  in Confirm Resolution window to keep the autodetec, then after the 
whole creation process finished, and login in as a created user, the task 
doesn't appear in the bottom below the desktop.  If I powered off the VM, and 
changed the Display setting to Specificy monitor settings with Maximum 
resolution set to 1024 x 768 by Virtual Machine Settings in Workstation, 
and repower on the VM, then the task bar appears on the bottom below desktop.

What is the issue?  Did I miss anything during the VM creation?

Thanks.

David






, and setup network configuration and installed Firefox 20.0 by AppCafe, and 
configured the network setting in Preference-Advanced of Firefox, and I could  
access Internet.

Now I need to build my own customized kernel, but there is no src subdirectory 
in /usr, so here is my question:
1.Is there any way to install kernel source when I create the  
virtual machine from PCBSD9.1-x64-DVD.iso ?
2.Any BKM to get the kernel source after the Virtual Machine 
already created as my case now?

Thanks!

Regards,
David

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Floppies on VMware workstation FreeBSD guest

2010-06-21 Thread Francisco Reyes

Adam Vande More writes:


I'm not sure that floppies are still working in this fashion, but even if
they are it may be easier for you to do this via pxe or optical media.


You mean to create a CD image and put the install.cfg instead of using a 
floppy image?


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Floppies on VMware workstation FreeBSD guest

2010-06-21 Thread Adam Vande More
On Mon, Jun 21, 2010 at 1:11 PM, Francisco Reyes li...@stringsutils.comwrote:

 Adam Vande More writes:

  I'm not sure that floppies are still working in this fashion, but even if
 they are it may be easier for you to do this via pxe or optical media.


 You mean to create a CD image and put the install.cfg instead of using a
 floppy image?


Yes,  you might be able to edit an existing image or use 'make release' to
build your own.  Or with pxe you can just put it on NFS.


-- 
Adam Vande More
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Floppies on VMware workstation FreeBSD guest

2010-06-21 Thread Francisco Reyes

Adam Vande More writes:


Yes,  you might be able to edit an existing image or use 'make release' to
build your own.  Or with pxe you can just put it on NFS.


I was thinking of something perhaps even simpler. Mount a second CD image 
with just install.cfg. Will try that and see how it works.


If I was going to do lots of install PXE may be the way to go, but wondering 
if it is worth the effort for the handfull of times I would use it.


For physicall install I will try USB. Right now jus trying to solve the 
issue with VMware just to get familiar with the install.cfg syntax.

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Floppies on VMware workstation FreeBSD guest

2010-06-20 Thread Bruce Cran
On Sunday 20 June 2010 05:19:30 Francisco Reyes wrote:
 Any has had any success with getting floppies to work on VMware desktop 7
 on a FreeBSD guest?
 
 Did the following to prepare the floppy
 
 #Create empty floppy image
 dd if=/dev/zero bs=1k count=1440 of=/data/tmp/boot.flp
 
 #create md0 and point it to floppy
 mdconfig -a -t vnode -f /data/tmp/boot.flp -u 0

In case you don't know, you can achieve the same thing using some simpler 
commands:

truncate -s 1440k /data/tmp/boot.flp
mdconfig -a -f /data/tmp/boot.flp

-- 
Bruce Cran
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Floppies on VMware workstation FreeBSD guest

2010-06-19 Thread Francisco Reyes
Any has had any success with getting floppies to work on VMware desktop 7 on 
a FreeBSD guest?


Did the following to prepare the floppy

#Create empty floppy image
dd if=/dev/zero bs=1k count=1440 of=/data/tmp/boot.flp

#create md0 and point it to floppy
mdconfig -a -t vnode -f /data/tmp/boot.flp -u 0

#newfs
newfs /dev/md0

#mount
mount /dev/md0 /mnt

#copy data here

#unmount
umount /mnt

#delete md0
mdconfig -d -u 0


I am trying to create a floppy image with an install.cfg to learn how 
sysinstall automation works. The floppy gives the following error:

Error mounting floppy fd0  (/dev/fd0) on /dist : device not configured.

Just as a test I found a floopy for an old PicoBSD floppy to see if it could 
be read. It failed too. However, if the PicoBSD floppy image is first in the 
boot order it actually boots of the floppy image. Search for this issue show 
some old messages of people having simmilar problems, but given that they 
were old I wondered if the issue had been resolved.


I am aware that in VMware one can create one VM and make a template. I am 
trying to learn sysinstall automation for the times when I will need to 
install FreeBSD on a physical machine instead of a VM.


Any pointers will be greately appreciated.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Floppies on VMware workstation FreeBSD guest

2010-06-19 Thread Adam Vande More
On Sat, Jun 19, 2010 at 11:19 PM, Francisco Reyes li...@stringsutils.comwrote:

 Any has had any success with getting floppies to work on VMware desktop 7
 on a FreeBSD guest?


 Any pointers will be greately appreciated.


I'm not sure that floppies are still working in this fashion, but even if
they are it may be easier for you to do this via pxe or optical media.


-- 
Adam Vande More
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: which IP+gateway for Freebsd guest VM in VMware workstation

2009-12-28 Thread Nikos Vassiliadis

On 12/27/2009 2:36 PM, Len Conrad wrote:

Take a look here:
http://www.freebsd.org/doc/en/books/handbook/config-network-setup.html


thanks, I've been setting up FreeBSD for 10 years, and have multimple FreeBSD 
VMs running in several ESXi hosts.


Sorry, I didn't mean to offend you. I just didn't know your experience
with FreeBSD.

[snip]

The physical Ethernet adapter has a fixed public IP.  I have only one public IP from the ISP.  In 
the VMWare Virtual Network Editor, this i/f is listed as VNnet0, Type Bridged, Connected column is 
-, and Subnet Address is -

[snip]

I'd like to stay with bridged.


You have only one IP address from your ISP, you can't use bridged, since
bridged configuration will connect the guest's ethernet to another
physical ethernet and that's all. You'll have to have another IP address
to assign to the guest. Since you don't, you have to use some form of
NAT to share the host's IP with the guest(s).




[snip]

ifconfig shows em0 with .98 and correct broadcast IP, but status: no carrier


This is interesting, why a virtual ethernet would report no carrier?
It probably indicates a hardware problem. Or at least a wrong
combination of FreeBSD driver + VMware virtual hardware version.

Could you boot another version of FreeBSD just to check if the em 
interface finds the ethernet's carrier? Assuming that you are trying

to install 8.0 release, try the latest from the 7 branch...

I recall that there were some problems with FreeBSD-8.0-CURRENT 
regarding em network interfaces a few months ago, but I never saw them

myself and I was a heavy user of VMware workstation the months before
8.0 release.

[snip]

I'd like to be able to ssh/ftp into the FreeBSD VM from Internet, so I'd prefer 
to stay away from DHCP for the FreeBSD VM networking.


I am not really sure if you can achieve this, without a second IP
address from your ISP. Can VMware workstation do any other form
of NAT besides translating the host's IP to the guest's IP???

Anyway, investigate a bit more on the no carrier problem and
post back to the list. Perhaps, another list that's a good candidate
for such questions is:
http://lists.freebsd.org/mailman/listinfo/freebsd-emulation
Though it mainly is for solutions running *on* FreeBSD, guys and girls
there, tend to be knowledgeable about solutions running on *something*
and having FreeBSD as a guest OS.

HTH, Nikos
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: which IP+gateway for Freebsd guest VM in VMware workstation

2009-12-27 Thread Nikos Vassiliadis

On 12/27/2009 12:10 AM, Len Conrad wrote:


VMWare has lots of info how to set up the (Windows XP) VMWare Workstation 
networking side, but not much on setting up networking in the guest OS.

I've tried NAT and bridging, no DHCP, and can't ping anything except the 
localhost IPs.

XP ipconfig shows the fixed IP, plus 2 192.168.c.d IPs from VMnet1 and VMnet8.

I'm sure this is really simple, but my experimentation has come up with zilch.


Take a look here:
http://www.freebsd.org/doc/en/books/handbook/config-network-setup.html

The guest OS will have an em0 interface which is connected to
a host interface VMnet1, VMnet8 or similar. Actually the guest's
networking configuration is simpler than the host's one. You should
configure the em interface with an appropriate IP address:
1) Bridging: WinXP fixed IP and FreeBSD fixed IP
for example, WinXP 192.168.10.100 and FreeBSD 192.168.10.101

2) host to host: WinXP 192.168.c.d and FreeBSD 192.168.c.x
for example, WinXP 192.168.20.100 and FreeBSD 192.168.20.101

3) NAT: WinXP 192.168.e.d and FreeBSD 192.168.e.x
for example, WinXP 192.168.30.100 and FreeBSD 192.168.30.101

Keep in mind that using DHCP is much more easy as you don't have to
search for the appropriate address yourself, the VMware's DHCP server
will offer it. Using DHCP from the FreeBSD side is as easy as typing
dhclient em0.

HTH, Nikos
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: which IP+gateway for Freebsd guest VM in VMware workstation

2009-12-27 Thread Len Conrad

VMWare has lots of info how to set up the (Windows XP) VMWare Workstation 
networking side, but not much on setting up networking in the guest OS.

I've tried NAT and bridging, no DHCP, and can't ping anything except the 
localhost IPs.

XP ipconfig shows the fixed IP, plus 2 192.168.c.d IPs from VMnet1 and VMnet8.

I'm sure this is really simple, but my experimentation has come up with zilch.

Take a look here:
http://www.freebsd.org/doc/en/books/handbook/config-network-setup.html

thanks, I've been setting up FreeBSD for 10 years, and have multimple FreeBSD 
VMs running in several ESXi hosts.

The guest OS will have an em0 interface

it does.

 which is connected to
a host interface VMnet1, VMnet8 or similar.

XP ipconfig shows:

Ethernet adapter VMware Network Adapter VMnet8:

Connection-specific DNS Suffix  . :
Description . . . . . . . . . . . : VMware Virtual Ethernet Adapter for 
VMnet8
Physical Address. . . . . . . . . : 00-50-56-C0-00-08
Dhcp Enabled. . . . . . . . . . . : No
IP Address. . . . . . . . . . . . : 192.168.219.1
Subnet Mask . . . . . . . . . . . : 255.255.255.0
Default Gateway . . . . . . . . . :

Ethernet adapter VMware Network Adapter VMnet1:

Connection-specific DNS Suffix  . :
Description . . . . . . . . . . . : VMware Virtual Ethernet Adapter for 
VMnet1
Physical Address. . . . . . . . . : 00-50-56-C0-00-01
Dhcp Enabled. . . . . . . . . . . : No
IP Address. . . . . . . . . . . . : 192.168.198.1
Subnet Mask . . . . . . . . . . . : 255.255.255.0
Default Gateway . . . . . . . . . :

The physical Ethernet adapter has a fixed public IP.  I have only one public IP 
from the ISP.  In the VMWare Virtual Network Editor, this i/f is listed as 
VNnet0, Type Bridged, Connected column is -, and Subnet Address is -


 Actually the guest's
networking configuration is simpler than the host's one.

yeah, right! :)  It's too simple for me. 


 You should
configure the em interface with an appropriate IP address:
1) Bridging: WinXP fixed IP and FreeBSD fixed IP
for example, WinXP 192.168.10.100 and FreeBSD 192.168.10.101

I'd like to stay with bridged.

the XP fixed ip is a.b.c.99, and I set the em0 to a.b.c.98.
/etc/rc.d/netif restart
/etc/rc.d/routing restart

ifconfig shows em0 with .98 and correct broadcast IP, but status: no carrier


2) host to host: WinXP 192.168.c.d and FreeBSD 192.168.c.x
for example, WinXP 192.168.20.100 and FreeBSD 192.168.20.101

3) NAT: WinXP 192.168.e.d and FreeBSD 192.168.e.x
for example, WinXP 192.168.30.100 and FreeBSD 192.168.30.101

Just to get something going, I have tried NAT:

from xp ipfconfig above:

xp @ 192.168.219.1

the VMWare Virtual Network Editor shows the NAT network with gateway 
192.168.219.2, so I put that in /etc/rc.conf, and set the FreeBSD rc.conf IP to 
192.168.219.3.

/etc/rc.d/netif restart
/etc/rc.d/routing restart

and always get status: no carrier

xp can ping itself at  192.168.219.1, but can't ping .2 or .3

FreeBSD VM can't ping anything but itself.

Keep in mind that using DHCP is much more easy as you don't have to
search for the appropriate address yourself, the VMware's DHCP server
will offer it. Using DHCP from the FreeBSD side is as easy as typing
dhclient em0.

I'd like to be able to ssh/ftp into the FreeBSD VM from Internet, so I'd prefer 
to stay away from DHCP for the FreeBSD VM networking.

Len




___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


which IP+gateway for Freebsd guest VM in VMware workstation

2009-12-26 Thread Len Conrad

VMWare has lots of info how to set up the (Windows XP) VMWare Workstation 
networking side, but not much on setting up networking in the guest OS.

I've tried NAT and bridging, no DHCP, and can't ping anything except the 
localhost IPs.   

XP ipconfig shows the fixed IP, plus 2 192.168.c.d IPs from VMnet1 and VMnet8.  

I'm sure this is really simple, but my experimentation has come up with zilch.

Len



___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Importing into VMWare Workstation 6.5

2009-01-16 Thread Odhiambo Washington
Hi,

For those who are running FreeBSD inside VMWare, I have a FreeBSD-7.1 on a
hard disk. I also run VMware Wkstn 6.5 running on a Windows XP PC.
Is there an easy way to import from the hard disk to a guest OS? Suppose I
have the hard disk connected to the XP box?



-- 
Best regards,
Odhiambo WASHINGTON,
Nairobi,KE
+254733744121/+254722743223
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
The only time a woman really succeeds in changing a man is when he is a
baby.
 - Natalie Wood
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Importing into VMWare Workstation 6.5

2009-01-16 Thread Odhiambo Washington
On Fri, Jan 16, 2009 at 6:40 PM, James Seward james...@gmail.com wrote:

 On Fri, Jan 16, 2009 at 2:56 PM, Odhiambo Washington odhia...@gmail.com
 wrote:
  For those who are running FreeBSD inside VMWare, I have a FreeBSD-7.1 on
 a
  hard disk. I also run VMware Wkstn 6.5 running on a Windows XP PC.
  Is there an easy way to import from the hard disk to a guest OS? Suppose
 I
  have the hard disk connected to the XP box?

 If you're happy to leave FreeBSD on its own disk (rather than
 importing into a .vmdk), simply create a new VM and tell VMware to
 Use a physical disk in the Select a Disk part of the
 configuration. Point it at the required drive and away you go. I have
 used this before to allow me to both boot my PC to FreeBSD, and to
 Windows with FreeBSD still available.


The thing is, I want to give the whole setup from that disk to a friend to
run as a server, and he's bent on running it under virtualization. I offered
to clone this to a disk for him but he says he wants me to help him run it
under VMWare as a guest OS.

Is it possible to make a DVD out of an already running server, which can be
used to install it anywhere you feel like?

If I cannot do any of the two above, then I have to install everything
afresh for him as a guest on his virtualization platform and that is
time-consuming!



-- 
Best regards,
Odhiambo WASHINGTON,
Nairobi,KE
+254733744121/+254722743223
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
The only time a woman really succeeds in changing a man is when he is a
baby.
 - Natalie Wood
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Importing into VMWare Workstation 6.5

2009-01-16 Thread DAve

Odhiambo Washington wrote:

On Fri, Jan 16, 2009 at 6:40 PM, James Seward james...@gmail.com wrote:


On Fri, Jan 16, 2009 at 2:56 PM, Odhiambo Washington odhia...@gmail.com
wrote:

For those who are running FreeBSD inside VMWare, I have a FreeBSD-7.1 on

a

hard disk. I also run VMware Wkstn 6.5 running on a Windows XP PC.
Is there an easy way to import from the hard disk to a guest OS? Suppose

I

have the hard disk connected to the XP box?

If you're happy to leave FreeBSD on its own disk (rather than
importing into a .vmdk), simply create a new VM and tell VMware to
Use a physical disk in the Select a Disk part of the
configuration. Point it at the required drive and away you go. I have
used this before to allow me to both boot my PC to FreeBSD, and to
Windows with FreeBSD still available.



The thing is, I want to give the whole setup from that disk to a friend to
run as a server, and he's bent on running it under virtualization. I offered
to clone this to a disk for him but he says he wants me to help him run it
under VMWare as a guest OS.

Is it possible to make a DVD out of an already running server, which can be
used to install it anywhere you feel like?

If I cannot do any of the two above, then I have to install everything
afresh for him as a guest on his virtualization platform and that is
time-consuming!





While I have not tried it, it claims it can make a vmdk from a physical 
server. I have used it to move virtualized FreeBSD installs from one 
vmware server to another.


http://www.vmware.com/products/converter/overview.html

DAve

--
The whole internet thing is sucking the life out of me,
there ain't no pony in there.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Importing into VMWare Workstation 6.5

2009-01-16 Thread James Seward
On Fri, Jan 16, 2009 at 2:56 PM, Odhiambo Washington odhia...@gmail.com wrote:
 For those who are running FreeBSD inside VMWare, I have a FreeBSD-7.1 on a
 hard disk. I also run VMware Wkstn 6.5 running on a Windows XP PC.
 Is there an easy way to import from the hard disk to a guest OS? Suppose I
 have the hard disk connected to the XP box?

If you're happy to leave FreeBSD on its own disk (rather than
importing into a .vmdk), simply create a new VM and tell VMware to
Use a physical disk in the Select a Disk part of the
configuration. Point it at the required drive and away you go. I have
used this before to allow me to both boot my PC to FreeBSD, and to
Windows with FreeBSD still available.

/JMS
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Importing into VMWare Workstation 6.5

2009-01-16 Thread James Seward
On Fri, Jan 16, 2009 at 4:10 PM, DAve dave.l...@pixelhammer.com wrote:
 While I have not tried it, it claims it can make a vmdk from a physical
 server. I have used it to move virtualized FreeBSD installs from one vmware
 server to another.

 http://www.vmware.com/products/converter/overview.html

I can't remember why I didn't use this when I last did P2V on a
FreeBSD box, but I ended up just creating a VM with a new vmdk of the
correct size and then using dd over nc to copy the disk from the
physical machine, which worked fine too. An important gotcha is if the
host is IDE but you create your VM with SCSI disks (e.g. for ESX) and
the disk devices change name :)

/JMS
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Importing into VMWare Workstation 6.5

2009-01-16 Thread Odhiambo Washington
On Fri, Jan 16, 2009 at 7:28 PM, James Seward james...@gmail.com wrote:

 On Fri, Jan 16, 2009 at 4:10 PM, DAve dave.l...@pixelhammer.com wrote:
  While I have not tried it, it claims it can make a vmdk from a physical
  server. I have used it to move virtualized FreeBSD installs from one
 vmware
  server to another.
 
  http://www.vmware.com/products/converter/overview.html

 I can't remember why I didn't use this when I last did P2V on a
 FreeBSD box, but I ended up just creating a VM with a new vmdk of the
 correct size and then using dd over nc to copy the disk from the
 physical machine, which worked fine too. An important gotcha is if the
 host is IDE but you create your VM with SCSI disks (e.g. for ESX) and
 the disk devices change name :)


Hi JMS,

Could you kindly share the steps you followed? It looks like that's what I
have to do, as this app is commercial and I don't have that money now:-)


-- 
Best regards,
Odhiambo WASHINGTON,
Nairobi,KE
+254733744121/+254722743223
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
The only time a woman really succeeds in changing a man is when he is a
baby.
 - Natalie Wood
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Importing into VMWare Workstation 6.5

2009-01-16 Thread Steve Polyack

DAve wrote:
While I have not tried it, it claims it can make a vmdk from a 
physical server. I have used it to move virtualized FreeBSD installs 
from one vmware server to another.


http://www.vmware.com/products/converter/overview.html

DAve



VMware Converter on supports source physical machines running 64-bit 
Windows XP/2003, WinNT SP4+, Windows 2000, Windows XP, Windows 2003.  
If you want to convert a FreeBSD machine, it's going to take some 
additional work.


There is probably a simpler way, but one option is to:
* Put the disk in a machine running VMWare Server
* Create a VM with both access to the physical disk and an appropriately 
sized virtual disk

* Boot a hard drive cloning ISO such as G4U inside the virtual machine
* Clone the physical disk to the VM's virtual disk
* Reconfigure the VM to use only the virtual disk; it should boot just fine
* Ship off the contents of the VM folder to your friend.



-Steve Polyack
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Importing into VMWare Workstation 6.5

2009-01-16 Thread DAve

Odhiambo Washington wrote:



On Fri, Jan 16, 2009 at 7:28 PM, James Seward james...@gmail.com 
mailto:james...@gmail.com wrote:


On Fri, Jan 16, 2009 at 4:10 PM, DAve dave.l...@pixelhammer.com
mailto:dave.l...@pixelhammer.com wrote:
  While I have not tried it, it claims it can make a vmdk from a
physical
  server. I have used it to move virtualized FreeBSD installs from
one vmware
  server to another.
 
  http://www.vmware.com/products/converter/overview.html

I can't remember why I didn't use this when I last did P2V on a
FreeBSD box, but I ended up just creating a VM with a new vmdk of the
correct size and then using dd over nc to copy the disk from the
physical machine, which worked fine too. An important gotcha is if the
host is IDE but you create your VM with SCSI disks (e.g. for ESX) and
the disk devices change name :)


Hi JMS,

Could you kindly share the steps you followed? It looks like that's what 
I have to do, as this app is commercial and I don't have that money now:-)


Nope, the starter edition is free. Believe me, if we had to pay for it, 
my boss wouldn't let me use it 8^(


DAve

--
The whole internet thing is sucking the life out of me,
there ain't no pony in there.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Importing into VMWare Workstation 6.5

2009-01-16 Thread James Seward
On Fri, Jan 16, 2009 at 4:41 PM, DAve dave.l...@pixelhammer.com wrote:
 Nope, the starter edition is free. Believe me, if we had to pay for it, my
 boss wouldn't let me use it 8^(

What are the restrictions on the starter version? Maybe one of those
is why I ended up not using it.

If it will do it, it will definitely be the most efficient route.

/JMS
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Importing into VMWare Workstation 6.5

2009-01-16 Thread James Seward
On Fri, Jan 16, 2009 at 4:33 PM, Odhiambo Washington odhia...@gmail.com wrote:
 Could you kindly share the steps you followed? It looks like that's what I
 have to do, as this app is commercial and I don't have that money now:-)

Here's a page that describes the process:
http://digiassn.blogspot.com/2006/01/dd-over-netcat-for-cheap-ghost.html

The only change I'd suggest to that is adding something like bs=1M to
the dd command on the source to speed up reading a bit.

You can also achieve this with dump instead of dd if you want to
change the disk size, for example. When I did it I believe I booted
both sides off a FreeSBIE disc/ISO since it offers a nicer environment
than e.g. the recovery console. The LiveCD option in sysinstall may
also be a good way to go.

/JMS
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


{Could Be Spam?} FreeBSD 6.1 network configurarion on VMware workstation

2006-08-27 Thread Mohammad Al - Jamal
Hi all

I have just installed FreeBSD 6.1 on VMware workstation , and am facing a 
problem configuring the network connection , i havn't tryed many things  , when 
i ping any ip i get  no route to host  
could you PLZ advice !!
thanks in advance . 


Best Regards

Eng.Mohammad Al -Jamal 

Technical Support 

Hadara Technologies 

http://www.p-ol.com

http://www.palnet.com

Tel: +972-2-2403434  Fax: +972-2-2403430



___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Installation VMware Workstation 5

2006-03-31 Thread hackmiester (Hunter Fuller)

Thiago Esteves de Oliveira wrote:


   Hi, I am trying install VMwareWorkstation 5 in FreeBSD with ABI
Linux...Please see it.

=
*

horus/(root) ./vmware-install.pl

Setup is unable to find the lsmod program on your machine. Please make
sure it

is installed. Do you want to specify the location of this program by hand?

[yes]

What is the location of the lsmod program on your

machine? /bin/ls

No! That's not lsmod, that's ls! You need to find the Linux support
directory and look for lsmod there. I think it'd be /usr/linux/bin/lsmod.


Creating a new installer database using the tar3 format.

Installing the content of the package.

In which directory do you want to install the binary files?[/usr/bin]
/usr/vmware

Why? /usr/bin would be better and already in your path.


What is the directory that contains the init directories (rc0.d/ to rc6.d/)?
== What do I put here ? ==

Look in /etc... are there those directories? If so, give it /etc. If
not, try /usr/linux/etc.


 
===




*
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]






--
--hackmiester
Walk a mile in my shoes and you will be a mile away in a new pair of shoes.

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.1 (GNU/Linux)

iD8DBQFD/yYl3ApzN91C7BcRAoVVAJ97uhjh30nQ4hd9bQ90gJqiwsLEfgCeKSrg
bVfqEeJ09WhO6Y51WHEHb6o=
=VTUd
-END PGP SIGNATURE-

-BEGIN GEEK CODE BLOCK-
Version: Geek Code v3.1 (PHP)
GCS/CM/E/IT d-@ s: a- C++$ UBLS*$ P+ L+++$ E- W++$ !N-- !o+ K-- !w-- !O-
M++$ V-- PS@ PE@ Y--? PGP++ !t--- 5--? !X-- !R-- tv-- b+ DI++ D++ G+ e
h r+++ z
--END GEEK CODE BLOCK--

Quick contact info:
Work: [EMAIL PROTECTED]
Personal: [EMAIL PROTECTED]
Large files/spam: [EMAIL PROTECTED]
GTalk:hackmiester/AIM:hackmiester1337/Y!:hackm1ester/IRC:irc.7sinz.net/7sinz


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Installation VMware Workstation 5

2006-03-29 Thread Thiago Esteves de Oliveira
   Hi, I am trying install VMwareWorkstation 5 in FreeBSD with ABI
Linux...Please see it.

=
*

horus/(root) ./vmware-install.pl

Setup is unable to find the lsmod program on your machine. Please make
sure it

is installed. Do you want to specify the location of this program by hand?

[yes]

What is the location of the lsmod program on your

machine? /bin/ls

Creating a new installer database using the tar3 format.

Installing the content of the package.

In which directory do you want to install the binary files?[/usr/bin]
/usr/vmware

What is the directory that contains the init directories (rc0.d/ to rc6.d/)?
== What do I put here ? ==

 
===




*
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Where can i d/l VMware-workstation-3.2.1-2242.tar.gz

2005-05-03 Thread Dick Hoogendijk
On 03 May Warren wrote:
 I ended up finding it, but where would i find a list of various mirror
 sites and where would i add them into the list of mirrors to check as
 i often come across the problem of pkgs not found.

Do you really mean this? The *only* file not found that I get using the
ports _is_ the vmware package. I saved it for later days for that reason
alone. As said though, google is your friend.

-- 
dick -- http://nagual.st/ -- PGP/GnuPG key: F86289CE
++ Running FreeBSD 4.11 ++ FreeBSD 5.3
+ Nai tiruvantel ar vayuvantel i Valar tielyanna nu vilja
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Where can i d/l VMware-workstation-3.2.1-2242.tar.gz

2005-05-02 Thread Eric Kjeldergaard
2005/4/28, Warren [EMAIL PROTECTED]:
 im trying to install the vmware pkg via the port but all URL's listed fail to
 have the pkg:
 
 Where can i grab a copy of this pkg ?
 
snip
 ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/VMware-workstation-3.2.1-2242.tar.gz:
 File unavailable (e.g., file not found, no access)
 = Couldn't fetch it - please try to retrieve this
 = port manually into /usr/ports/distfiles/ and try again.
 *** Error code 1
 

Have you tried googling?  I was quite successful in finding the file,
for instance here: http://mirrors.zyrianes.net/gentoo/distfiles/ . 
Generally, I find that a quick google with the file just as it appears
there in the distinfo is a quick and easy way to get the file you
need.  Plus, since the files are MD5'd, you won't have to worry about
accidentally getting the wrong one.  Isn't FreeBSD great?

-- 
If I write a signature, my emails will appear more personalised.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Where can i d/l VMware-workstation-3.2.1-2242.tar.gz

2005-05-02 Thread Warren
 Have you tried googling?  I was quite successful in finding the file,
 for instance here: http://mirrors.zyrianes.net/gentoo/distfiles/ .
 Generally, I find that a quick google with the file just as it appears
 there in the distinfo is a quick and easy way to get the file you
 need.  Plus, since the files are MD5'd, you won't have to worry about
 accidentally getting the wrong one.  Isn't FreeBSD great?

I ended up finding it, but where would i find a list of various mirror sites 
and where would i add them into the list of mirrors to check as i often come 
across the problem of pkgs not found.

-- 
Yours Sincerely
Shinjii
http://www.shinji.nq.nu
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Where can i d/l VMware-workstation-3.2.1-2242.tar.gz

2005-04-28 Thread Warren
im trying to install the vmware pkg via the port but all URL's listed fail to 
have the pkg:

Where can i grab a copy of this pkg ?

===  Vulnerability check disabled, database not found
= VMware-workstation-3.2.1-2242.tar.gz doesn't seem to exist 
in /usr/ports/distfiles/.
= Attempting to fetch from http://vmware-svca.www.conxion.com/software/.
fetch: 
http://vmware-svca.www.conxion.com/software/VMware-workstation-3.2.1-2242.tar.gz:
 
Not Found
= Attempting to fetch from http://vmware-chil.www.conxion.com/software/.
fetch: 
http://vmware-chil.www.conxion.com/software/VMware-workstation-3.2.1-2242.tar.gz:
 
Not Found
= Attempting to fetch from http://vmware-heva.www.conxion.com/software/.
fetch: 
http://vmware-heva.www.conxion.com/software/VMware-workstation-3.2.1-2242.tar.gz:
 
Not Found
= Attempting to fetch from 
ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/.
fetch: 
ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/VMware-workstation-3.2.1-2242.tar.gz:
 
File unavailable (e.g., file not found, no access)
= Couldn't fetch it - please try to retrieve this
= port manually into /usr/ports/distfiles/ and try again.
*** Error code 1

-- 
Yours Sincerely
Shinjii
http://www.shinji.nq.nu
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: VMWare Workstation?

2004-12-27 Thread Eric Kjeldergaard
 I have not yet tried this ... but has anyone gotten VMWare workstation
 running on FreeBSD? Of course, I don't mean running FreeBSD as a client
 OS in, say, Linux or Windows. But running it as the host OS.

well, there is a port for it in /usr/ports/emulators and that works
alright.  Depending on exactly what you're doing, the free and open
source qemu may be just as good of a solution.

-- 
If I write a signature, my emails will appear more personalised.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


VMWare Workstation?

2004-12-21 Thread Tom Vilot
I have not yet tried this ... but has anyone gotten VMWare workstation 
running on FreeBSD? Of course, I don't mean running FreeBSD as a client 
OS in, say, Linux or Windows. But running it as the host OS.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: VMWare Workstation?

2004-12-21 Thread Tim Aslat
In the immortal words of Tom Vilot [EMAIL PROTECTED]...
 I have not yet tried this ... but has anyone gotten VMWare workstation
 running on FreeBSD? Of course, I don't mean running FreeBSD as a
 client OS in, say, Linux or Windows. But running it as the host OS.

I have, until I upgraded my machine.  I was running VMware workstation 3
under FreeBSD 5.2.1 without incident, however when I upgraded my machine
to a P4-2.6G with HyperThreading, it stopped working because the linux
emulation can't cope with SMP.

If you are running a uniprocessor system it should work fine.

Good Luck

Cheers

Tim

-- 
Tim Aslat [EMAIL PROTECTED]
Spyderweb Consulting
http://www.spyderweb.com.au
Phone: +61 0401088479
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


vmware2 VMware Workstation PANIC: BUG F(571):1607 bugNr=2302

2003-06-13 Thread Anatoliy Dmytriyev
Hello, all!

Suddenly, after upgrading of my FreeBSD-Stable box I got message from
VMWare: VMware Workstation PANIC: BUG F(571):1607 bugNr=2302.

Anybody can help me to fix this bug? (I tryed back to 4.8-release but it
didn't help ...)


Best regards,
Anatoliy Dmytriyev


___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: vmware2 VMware Workstation PANIC: BUG F(571):1607 bugNr=2302

2003-06-13 Thread Randy Bush
 Suddenly, after upgrading of my FreeBSD-Stable box I got message from
 VMWare: VMware Workstation PANIC: BUG F(571):1607 bugNr=2302.

portupgrade -fR emulators/vmware2

randy

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]