Difference between revisions of "NetworkManager"
From CBLFS
Jump to navigationJump to searchChipster19 (talk | contribs) |
|||
(4 intermediate revisions by 3 users not shown) | |||
Line 15: | Line 15: | ||
=== Required === | === Required === | ||
+ | * [[Iptables]] | ||
* [[libnl]] | * [[libnl]] | ||
* [[Wireless tools]] | * [[Wireless tools]] | ||
− | * [[WPA Supplicant]] | + | * [[WPA Supplicant]] with [[D-BUS]] enabled |
* [[D-BUS Glib]] | * [[D-BUS Glib]] | ||
* [[PolicyKit]] | * [[PolicyKit]] | ||
Line 32: | Line 33: | ||
./configure --prefix=/usr --sysconfdir=/etc \ | ./configure --prefix=/usr --sysconfdir=/etc \ | ||
--libdir=/usr/lib --localstatedir=/var \ | --libdir=/usr/lib --localstatedir=/var \ | ||
− | --libexecdir=/usr/lib/network-manager && | + | --libexecdir=/usr/lib/network-manager \ |
+ | --with-distro=clfs --with-crypto=gnutls && | ||
make | make | ||
Line 94: | Line 96: | ||
make install | make install | ||
+ | |||
+ | [[Category:Network Applications]] |
Latest revision as of 12:09, 20 April 2010
Contents
Introduction to NetworkManager
NetworkManager program is a network connection manager. It supports Ethernet, WiFi, VPN connections.
Project Homepage: http://www.gnome.org/projects/NetworkManager/
Dependencies
Required
- Iptables
- libnl
- Wireless tools
- WPA Supplicant with D-BUS enabled
- D-BUS Glib
- PolicyKit
- NSS or GnuTLS
- PPP
- dhcpcd or dhcp
Non-Multilib
Compile the package:
patch -Np1 -i ../NetworkManager-0.8-clfs_support-1.patch && autoreconf -f -i && ./configure --prefix=/usr --sysconfdir=/etc \ --libdir=/usr/lib --localstatedir=/var \ --libexecdir=/usr/lib/network-manager \ --with-distro=clfs --with-crypto=gnutls && make
Install the package:
make install
Multilib
32Bit
Compile the package:
patch -Np1 -i ../NetworkManager-0.8-clfs_support-1.patch && autoreconf -f -i && CC="gcc ${BUILD32}" USE_ARCH=32 \ PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" \ ./configure --prefix=/usr --sysconfdir=/etc \ --libdir=/usr/lib --localstatedir=/var \ --libexecdir=/usr/lib/network-manager \ --with-distro=clfs --with-crypto=gnutls && make
Install the package:
make install
N32
Compile the package:
patch -Np1 -i ../NetworkManager-0.8-clfs_support-1.patch && autoreconf -f -i && CC="gcc ${BUILDN32}" USE_ARCH=n32 \ PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" \ ./configure --prefix=/usr --sysconfdir=/etc \ --libdir=/usr/lib32 --localstatedir=/var \ --libexecdir=/usr/lib64/network-manager \ --with-distro=clfs --with-crypto=gnutls && make
Install the package:
make install
64Bit
Compile the package:
patch -Np1 -i ../NetworkManager-0.8-clfs_support-1.patch && autoreconf -f -i && CC="gcc ${BUILD64}" USE_ARCH=64 \ PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \ ./configure --prefix=/usr --sysconfdir=/etc \ --libdir=/usr/lib64 --localstatedir=/var \ --libexecdir=/usr/lib64/network-manager \ --with-distro=clfs --with-crypto=gnutls && make
Install the package:
make install