Tag Archives: ubuntu

splash screen with plymouth on xubuntu 12.10

there were some troubles configuring the splash screen. here is a possible solution based on the listed links below:

vim /etc/default/grub
>>
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_GFXMODE=1280x1024
GRUB_GFXPAYLOAD_LINUX="1280x1024"

grub-update

vim /etc/initramfs-tools/conf.d/splash
>>
FRAMEBUFFER=y

update-alternatives --config default.plymouth
update-initramfs -u

http://ubuntuforums.org/archive/index.php/t-2066656.html
http://askubuntu.com/questions/202764/plymouth-not-showing-after-upgrading-to-ubuntu-12-10
http://askubuntu.com/questions/98022/startup-shutting-down-screen-showing-xubuntus-bootsplash-and-not-ubuntus

again a system upgrade

some essential and additional packages, which should be installed after an upgrade

vim
ssh
thunderbird
thunderbird-gnome-support
enigmail
network-manager-openvpn
network-manager-vpnc
nvidia-glx-*
compizconfig-settings-manager
gnome-do
awn-settings
unison-gtk
gimp
acroread

build-essential
git
subversion
rapidsvn
sun-java6-* (uncomment canonical first)
maven2
ant

flashplugin-*
ubuntu-restricted-extras
xine-[ui|plugin]
vlc
libdvdread4
libqt4-dev

a2ps
hplip-gui
gnomebaker
pidgin
skype
gdesklets

virtualbox
vmware
dropbox

texmaker

to be continued …

vmware on ubuntu revival

hey folks,

new version – new problems! ubuntu 10.10 with the 2.6.35-22 kernel needs more attention (see articel “installing vmware workstation 6.5.x on ubuntu”). here [1] i found the first solution for the problem “gcc and kernel headers must be installed”. it was necessary to link two header files to the include/linux directory. the next problem was the vsock module. the solution can be found here [2].

summarized there are following steps to be done:

in one terminal, run:

while true; do sudo killall -9 vmware-modconfig-console; sleep 1; done

in a second terminal, run:

sudo ./VMware-Workstation-6.5.4-246459.x86_64.bundle --ignore-errors

kill loop in first terminal.
and now those commands:

cd /tmp
vi vmnet-only/vnetUserListener.c (near line 37 add #include "compat_sched.h")
tar cf /usr/lib/vmware/modules/source/vmnet.tar vmnet-only
tar xf /usr/lib/vmware/modules/source/vmci.tar
vi vmci-only/linux/vmciKernelIf.c (add #include "compat_sched.h" around line 30)
vi vmci-only/include/pgtbl.h  (add #include "compat_sched.h" around line 30)
tar cf /usr/lib/vmware/modules/source/vmci.tar vmci-only
tar xf /usr/lib/vmware/modules/source/vmnet.tar
cd /usr/src/linux-headers-2.6.35-22-generic/include/linux/
ln -sf ../generated/autoconf.h .
ln -sf ../generated/utsrelease.h .
cd /usr/lib/vmware/modules/source
cp -a vsock.tar vsock-orig.tar
tar xf vsock.tar
cd /usr/lib/vmware/modules/sourcevsock-only/linux
patch -p0 < /path/to/vsock.patch
cd /usr/lib/vmware/modules/source
tar cf vsock.tar vsock-only
rm -rf vsock-only

and now finally

cd /tmp
sudo vmware-modconfig --console --install-all

hopefully everything went fine 😉

thanks for all the fish!

[1] “VMWare Workstation 6.5.4 with Linux kernel 2.6.33.4” (http://bovitron.com/blogostu/2010/06/01/vmware-workstation-with-linux-kernel-2-6-33-4)

[2] “Persuading VMware Workstation 7.1 to cooperate with Linux kernel 2.6.35” (http://www.linuxinsight.com/persuading-vmware-workstation-7.1-to-cooperate-with-linux-kernel-2.6.35.html)

[3] vsock.patch

installing vmware workstation 6.5.x on ubuntu

hey folks!

today i’ve got the message that vmware workstation was updated and that version 6.5.4 is out. so, i downloaded it and wanted to install … *schmecks*

there was a problem – i remembered it, that the version 6.5.3 made similar troubles – the installer hung up at configuring the vmplayer. here and here we found again the solution. shortly briefed:

  • in one terminal, run: while true; do sudo killall -9 vmware-modconfig-console; sleep 1; done
  • in a second terminal, run: sudo ./VMware-Workstation-6.5.4-246459.x86_64.bundle –ignore-errors
  • kill loop in first terminal.
  • # cd /tmp
    # tar xf /usr/lib/vmware/modules/source/vmnet.tar
    # vi vmnet-only/vnetUserListener.c (near line 37 add #include “compat_sched.h”)
    # tar cf /usr/lib/vmware/modules/source/vmnet.tar vmnet-only
    # tar xf /usr/lib/vmware/modules/source/vmci.tar
    # vi vmci-only/linux/vmciKernelIf.c (add #include “compat_sched.h” around line 30)
    # vi vmci-only/include/pgtbl.h (add #include “compat_sched.h” around line 30)
    # tar cf /usr/lib/vmware/modules/source/vmci.tar vmci-only
  • run: sudo vmware-modconfig –console –install-all
  • edit /etc/vmware/bootstrap to add the line: VMWARE_USE_SHIPPED_GTK=force

and everything is fine 🙂

thanks for all the fish!

finally – tethering with usb

hey folks!

after a lot of unsuccessful tries finally there is a solution! if you want to connect your ubuntu with a iphone 3gs to the internet look at this site!

but here a short overview:

  • add following repository: “add-apt-repository ppa:pmcenery/ppa”
  • run “apt-get update”
  • install following packages: “gvfs ipheth-utils”

that should be enough, so you can plug your activated iphone to the usb and your network-manager will show you a new wired network interface.

so, happy surfing with your iphone 😉

iphone upgrade with vmware under ubuntu

as you have read on this page before, it is possible to upgrade an iphone under ubuntu with vmware. BUT, as i’ve read on this page, it is easier as you think! here is my actually setup …

  • iPhone 3G 8Gb
  • ubuntu 9.10 (karmic) on lenovo t61p, kernel 2.6.31-19-generic
  • vmware workstation 6.5.3 build-185404
  • guest: winxp professional sp3 with itunes 9.0.3.15

what has to be done?

1. create a file /etc/modprobe.d/blacklist-usb.conf

2. add usb modules not to be loaded into that file

blacklist snd_usb_audio
blacklist usbhid

3. reload kernel event manager for the changes to take effect

reload udev

4. restart vmware and make sure you also restart windows in vmware

5. now start iphone software update in itunes

6. after update is complete, you can remove the blacklist file and restart kernel event manager again

note that during firmware update iphone might get disconnected – just connect it again using vmware removable devices menu.

wish you happy upgrading!!!

upgrade2do

some essential and additional packages, which should be installed after an upgrade 😉

  • vim
  • ssh
  • nvidia-glx-185
  • thunderbird
  • enigmail
  • network-manager-openvpn
  • network-manager-vpnc
  • compizconfig-settings-manager
  • gnome-do
  • build-essential
  • sun-java6-*
  • ant
  • pidgin
  • unison-gtk
  • awn-manager
  • flashplugin-*
  • rapidsvn
  • ubuntu-restricted-extras
  • xine-[ui|plugin]
  • vlc
  • libdvdread4
  • libqt4-dev
  • a2ps
  • hplip-gui
  • gnomebaker
  • blueman
  • skype
  • link-monitor-applet
  • gdesklets*

to be continued …

vmware-tools under ubuntu 9.04

hi folks!

i’ve had a problem with java, netbeans and my ubuntu 9.04 x86_64 system. so, i’ve decided to start my vmware and install a 32bit system – facing another problem: vmware-tools, in particular the mouse and filesharing.

searching for solutions on the web, i found those two sites:
http://www.csi-labor.de/archives/52-Howto-Vmware-Tools-Installation-unter-Ubuntu-9.04.html
http://communities.vmware.com/thread/207410

in short: you have to patch the vmhgfs module and if you are using the gcc-4.3 also the vmware-config-tools.pl script. everything else please read by yourself.

wish you happy compiling 😉

ubuntu update to 9.04 :: missing alt+f2

hi folks!

finally i initiated an update … but there were some problems:

  • lost the possibility to start the “run application” over the alt+f2 shortcut
  • lost the main-menu alt+f1 shortcut
  • no ctrl+alt+bkspc shortcut anymore

so, i started some research action on the www …

  • this page gave me the first hint, but i have had to change following line “event.data.l[1] = (Time)0;” to following “event.data.l[1] = (Time) time(NULL);” to get a auto-focused window!
  • no solution yet for the main-menu (tried to fix metacity, but without success)
  • all the other things found on this page!

happy fixing!

itunes on linux with wine

hi folks!

i’m a little bit angry. angry about proprietary software. especially products you need for your hardware, which were not cheap. i’m talking about my iphone and the software is, yeah you know it already, itunes. i’m not willing to be forced to buy a proprietary operating system for a free tool (itunes) i need to communicate with the purchased hardware (iphone). so i’ve decided to try my best with wine. i’ve heard that wine has solved its teething troubles and it’s now ready for the big world. hehe, you wish … but here the whole story and all my steps to my spoilage:

first i’ve tried the easy way, installing wine from the repository. so i wrote this to my sources.list:

  • deb http://wine.budgetdedicated.com/apt intrepid main

now a simple “apt-get install wine” was everything i need to start up. “download the newest itunes and install it”, was my next thought. but hey, that would be to simple. and for true, “wine iTunesSetup.exe” went completely wrong. the installation process didn’t even really start, and i got the message “the installer encountered errors before itunes could be configured”!?

so it was necessary to gain on some useful informations. this howto [1] helped me to find older versions of itunes. on oldapps [2] i tried some of them. till to the version 7.7.1 i had no success. but this version has no remote function for the iphone, and my first intention was not fulfilled. back to the start.

so i searched at the winehq homepage for more hints, and i found a patch for the current wine version [3,4]. this patch should permit the installation of the newest itunes. after downloading the sources of wine [5], applying the patch and installing all development packages for compiling [6] i’ve started the compiler … i was curious, really expecting the best. but everything turned out differently. it was really odd, the installation process finished successfully, but after executing itunes for the first time – surprise, surprise – there were no icons!!! no play-icon/button, no small icons at the left sidebar, no buttons, nothing. so i tried to change the configuration of direct3D (winecfg), but nothing happened – again no icons appeared!

i’m gutted … 😡 … welcome back, dear vmware!

[1] mini howto – itunes on ubuntu
[2] oldapps
[3] itunes8 on winehq
[4] itunes8.1 on winehq
[5] github wine
[6] building 32-bit wine on a 64-bit system – the easy way