History
Topics
Top Posts
Blog Stats
- 159,791 hits
Anything about Ubuntu, Centos, openSuSe and Fedora
Currently unning a Novell eDirectory LDAP service and wonder how to use iManager on your Ubuntu workstation.
Here’s how:
1. Download the latest iManager Workstation for Linux in Novell Download Center
2. Extract the package (for me usually in $HOME/Desktop)
3. Install the necessary packages and libraries for alien (alien, libstdc++5, gcc), installing alien package also includes rpm in the requirements.
4. Prepare NICI for installation.
$> cd $HOME/Desktop/imanager $> cd NICI/linux $> sudo alien -d --scripts nici.i386.rpm $> sudo dpkg -i nici_2.7.3-1.01_i386.deb
5. Modify the current iManager.sh in the bin folder ($HOME/Desktop/imanager/bin) and remove the word ”function” in every functions of the script.
example:
function CHECK_PERMISSIONS() { echo "Test permissions" > $IMANAGER_BIN_NATIVE_DIR/perm.txt .... }
should be
CHECK_PERMISSIONS()
{
echo "Test permissions" > $IMANAGER_BIN_NATIVE_DIR/perm.txt
....
}
5. In the STARTMANAGER() function, remove the CHECK_NICI;
6. Save the script and do some test run.
$> cd $HOME/Desktop/imanager/bin $> ./iManager.sh
7. Done.
Compat is required to install iManagerInstallLinux.bin