OpenSUSE :: VMWare Installation - Of Gcc And Kernel-sources Versions

Dec 30, 2010

Trying to install VMWare I get the following message:

Really after it VMWare anyway doesn't agree to install. Zypper says that no newer version of gcc is available. So I can't see how I can install VMWare.

View 9 Replies


ADVERTISEMENT

OpenSUSE :: VMWare Installation - Kernel Headers For Version 2.6.34-12-desktop Were Not Found

Jul 23, 2010

I have installed OpenSUSE 11.3 64 bit and want to install VMWare workstation 7.1. I have run the install script for VMWare without any issues. When I start the VMWare Workstation I get a window saying this: Before you can run VMWare, several modules must be compiled and loaded into the running kernel. Kernel Headers 2.6.34-12-desktop Kernel headers for version 2.6.34-12-desktop were not found.

View 9 Replies View Related

OpenSUSE :: VMWare Workstation 7 Error "Before You Can Run Vmware, Several Modules Must Be Compiled And Loaded Into The Running Kernel"

Sep 21, 2010

im running suse 11.3_x64 clean install along side with Win7 Pro _x64 had a big fight installing Vbox 3.2.8 PUEL edition but i need to test some VMWare products like 'VMWare vShpere (ESXi 4..0.1 - which i couldn't install in a vm in Vbox) ' before putting it in production enviroment in some of my clients. version: VMware-Workstation-Full-7.0.0-203739.x86_64 The installation of vmware was quite simple with no errors. the problem kicks in after the first reboot when i try to run it. before installing vmware i installed the following:

[Code]..

When i try to run vmware workstation the 1st error kicks in: Before you can run vmware, several modules must be compiled and loaded into the running kernel:

[Code]...

View 9 Replies View Related

OpenSUSE :: How Does Decide Kernel Versions To Update To

May 19, 2011

I checked my kernel version (uname -r) and see I'm on "2.6.34.8-0.2-default", and I noticed that they just released 2.6.39. I'm assuming (perhaps incorrectly) that there's been at least versions 2.6.35/6/7/8 released in there. Why isn't my openSUSE 11.3 using anything more recent than .34? How does this updating work? Is 11.4 on a more recent one?

View 8 Replies View Related

Fedora Installation :: How To Get Kernel Sources (Package)

Mar 2, 2009

Is it possible to get a package via yum that has the kernel sources? In the "Add/Remove Software" GUI program, I have enabled the "Fedora source" s/w repository. Even then, the only kernel package I can find is the "The Linux Kernel", linux-2.6.27.15-170... which essentially provides only the kernel binaries and headers but not the source.

View 5 Replies View Related

OpenSUSE Install :: Installing Kernel Through RPMs Without Compiling Sources?

May 10, 2010

Is there any way to install a kernel using rpms and avoid compiling its sources? I am using OpenSUSE 11.2.

View 7 Replies View Related

Ubuntu Installation :: Grub2 Removing Old Kernel Versions Forever

Apr 14, 2010

Here's how to always have only the latest kernel version in your grub:
Code:
sudo gedit /etc/grub.d/10_linux

Find these lines:
Code:
list=`for i in /boot/vmlinu[xz]-* /vmlinu[xz]-* ; do
if grub_file_is_not_garbage "$i" ; then echo -n "$i " ; fi
done`

And change it with this:
Code:
for ver in /boot/vmlinu[xz]-* ; do
list="$ver"
done

Notice two differences.
1. There's no ` before "for" and after "done" keywords.
2. There's no list= before "for"

If you want to change the name of entry, scroll down to the end of the file and find last two occurrences of:
Code:
linux_entry
${OS} stands for Ubuntu and ${version} stands for your kernel version. I changed this into:
Code:
linux_entry "${OS} 9.10 Karmic Koala"

You can use your own imagination. If you want to have specific name for your Windows entry, in /boot/grub/grub.cfg copy everything between:
Code:
### BEGIN /etc/grub.d/30_os-prober ###
and
Code:
### END /etc/grub.d/30_os-prober ###
paste it in
/etc/grub.d/40_custom

Change the text between double quotes right after menu entry. (For example, my 40_custom looks like this now:
Code:
#!/bin/sh
exec tail -n +3 $0
# This file provides an easy way to add custom menu entries. Simply type the menu entries you want to add after this comment. Be careful not to change the 'exec tail' line above.
menuentry "Windows 7" {
insmod ntfs
set root=(hd0,1)
search --no-floppy --fs-uuid --set bcdc24dddc249424
chainloader +1
}
)
and make 30_os-prober not executable:
Code:
sudo chmod -x 30_os-prober

If you want to remove recovery mode entry, just uncomment this line in /etc/default/grub:
Code:
#GRUB_DISABLE_LINUX_RECOVERY="true"
PS Don't forget to run
Code:
sudo update-grub
After you finish editing everything! And check in /boot/grub/grub.cfg if everything is ok!

View 9 Replies View Related

Ubuntu Installation :: Removing Previous Versions After Updating Kernel?

Sep 12, 2010

I have looked for existing threads on this issue, but found no matches, so I am starting a new one.I first installed Ubuntu 9.04 on my laptop from a bought CD last year. When I later installed the kernel updtates with the Update Manager, I noticed the the list of versions growing when I booted up. Then something horrible happened. After installing maybe the third or fourth kernel update, I couldn't boot into Ubuntu, it failed every time. After that I left Ubuntu broken on my laptop for a while.I have now reinstalled from the CD again However, I am now very wary when it comes to installing even the important security updates, never mind the recommended ones! I prefer to keep it simple, because I don't want to do any more reinstalls for a while. So far I have just one kernel headers update on the boot list, and I am trying to figure out how to remove the previous one. I do not see the point in having a growing list of them again.

View 9 Replies View Related

Ubuntu Installation :: Download All The Sources Files Of Kernel?

Feb 11, 2011

I have an assignment as a CS student to code over Ubuntu Kernel but I am surely a beginner. I need to download all the source files of the Ubuntu kernel source code, make some changes then compile and use it as a custom kernel.

View 4 Replies View Related

Ubuntu Installation :: How To Prevent Removal Of Older Kernel Versions On Update

Jul 28, 2010

I need to prevent that the latest kernel update removes the only kernel that still works in my computer. how can i do this? Currently I have 3 linux kernels versions:

Code:

Ubuntu 10.04 LTS, kernel 2.6.32-23-generic
Ubuntu 10.04 LTS, kernel 2.6.32-23-generic (recovery mode)
Ubuntu 10.04 LTS, kernel 2.6.32-22-generic

[code]...

But only the oldest works. With the new update there is a new kernel version (2.6.32-24) that possibly will not boot (like previous 2.6.32-* kernels) and also I expect that, as in previous updates, the oldest kernel will become inaccessible, thus rendering my ubuntu unbootable.

PS: unsolved threads on the underlaying problem: Can't boot default kernel after upgrading from 9.xx to 10.04 lucid Upgrade to 10.04 freezes on the Ubuntu screen

View 7 Replies View Related

Debian Installation :: No Installable Kernel Was Found In Defined Apt Sources

Apr 28, 2015

I am currently trying to install Debian 8 "Jessie" AMD64 on a Dell Latitude E7240. I have two 256 GB SSD disks, on the first one I have installed Xubuntu 14.04 successfully. I want to install Debian 8 (XFCE) on the other one.I have tried using Debian-8.0.0-Live-amd64-xfce, Debian-8.0.0-amd64-DVD and Debian-8.0.0-amd64-netinst, all from a USB key (prepared with Unetbootin), but after successfully partitionning SSD disk, the installer raises the following issue:"no install-able kernel was found in the defined apt sources".

View 3 Replies View Related

OpenSUSE Install :: Kernel - VMWare Server 2.1 On 11.1?

Jan 5, 2011

first of all, please excuse my bad english. We rent a dedicatet server at Strato.de.I need to install VMWare Server. Actually this should be no Problem for me. I installed the server an patch.When I run the vmware-config.pl starts the problems:

Code:
Your kernel was built with "gcc" version "4.3.2", while you are trying to use "/usr/bin/gcc" version "4.3". This configuration is not recommended and VMware Server may crash if you'll continue. Please try to use exactly same compiler as one used for building your kernel. Do you want to go with compiler "/usr/bin/gcc" version "4.3" anyway? [no] I submit "y".

[Code]...

View 3 Replies View Related

OpenSUSE :: Kernel Upgrade, VMware Borked, GLIBCXX_3.4.11 Not Found

Jan 27, 2010

Using Suse 11.2, Linux 2.6.31.8-0.1-desktop.i386

Did a kernel upgrade today and VMware 6.5 wouldn't build modules, failing with

Code:
version `GLIBCXX_3.4.11' not found

To get it working again:

Code:
cd /usr/lib/vmware/lib/libstdc++.so.6
mv libstdc++.so.6 libstdc++.so.6.orig
ln -s /usr/lib/libstdc++.so.6.0.12 libstdc++.so.6

[Code]....

View 1 Replies View Related

Ubuntu Installation :: VMware 7 Cannot Compile Under 2.6.32-10 Kernel

Jan 15, 2010

I upgraded to Ubuntu 10.04 2.6.32-10-generic today. After a succesful update that fixed a couple of nagging problems on my laptop (nice work guys) I started VMware Workstation. I got the expected "Before you can run VMware, several modules must be compiled..."

The compile errors out and points to the setup log. I have searched and found several very similar posts all relating to build-essential or kernel-headers not being installed. I have verified both are installed and up to date.

Here's the important part of the log:

Code:
Jan 15 17:39:16.079: app-139708855981824| Trying to find a suitable PBM set for kernel 2.6.32-10-generic.
Jan 15 17:39:16.080: app-139708855981824| Building module vmmon.

[Code]....

View 4 Replies View Related

Fedora Installation :: What Is The Path To Specify Kernel-headers For VMware

Jul 11, 2010

I've installed F13. Installer has set:

kernel-PAE-2.6.33.3-85.fc13.i686
kernel-headers-2.6.33.6-147.fc13.i686

Installation of VMware Workstation was ok, but at first launch it ask me for path of
kernel-headers-2.6.33.3 Why I have different versions of kernel and kernel-headers? How can I make working VMware? Installation of kernel-headers 2.6.33.3 from package-manager seems impossible.What is the path to specify kernel-headers for VMware?

View 2 Replies View Related

Ubuntu Installation :: Can't Update Http://ppa.launchpad.net Natty/main/Sources Sources

May 16, 2011

I've got the following problem: I just noticed that there were just very few notifications about updating the system (usually there are damn many of them in a week) So I opened the update manager and clicked on "refresh list". The following result popped up: p,li{white-space:pre-wrap;}E: Error http://ppa.launchpad.net natty/main/Sources Sources 404 Not Found First I thought, it would be just some kind of server problem, but it didn't stop. The next thing was to research the thread and I even found something. However, the solution suggested didn't work at all. (Things, which might have caused this: I installed the default software center |I'm using Kubuntu, but in this case that fact doesn't matter| and used it. To sum up:

- not able to update the system referring to the launchpad main sources for 11.04
- following error: E: Error http://ppa.launchpad.net natty/main/Sources Sources 404 Not Found It would be great if this was a common issue and I've been simply too stupid to find a proper solution. So you could just post the link.

View 2 Replies View Related

Ubuntu Installation :: VMware Workstation 7 Untable To Compile With New Kernel?

Aug 20, 2010

i installed linux kernel 2.6.35.2 and now vmware wont run been searching for a few hours for a "fix" found a few files but they don't seem to work here's log from vmware updater.

Code:
Aug 20 01:04:09.520: app-140689147180800| Log for VMware Workstation pid=22622 version=7.1.1 build=build-282343 option=Release
Aug 20 01:04:09.520: app-140689147180800| The process is 64-bit.

[Code]..

View 1 Replies View Related

Installation :: VMware Player Not Compling Kernel On Ubuntu 10.10 / Solve This?

Oct 11, 2010

I've just upgraded to Ubuntu 10.010 - Maverick Meerkat.

Launching VMWare Player 3.1.2 I get the message: "Before you can run VMWare, several modules must be compiled and loaded into running kernel".
I click ok, but there are problems recompiling VMCI sockets.
The effect is that my windows image starts, but then crashes.

Do you have some suggestions to solve the problem ? Or is it only a problem of compilation with the new 10.10 kernel, not yet available for VMWare?

View 7 Replies View Related

Ubuntu Installation :: Change The Sources That Aren't In Sources.list?

Apr 21, 2010

I am running Jolicloud on my netbook (which I believe is an Ubuntu derivative) and I am tried to enter the getdeb.net sources in so I can install apps from the website through APT but

1) When I entered the sources into sources.list and then the key into Terminal and then went to the site and tried to install an app it didn't work.

2) I deleted the line of code in the sources.list file and when I opened terminal and entered "sudo apt-get update" it showed the list of sources, but on the list were Getdeb.net sources.

My question is how do I delete sources that aren't in /etc/apt/sources.list ?

View 6 Replies View Related

OpenSUSE Install :: Broken System After Install Of Kernel Sources And Restart?

May 29, 2011

I had recently installed the kernel sources so that I could compile the VirtualBox kernel module to use well but I had not restarted afterwards. I had been using my system problem free until tonight when I decided to restart. I had no internet connection and through ifconfig showing only lo and ifup eth0 returning "device eth0 is not accessible", I discovered I had a bigger problem than at first thought. Then I discovered that no PCI devices other than video were working, and so I referred to /var/log/messages and discoverd a line stating that "/lib/modules/2.6.37.6-0.5-desktop/modules.dep : no such file or directory.

All other entries in that directory were some version of 2.6.37.1-1.2.

Unfortunately I had to end up reinstalling because witho

View 4 Replies View Related

Red Hat :: Difference Between 'kernel Sources' & 'kernel-devel'

Jan 7, 2010

I have installed CentOS 5.4 & am trying to install VirtualBox on it. To install VirtualBox I run the command:

yum localinstall path/Virtualbox.rpm

It runs through the dependency check & says everything is fine. It installs the rpm & then says that compiling of the kernel module failed & that VirtualBox will not start until this is fixed, & that the most like cause is that the kernel sources are not installed.

I have installed the kernel-devel package & have the kernel source tree located at /usr/src/kernel/2.6....

View 3 Replies View Related

Ubuntu Installation :: VMware Player - Kernel Panic - Not Syncing - VFS - Unable To Mount Root

May 5, 2010

I recently started to use Ubuntu in VWware player on my windows-XP. I installed ubuntu 10.04 few days ago, It was working fine.

Yesterday, I compile a new kernel, kernel 2.6.33 in my vmware ubuntu 10.04. Everything went well till I did reboot. before reboot I use the command "update-grub" to make it compatible to the new kernel. BUT... after rebooting, I have a problem in loading a grub correctly. it gives me following message " [2.149136 ]kernel panic - not syncing: VFS: unable to mount root fs on unknown-block(0,0)" and I can not proceed further. I have my all data on it. I also tried to boot it from live CD but unfortunately, I can't mount the hard disk on it in order to get those data from my old Ubuntu set up.

View 4 Replies View Related

OpenSUSE Install :: Adding Installation Sources In SuSE11.2?

Feb 22, 2010

I'm a new linux user and I'm trying to install some files from a .tar.gz archive. I have successfully created a repository in a directory using createrepo, but I can't figure out how to add am installation source to YaST.How is it done in 11.2?

View 2 Replies View Related

OpenSUSE :: Install Snow Leopard 10.6.6 VMware AMD Edition (which Downloaded) On VMware System?

Mar 17, 2011

Is it possible to install Snow Leopard 10.6.6 VMware AMD edition (which I downloaded) on VMware linux? It is under Windows 7 so I just need to know if everything of VMware linux (like Hardware Virtualization) is the same under linux as for Windows.

View 1 Replies View Related

Ubuntu :: Get Sources For Old Ubuntu Versions?

Mar 5, 2011

I am running Ubuntu 10.04 and I need to build kernel (2.6.27) for old Ubuntu version 8.10 Intrepid.I read bunch of manuals how to build Ubuntu kernel, but I still can not find answer to two fundamental questions!

I was told, that I can't simply take kernel sources from kernel.org and compile them for Ubuntu.I need special Ubuntu patched kernel sources, so my question is whether this is correct and where can I get these sources for old Ubuntu 8.10? I was also told that I CAN take sources from kernel.org but then I have to apply special Ubuntu patches. Where can I take these Ubuntu patches for old Ubuntu 8.10?

I tried the following: This is not good because it will bring me sources for current version 2.6.32-29-generic apt-get source linux-image-`uname -r`

The following returned errors
apt-get source linux-image-2.6.29-11
E: Unable to find a source package for linux-image-2.6.29-11
apt-get source linux-image-2.6.28

[Code]...

View 2 Replies View Related

Fedora :: How To Know All The Available Kernel Versions

Mar 17, 2011

How do I know the exact kernel version (or rpm package name) of fedora 14 without having to install one? I couldn't find the information on the the website. And one more question. Does one fedora distribution has only one kernel available all the time? Where can I find all the kernels for a particular distribution (for example Fedora 12) distributed by Fedora Project? I can find all the available kernels for a RedHat Enterprise distribution on [URL], but not for Fedora.

View 1 Replies View Related

Fedora :: Keep More Than 3 Versions Of Kernel After Update?

Mar 11, 2010

When yum updates the kernel it keeps the last 3 versions; the older kernels are deleted. Is there a way to keep more than 3 versions?

I presently have one working version and two which are not compatible with my machine. One more bad version and my system will be toast. (I would like to keep the "bad" versions for testing.)

View 2 Replies View Related

Ubuntu :: Booting With Certain Versions Of The Kernel

Jul 14, 2010

I've been having some odd kernel issues recently. A while back I installed 2.6.32rc6 when I first upgraded to 9.04, because it solved issues I was having with surround sound. A few months back I installed mythtv and the mythbuntu binaries as well, although I have since uninstalled them. All of a sudden, I seemed to have issues booting into ubuntu with certain versions of the kernel, where it would just freeze at the white ubuntu logo, while other versions of the kernel would load fine (I think 2.6.31?) but it would display the mythbuntu logo instead (not sure if this is related).

I just upgraded to 10.04, and I still seem to have issues booting with certain kernel versions. Right now I'm running 2.6.32-020632rc6-generic which seems to work, but it's outdated, and I have surround sound issues again. Which one should I be using? Is there a way to clean this mess up? How do I fix the problem of freezing at the boot screen?

View 3 Replies View Related

Debian Installation :: Vmware Workstation 7.1.4 - Can't Complete Compile Modules Of Vmware

Jun 6, 2011

I want to install debian on vmware workstation 7.1.4 but there's a problem! when I try to install vmware tools or open-vm, it can't complete compile modules of vmware. It is a big problem... It seem problem of kernel version after 2.6.37... But I can't find solution. logs.... Before you can compile modules, you need to have the following installed...

[Code].....

View 2 Replies View Related

Fedora :: PAE Related - Kernel Versions Are Different In Two Folders?

Dec 11, 2010

In the processing of reinstalling VirtualBox, I found this:2.6.35.6-48.fc14.i686.PAE/source -> /usr/src/kernels/2.6.35.6-48.fc14.i686.PAE/ ,but this folder don't exist.。 I try to relink the ln as source -> /usr/src/kernels/2.6.35.9-64.fc14.i686.PAE , but VirtualBox still get problem with the kernel. Since VirB works fine with other 2 kernels, the solution for this is not quite needed, but I just wonder why this happens. See below. I don't know why these two folder contain different version of kernels. Anybody get an idea?

2.6.35.6-48.fc14.i686.PAE]$ ll /usr/src/kernels/; ll /lib/modules/; ll /lib/modules/2.6.35.6-48.fc14.i686.PAE/ |grep build
total 16
drwxr-xr-x. 22 root root 4096 Nov 19 14:58 2.6.35.6-45.fc14.i686
drwxr-xr-x. 22 root root 4096 Nov 15 00:04 2.6.35.6-48.fc14.i686
drwxr-xr-x. 22 root root 4096 Dec 8 17:08 2.6.35.9-64.fc14.i686
drwxr-xr-x. 22 root root 4096 Dec 8 15:19 2.6.35.9-64.fc14.i686.PAE

[Code]...

View 4 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved