Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
Frame buffer under Vmware-fusion while booting
View unanswered posts
View posts from last 24 hours

 
Reply to topic    Gentoo Forums Forum Index Other Things Gentoo
View previous topic :: View next topic  
Author Message
luispa
Guru
Guru


Joined: 17 Mar 2006
Posts: 359
Location: España

PostPosted: Tue May 13, 2008 6:59 pm    Post subject: Frame buffer under Vmware-fusion while booting Reply with quote

Hi,

Has anybody been able to configure vesa frame buffer (with/without splash screen) with gentoo running under vmware-fusion (maxosx 10.5.x)
I would like to have something more than 80x25.

I followed the "http://gentoo-wiki.com/HOWTO_gensplash" without success.

I've tried uvesafb but nothing happens while booting (so still 80x25 text mode).

I've tried vesafb and at least now I see while booting that it goes to graphics mode (vmware window resizes to a promising 1024x768 size), but I only get a blank screen up until X11 loads... :-(

My grub options

test 1:
Code:
title=Gentoo Linux vesafb
root   (hd0,0)
kernel (hd0,0)/bzImage-2.6.23-gentoo-r6 root=/dev/sda3 video=vesafb:mtrr:3,ywrap vga=791

Result: blank screen, when X11 loads automatically switches to X and stays there.

test 2:
Code:
title=Gentoo Linux vesafb
root   (hd0,0)
kernel (hd0,0)/bzImage-2.6.23-gentoo-r6 root=/dev/sda3 video=vesafb:mtrr:3,ywrap vga=791 splash=verbose,theme:emergence console=tty1
initrd (hd0,0)/fbsplash-emergence-1024x768
Result: blank screen, when X11 loads automatically appears but switches back to console (blank). I have to use ssh to it to modify/reboot, etc.
I have an additional problem: can't change to any console using keyboard.

Luis
Back to top
View user's profile Send private message
batmanbeyond
n00b
n00b


Joined: 18 Apr 2008
Posts: 27

PostPosted: Mon Jun 30, 2008 12:45 am    Post subject: Reply with quote

hi luispa


well i have a macbookpro, and i use Vmware fusion to virtualize. I have some problems with vmware fusion but only when i try to install Gentoo....


At today i have vmware fusion version 1.1.2, i dont have problems with kernel panic or things like that, my primordial problem now is about my network, i cant start my network after i finish my installation, i mean when the kernel finally loads, he said cant start net.eth0, please verify if your module, and i cant start my network, do you have the same problem and know how i can resolve it????


thanks for red this, and i hope you reply me... thanks for all
Back to top
View user's profile Send private message
luispa
Guru
Guru


Joined: 17 Mar 2006
Posts: 359
Location: España

PostPosted: Tue Jul 01, 2008 7:56 am    Post subject: Reply with quote

batmanbeyond wrote:
hi luispa


well i have a macbookpro, and i use Vmware fusion to virtualize. I have some problems with vmware fusion but only when i try to install Gentoo....


At today i have vmware fusion version 1.1.2, i dont have problems with kernel panic or things like that, my primordial problem now is about my network, i cant start my network after i finish my installation, i mean when the kernel finally loads, he said cant start net.eth0, please verify if your module, and i cant start my network, do you have the same problem and know how i can resolve it????


thanks for red this, and i hope you reply me... thanks for all


Hello.

Please try to compile the E1000 in your kernel. I have it as module. I'm putting below the network relevant parts of my .config kernel file.

Also remember to add e1000 to your modules.autoload file:
Code:
asterix-vmlinux ~ # cat /etc/modules.autoload.d/kernel-2.6
# Driver de red
e1000


Even though it's probably not needed, I've also installed the vmware tools. To do it, go to VMWare->Virtual Machine->Install VMWare tools. Then mount the cdrom (mount /dev/cdrom /mnt/cdrom) and inside /mnt/cdrom you'll find the .tgz file, uncompress and install it. Befor installing it, remember that you need to create the following directories structure:

Code:
asterix-vmlinux ~ # ls -al /etc/rc
total 36
drwxr-xr-x  9 root root   248 Jul  1 07:51 .
drwxr-xr-x 54 root root  4008 Jul  1 09:41 ..
drwxr-xr-x  2 root root    80 Jul  1 08:15 rc0.d
drwxr-xr-x  2 root root    48 Dec 24  2007 rc1.d
drwxr-xr-x  2 root root   112 Jul  1 08:15 rc2.d
drwxr-xr-x  2 root root   112 Jul  1 08:15 rc3.d
drwxr-xr-x  2 root root    48 Dec 24  2007 rc4.d
drwxr-xr-x  2 root root   112 Jul  1 08:15 rc5.d
drwxr-xr-x  2 root root    80 Jul  1 08:15 rc6.d


Once vmware-tools is installed, remember to create a link at /etc/init.d:
Code:
asterix-vmlinux ~ # ls -al /etc/init.d/vmware-tools
lrwxrwxrwx 1 root root 20 Dec 24  2007 /etc/init.d/vmware-tools -> /etc/rc/vmware-tools


.config kernel network options
Code:
#
# Networking
#
CONFIG_NET=y

#
# Networking options
#
CONFIG_PACKET=y
# CONFIG_PACKET_MMAP is not set
CONFIG_UNIX=y
CONFIG_XFRM=y
# CONFIG_XFRM_USER is not set
# CONFIG_XFRM_SUB_POLICY is not set
# CONFIG_XFRM_MIGRATE is not set
# CONFIG_NET_KEY is not set
CONFIG_INET=y
CONFIG_IP_MULTICAST=y
# CONFIG_IP_ADVANCED_ROUTER is not set
CONFIG_IP_FIB_HASH=y
CONFIG_IP_PNP=y
CONFIG_IP_PNP_DHCP=y
# CONFIG_IP_PNP_BOOTP is not set
# CONFIG_IP_PNP_RARP is not set
# CONFIG_NET_IPIP is not set
# CONFIG_NET_IPGRE is not set
# CONFIG_IP_MROUTE is not set
# CONFIG_ARPD is not set
# CONFIG_SYN_COOKIES is not set
# CONFIG_INET_AH is not set
# CONFIG_INET_ESP is not set
# CONFIG_INET_IPCOMP is not set
# CONFIG_INET_XFRM_TUNNEL is not set
CONFIG_INET_TUNNEL=y
CONFIG_INET_XFRM_MODE_TRANSPORT=y
CONFIG_INET_XFRM_MODE_TUNNEL=y
# CONFIG_INET_XFRM_MODE_BEET is not set
CONFIG_INET_DIAG=y
CONFIG_INET_TCP_DIAG=y
# CONFIG_TCP_CONG_ADVANCED is not set
CONFIG_TCP_CONG_CUBIC=y
CONFIG_DEFAULT_TCP_CONG="cubic"
# CONFIG_TCP_MD5SIG is not set
CONFIG_IPV6=y
# CONFIG_IPV6_PRIVACY is not set
# CONFIG_IPV6_ROUTER_PREF is not set
# CONFIG_IPV6_OPTIMISTIC_DAD is not set
# CONFIG_INET6_AH is not set
# CONFIG_INET6_ESP is not set
# CONFIG_INET6_IPCOMP is not set
# CONFIG_IPV6_MIP6 is not set
# CONFIG_INET6_XFRM_TUNNEL is not set
# CONFIG_INET6_TUNNEL is not set
CONFIG_INET6_XFRM_MODE_TRANSPORT=y
CONFIG_INET6_XFRM_MODE_TUNNEL=y
# CONFIG_INET6_XFRM_MODE_BEET is not set
# CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set
CONFIG_IPV6_SIT=y
# CONFIG_IPV6_TUNNEL is not set
# CONFIG_IPV6_MULTIPLE_TABLES is not set
# CONFIG_NETWORK_SECMARK is not set
# CONFIG_NETFILTER is not set
# CONFIG_IP_DCCP is not set
# CONFIG_IP_SCTP is not set
# CONFIG_TIPC is not set
# CONFIG_ATM is not set
# CONFIG_BRIDGE is not set
# CONFIG_VLAN_8021Q is not set
# CONFIG_DECNET is not set
# CONFIG_LLC2 is not set
# CONFIG_IPX is not set
# CONFIG_ATALK is not set
# CONFIG_X25 is not set
# CONFIG_LAPB is not set
# CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set

#
# QoS and/or fair queueing
#
# CONFIG_NET_SCHED is not set

#
# Network testing
#
# CONFIG_NET_PKTGEN is not set
# CONFIG_NET_TCPPROBE is not set
# CONFIG_HAMRADIO is not set
# CONFIG_IRDA is not set
# CONFIG_BT is not set
# CONFIG_AF_RXRPC is not set

#
# Wireless
#
# CONFIG_CFG80211 is not set
# CONFIG_WIRELESS_EXT is not set
# CONFIG_MAC80211 is not set
# CONFIG_IEEE80211 is not set
# CONFIG_RFKILL is not set
# CONFIG_NET_9P is not set

#
# Device Drivers
#

...

#
# Protocols
#
# CONFIG_IEEE1394_VIDEO1394 is not set
# CONFIG_IEEE1394_SBP2 is not set
# CONFIG_IEEE1394_ETH1394_ROM_ENTRY is not set
# CONFIG_IEEE1394_ETH1394 is not set
# CONFIG_IEEE1394_DV1394 is not set
CONFIG_IEEE1394_RAWIO=y
# CONFIG_I2O is not set
# CONFIG_MACINTOSH_DRIVERS is not set
CONFIG_NETDEVICES=y
CONFIG_NETDEVICES_MULTIQUEUE=y
# CONFIG_DUMMY is not set
# CONFIG_BONDING is not set
# CONFIG_MACVLAN is not set
# CONFIG_EQUALIZER is not set
CONFIG_TUN=m
# CONFIG_ARCNET is not set
# CONFIG_PHYLIB is not set
CONFIG_NET_ETHERNET=y
CONFIG_MII=y
# CONFIG_HAPPYMEAL is not set
# CONFIG_SUNGEM is not set
# CONFIG_CASSINI is not set
# CONFIG_NET_VENDOR_3COM is not set
# CONFIG_NET_TULIP is not set
# CONFIG_HP100 is not set
CONFIG_NET_PCI=y
CONFIG_PCNET32=m
# CONFIG_PCNET32_NAPI is not set
# CONFIG_AMD8111_ETH is not set
# CONFIG_ADAPTEC_STARFIRE is not set
# CONFIG_B44 is not set
# CONFIG_FORCEDETH is not set
# CONFIG_DGRS is not set
# CONFIG_EEPRO100 is not set
# CONFIG_E100 is not set
# CONFIG_FEALNX is not set
# CONFIG_NATSEMI is not set
# CONFIG_NE2K_PCI is not set
# CONFIG_8139CP is not set
# CONFIG_8139TOO is not set
# CONFIG_SIS900 is not set
# CONFIG_EPIC100 is not set
# CONFIG_SUNDANCE is not set
# CONFIG_TLAN is not set
# CONFIG_VIA_RHINE is not set
# CONFIG_SC92031 is not set
CONFIG_NETDEV_1000=y
# CONFIG_ACENIC is not set
# CONFIG_DL2K is not set
CONFIG_E1000=m
# CONFIG_E1000_NAPI is not set
# CONFIG_E1000_DISABLE_PACKET_SPLIT is not set
# CONFIG_E1000E is not set
# CONFIG_NS83820 is not set
# CONFIG_HAMACHI is not set
# CONFIG_YELLOWFIN is not set
# CONFIG_R8169 is not set
# CONFIG_SIS190 is not set
# CONFIG_SKGE is not set
# CONFIG_SKY2 is not set
# CONFIG_SK98LIN is not set
# CONFIG_VIA_VELOCITY is not set
# CONFIG_TIGON3 is not set
# CONFIG_BNX2 is not set
# CONFIG_QLA3XXX is not set
# CONFIG_ATL1 is not set
# CONFIG_NETDEV_10000 is not set
# CONFIG_TR is not set
Back to top
View user's profile Send private message
pilla
Bodhisattva
Bodhisattva


Joined: 07 Aug 2002
Posts: 7729
Location: Underworld

PostPosted: Mon Jul 07, 2008 2:08 pm    Post subject: Reply with quote

Moved from Gentoo on Alternative Architectures to Other Things Gentoo.
_________________
"I'm just very selective about the reality I choose to accept." -- Calvin
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Other Things Gentoo All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum