Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
msnek4k-driverd_1.0.0-bin_x86_64.tar.gz | 2011-05-19 | 530.6 kB | |
msnek4k-driverd_1.0.0-bin_i386.tar.gz | 2011-05-19 | 505.3 kB | |
msnek4k-driverd_1.0.0-1_i386.deb | 2011-05-19 | 154.3 kB | |
msnek4k-driverd_1.0.0-1_source.changes | 2011-05-19 | 1.3 kB | |
msnek4k-driverd_1.0.0-1_amd64.deb | 2011-05-19 | 165.3 kB | |
msnek4k-driverd_1.0.0-1_i386.changes | 2011-05-19 | 793 Bytes | |
msnek4k-driverd-1.0.0.tar.gz | 2011-05-19 | 260.2 kB | |
msnek4k-driverd_1.0.0-1.dsc | 2011-05-19 | 762 Bytes | |
msnek4k-driverd-1.0.0-1.x86_64.rpm | 2011-05-19 | 538.1 kB | |
msnek4k-driverd-1.0.0-1.tar.gz | 2011-05-19 | 260.2 kB | |
msnek4k-driverd-1.0.0-1.src.rpm | 2011-05-19 | 264.7 kB | |
msnek4k-driverd-1.0.0-1.i386.rpm | 2011-05-19 | 515.4 kB | |
README-release-notes-v1.0.0.txt | 2011-05-19 | 2.7 kB | |
Totals: 13 Items | 3.2 MB | 0 |
======== Files: ======== The following files are self-explanatory: msnek4k-driverd_1.0.1-1_amd64.deb msnek4k-driverd_1.0.1-1_i386.deb msnek4k-driverd-1.0.1-1.i386.rpm msnek4k-driverd-1.0.1-1.x86_64.rpm The following two files are the binary-only tarball-distributions: msnek4k-driverd_1.0.1-bin_i386.tar.gz msnek4k-driverd_1.0.1-bin_x86_64.tar.gz Source Code: * This file is the source distribution: msnek4k-driverd-1.0.1.tar.gz * The RPM source package: msnek4k-driverd-1.0.1-1.src.rpm * These are the "source package" files for the Debian packages: msnek4k-driverd_1.0.1-1.tar.gz msnek4k-driverd_1.0.1-1.dsc ======== Installing the RPM/DEB Package ======== Install as you would normally. That's it. Post-Installation: After installing for the very first time, you may want to customize the configuration file: 1. First, edit it to taste: sudo pico /etc/msnek4k_driverd.conf 2. Next, reload: sudo pkill -SIGUSR1 msnek4k_driverd If your Linux distribution's version of the 'procps' package doesn't contain 'pkill', replace the first command above with the following: sudo kill -SIGUSR `ps -ew | grep -v grep | \ grep msnek4k_driverd | awk '{print $1}'` If your system doesn't have 'sudo' installed, or if it's not configured, replace it with, 'su root', in the commands above. ======== Installing the Binary-Only Tarballs ======== 1. Neither binary distribution file extracts into a single subdirectory. * DO NOT try extracting one in a random, non-empty directory. * Both files are meant to be extracted into the root directory. 2. To install, perform the following commands: * For 32-bit Linux Platforms: cd / sudo tar -zxvf msnek4k-driverd_0.8.0-bin_i386.tar.gz | \ tee $HOME/msnek4k-driverd.manifest * For 64-bit Linux Platforms: cd / sudo tar -zxvf msnek4k-driverd_0.8.0-bin_x86_64.tar.gz | \ tee $HOME/msnek4k-driverd.manifest 3. Save the $HOME/msnek4k-driverd.manifest file for later use in uninstalling. 4. Note that the binaries, config file, and documentation are all installed under "/usr/local". Two files are not: * One is installed in "/etc/X11". * One is installed in "/etc/X11/Xsession.d". 5. Customize the configuration file and reload, as described above. Should you decide to uninstall this software, you can use the following (Bourne/Korn/Bash) shell scriptlet: for f in `cat $HOME/msnek4k-driverd.manifest`; do if [ -d $f ]; then continue else rm -iv $f fi done