Page 1 of 1

Kernel Upgrade in ViciBox Install

PostPosted: Thu May 31, 2012 11:39 pm
by joako
Is it ok to do a kernel upgrade in the ViciBox install? I've installed the disc and then imported/upgraded the database from an older version. Everything is working fine but I need to install vmware tools. When I attempt to install kernel-default-source it is trying to upgrade the kernel to the newest revision and I just wanted to make sure this was safe or if there is some kernel module hand built against the exact kernel version shipped with ViciBox.

Re: Kernel Upgrade in ViciBox Install

PostPosted: Fri Jun 01, 2012 2:28 am
by DomeDan
Only problem I had was the need to recompile wanpipe after a kernel upgrade.
On boot I got this: "Loading WAN drivers: wanpipe FATAL: Module wanpipe not found."
and fixed it doing this:
zypper source-install libpri dahdi dahdi-linux asterisk-vici wanpipe
cd /usr/src/packages/SOURCES/
tar xvf dahdi-linux-2*
cd dahdi-linux-2*
make
make install

[edit - added "dahdi-linux" because it was probably renamed from dahdi]

Re: Kernel Upgrade in ViciBox Install

PostPosted: Fri Jun 01, 2012 3:35 am
by joako
So I knew something seemed off! I never added the updates repository only the oss and non-oss. I added the repository and lo and behold I can get the devel for the currently installed kernel.

# yast2 repositories
Add > Community Repositories
*OSS
*Non-OSS
*Updates

# zypper in kernel-default-devel
Loading repository data...
Warning: Repository 'Main Update Repository' appears to outdated. Consider using a different mirror or server.
Reading installed packages...
Resolving package dependencies...

The following NEW packages are going to be installed:
kernel-default-devel kernel-devel

# vmware-config-tools.pl

... And everything goes as expected :mrgreen:

Re: Kernel Upgrade in ViciBox Install

PostPosted: Wed Sep 12, 2012 11:42 am
by amjohnson
I had the same issue and this fixed it but I had to change the dahdi package name from dahdi to dahdi-linux.

The following is what I had to use as of 09/12/2012 after doing a zypper update to get my dahdi working again.

zypper source-install libpri dahdi-linux asterisk-vici wanpipe
cd /usr/src/packages/SOURCES/
tar xvf dahdi-linux-*
cd dahdi-linux-*
make
make install

Hope this helps someone!