I found that the new Ubuntu comes with the Network Manager 0.9, but without the enabled wimax support. Please, give some advices how to re-compile it with --enable-wimax features. Thank you.
Asked
Active
Viewed 1,328 times
2 Answers
1
I found the solution, quite simple:
sudo apt-get source network-manager=0.9
sudo apt-get build-dep network-manager=0.9
Afterwards, we have to extract the archive network-manager_0.9.1.90.orig.tar.bz2 or another one depending on the version.
Compile with parameters:
$ ./configure --sysconfdir=/etc --localstatedir=/var --enable-wimax --with-distro=debian --enable-ppp --enable-polkit --with-udev-dir=/etc/udev --with-dbus-sys-dir=/etc/dbus-1 --with-pppd-plugin-dir=/usr/lib/NetworkManager --with-resolvconf --libexecdir=/usr/lib/NetworkManager --with-systemdsystemunitdir=/etc/systemd --with-dhcpcd=yes
$ sudo make
$ sudo make install
Of course, you need to have the wimax service and stack installed, pls, see the linuxwimax.org.
That's it. Should work, at least for my Intel Centrino 6250 it works greatly.
PS My recommendation to Canonical is to include the option --enable-wimax as default.
Oleksa
- 320