Difference between revisions of "Fedora Installation Notes"

From NST Wiki
Jump to navigationJump to search
(Development Case Study Using VMWARE - make package-check-url)
(Fedora 7 Installation Notes)
 
(7 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 +
<p class="wikiNote">'''NOTE''': This page is outdated and should no longer be used as a reference for building a NST development system. If you are interested in putting together a system for the purpose of building the NST distribution from source, please refer to the [[Developer Info]] section.</p>
 +
 +
__TOC__
 +
 
= Fedora 7 Installation Notes =
 
= Fedora 7 Installation Notes =
  
Line 41: Line 45:
 
I undertook a challenge to see if I could make a working NST under VMWARE. The motivation was to obtain extra functions beyond what was available in the NST 1.5 VMWARE image; e.g. gain access to the VMWARE hgfs function and add additional tools.  Samba was an alternative to hgfs.  But to add the additional tools I needed to build an FC image anyway.  So why not just build FC7/NST under VMWARE?
 
I undertook a challenge to see if I could make a working NST under VMWARE. The motivation was to obtain extra functions beyond what was available in the NST 1.5 VMWARE image; e.g. gain access to the VMWARE hgfs function and add additional tools.  Samba was an alternative to hgfs.  But to add the additional tools I needed to build an FC image anyway.  So why not just build FC7/NST under VMWARE?
  
I started by following the instructions, [[Building From Source]],  that were developed by the primary NST developers.  FC7 was built under Fusion using the "split" option for an 8GB virtual drive.  The split option was chosen to make the image portable using the FAT file system.
+
I started by following the building instructions on the NST WIKI,  that were developed by the primary NST developers.  FC7 was built under Fusion using the "split" option for an 8GB virtual drive.  The split option was chosen to make the image portable using the FAT file system.
  
 
During the FC7 install, I generally chose not to install packages that dealt with (to be filled in later).
 
During the FC7 install, I generally chose not to install packages that dealt with (to be filled in later).
Line 52: Line 56:
 
* rpm -Uvh VMwareTools-e.x.p-51348.i386.rpm
 
* rpm -Uvh VMwareTools-e.x.p-51348.i386.rpm
  
And then configured by executing vmware-config-tools.pl.  The configuration output can be found at [[Fedora Installation Notes#Development Case Study Using VMWARE - vmware-config output| vmware config output]].
+
And then configured by executing:
 +
* vmware-config-tools.pl.   
 +
The configuration output can be found at [[Fedora Installation Notes#Development Case Study Using VMWARE - vmware-config output| vmware config output]].
  
 
As the subsequent NST creation steps unfolded, the VMWARE image was moved back and forth using an 8GB flash drive.  The movement from Fusion was to VMPLAYER running under SUSE 10.x.  This provided initial validation that the image had, at minimum, some portability.  Fusion was still needed to tweak the "settings."  After some tweaking, the following "settings" configuration was used:
 
As the subsequent NST creation steps unfolded, the VMWARE image was moved back and forth using an 8GB flash drive.  The movement from Fusion was to VMPLAYER running under SUSE 10.x.  This provided initial validation that the image had, at minimum, some portability.  Fusion was still needed to tweak the "settings."  After some tweaking, the following "settings" configuration was used:
3 NICs
+
<ul>
eth0 - NATed  to be used as the NST management interface
+
<li>3 NICs  
eth1 - custom to be used as a promiscuous interface
+
<li>eth0 - NATed  to be used as the NST management interface  
eth2 - host  to be assigned for future use
+
<li>eth1 - custom to be used as a promiscuous interface  
 
+
<li>eth2 - host  to be assigned for future use  
Parallel - not connected
+
<li>Parallel - not connected  
Serial 1 - not connected
+
<li>Serial 1 - not connected  
Serial 2 - not connected
+
<li>Serial 2 - not connected  
Floppy1  - not connected but pointed to an empty floppy 1.4M image stored within the image folder
+
<li>Floppy1  - not connected but pointed to an empty floppy 1.4M image stored within the image folder
CD      - connected and    pointed to an empty iso image stored within the image folder
+
<li>CD      - connected and    pointed to an empty iso image stored within the image folder
CD2      - not connected and pointed to an empty iso image stored within the image folder
+
<li>CD2      - not connected and pointed to an empty iso image stored within the image folder
 +
</ul>
  
 
The empty ISO files for the CD and the empty image for the floppy minimized obstacles to moving the image, while still allowing flexibility on what device to have connected during the boot process.  One can adjust what is connected by using F2 during the boot process and making sure an empty image is not selected 'first' during the boot process.
 
The empty ISO files for the CD and the empty image for the floppy minimized obstacles to moving the image, while still allowing flexibility on what device to have connected during the boot process.  One can adjust what is connected by using F2 during the boot process and making sure an empty image is not selected 'first' during the boot process.
Line 74: Line 81:
 
/root/nst was the CVS sandbox.  The update to .bashrc to set up CVS worked smoothly.  The CVS checkout was satisfactory.
 
/root/nst was the CVS sandbox.  The update to .bashrc to set up CVS worked smoothly.  The CVS checkout was satisfactory.
  
I already had Java from the FC7 install.
+
I already had Java from the FC7 install.  
egrep -i jre (output of rpm -qa)
+
* egrep -i jre (output of rpm -qa)
 
jre-1.6.0_02-fcs
 
jre-1.6.0_02-fcs
  
 
One error I made was caused by an interruption.  When I returned to building NST after a hiatus of a couple of days, a new kernel had been released.  So when I tried to build NST I got messages suggesting a kernel update.  I used the FC7 package update feature and reran vmware-config-tools.pl.
 
One error I made was caused by an interruption.  When I returned to building NST after a hiatus of a couple of days, a new kernel had been released.  So when I tried to build NST I got messages suggesting a kernel update.  I used the FC7 package update feature and reran vmware-config-tools.pl.
  
The output of [[Fedora Installation Notes#Development Case Study Using VMWARE - configure output| configure]] and make package-update improved after updating the kernel.
+
The output of [[Fedora Installation Notes#Development Case Study Using VMWARE - configure output| configure]] seems clean.
  
 
My exact yum update command line entry is lost but it was something close to:
 
My exact yum update command line entry is lost but it was something close to:
yum install docbook-utils docbook-utils-pdf  ncftp php-pear
+
* yum install docbook-utils docbook-utils-pdf  ncftp php-pear
  
 
Being a newbie at building NST, the next command was [[Fedora Installation Notes# Development Case Study Using VMWARE - make package-check-url| make package-check-url]]
 
Being a newbie at building NST, the next command was [[Fedora Installation Notes# Development Case Study Using VMWARE - make package-check-url| make package-check-url]]
  
Bing 'failed' the url check.  So I edited nst/.../bing.sh and corrected the url.  ntop and php-base were more important, but the seemed like better candidates for make package-check.
+
Bing 'failed' the url check.  So I edited nst/.../bing.sh and corrected the url.  ntop and php-base were more important, but they seemed like better candidates for make package-check.  Note that nessus and metasploit are not reported as problems in the url check.
  
 
Bing succeeded in the [[Fedora Installation Notes# Development Case Study Using VMWARE - make package-update| make package-update]].
 
Bing succeeded in the [[Fedora Installation Notes# Development Case Study Using VMWARE - make package-update| make package-update]].
 +
 +
The approach to failures in package-update was:
 +
* tcl - bit of a puzzle since the binary rpm came with FC7
 +
* vmware tool - was already installed via rpm
 +
* unicornscan was expected based on  [[Building From Source#Installing Packages]]
 +
* Wireshark was already installed by FC7
 +
 +
The output of [[Fedora Installation Notes# Development Case Study Using VMWARE - make package-check| make package-check]]
 +
was a useful quality control check.
  
 
==  Development Case Study Using VMWARE - vmware-config output ==
 
==  Development Case Study Using VMWARE - vmware-config output ==
Line 2,711: Line 2,727:
 
-------------------------------------------------------------------------------
 
-------------------------------------------------------------------------------
 
make: *** [tsv-update] Error 1
 
make: *** [tsv-update] Error 1
 +
 +
 +
 +
== Development Case Study Using VMWARE - make package-check ==
 +
egrep -i fail output.of.make package-check
 +
<ul>
 +
<li>firefox (version 2.0.0.4)                                          [failed]
 +
<li>autohide (version 1.1.5)                                          [failed]
 +
<li>colorful_tabs (version 2.0.1)                                      [failed]
 +
<li>dictionarysearch (version 2.0.1)                                  [failed]
 +
<li>image_zoom (version 0.2.7)                                        [failed]
 +
<li>LinkChecker (version 0.6.1)                                        [failed]
 +
<li>long_titles (version 1.2.4)                                        [failed]
 +
<li>madwifi (version 0.9.3.2-rc1)                                      [failed]
 +
<li>metasploit (version 2.7)                                          [failed]
 +
<li>nessus (version 2.2.10)                                            [failed]
 +
<li>netw (version 5.34.0)                                              [failed]
 +
<li>ntop (version 3.3.1)                                              [failed]
 +
<li>quickrestart (version 1.1.0)                                      [failed]
 +
<li>reloadevery (version 2.0)                                          [failed]
 +
<li>snorter (version 2.1)                                              [failed]
 +
<li>tcl (version 8.4.13-16nothreads)                                  [failed]
 +
<li>tidy (version 0.8.3.9)                                            [failed]
 +
<li>vmware-tools (version 1.0.3)                                      [failed]
 +
<li>webdeveloper (version 1.1.4)                                      [failed]
 +
<li>wireshark (version 0.99.6)                                        [failed]
 +
</ul>

Latest revision as of 10:57, 22 September 2010

NOTE: This page is outdated and should no longer be used as a reference for building a NST development system. If you are interested in putting together a system for the purpose of building the NST distribution from source, please refer to the Developer Info section.

Fedora 7 Installation Notes

VMware Server

If you install VMware server onto your Fedora 7 box, you will likely need to install the any any updates. In short:

  • Install VMware Server.
  • Run the: "runme.pl" script from any any updates.

NOTE: The recommended virtual SCSI drivers in VMware Server v1.0.3 did not seem to work with the SCSI modules in Fedora 7. We ended up using the lower performance virtual ATA drivers in our setup (maybe we should have tried the virtual BusLogic adapter).

Virtual PC

Installation of Fedora 7 on a Windows box using Microsoft Virtual PC 6.0.156.0 is possible. Here are some notes:

  • Use text installation mode.
  • After the installation completes and the system reboots, the screen will come up in an unreadable state. However, you will be able to connect to the system using a ssh client (you can use: nmap -p 22 192.168.1.100-250 on a range of IP addresses to help identify the system).
  • After connecting to the system using a ssh client, add the vga=771 boot option to: "/boot/grub/grub.conf". It will look something like the following:
title Fedora (2.6.22.1-41.fc7)
        root (hd0,0)
        kernel /vmlinuz-2.6.22.1-41.fc7 ro root=/dev/VolGroup00/LogVol00 rhgb quiet vga=771
        initrd /initrd-2.6.22.1-41.fc7.img
  • Edit the file: "/etc/inittab" and set the default run level to 3.
  • Reboot the system.

At this point you should have a stable development system. You won't have a graphical desktop, but you can use a VNC desktop should you need graphical access.

NOTE: Even though the system won't have a graphical desktop started, you may still want to change the graphics driver to vesa using the following command: "system-config-display --set-driver=vesa". This way you will at least be able to see the screen if you forget and try to start X via: "init 5".

Development Case Study Using VMWARE by a newbie

I undertook a challenge to see if I could make a working NST under VMWARE. The motivation was to obtain extra functions beyond what was available in the NST 1.5 VMWARE image; e.g. gain access to the VMWARE hgfs function and add additional tools. Samba was an alternative to hgfs. But to add the additional tools I needed to build an FC image anyway. So why not just build FC7/NST under VMWARE?

I started by following the building instructions on the NST WIKI, that were developed by the primary NST developers. FC7 was built under Fusion using the "split" option for an 8GB virtual drive. The split option was chosen to make the image portable using the FAT file system.

During the FC7 install, I generally chose not to install packages that dealt with (to be filled in later).

The FC7 install proceeded smoothly. An account for nstuser was added in the installation process, in case there was a need to have a "normal" user account later on.

The patch process after the install took quite a while to complete.

After the patch process completed, VMWARE tools was installed successfully using:

  • rpm -Uvh VMwareTools-e.x.p-51348.i386.rpm

And then configured by executing:

  • vmware-config-tools.pl.

The configuration output can be found at vmware config output.

As the subsequent NST creation steps unfolded, the VMWARE image was moved back and forth using an 8GB flash drive. The movement from Fusion was to VMPLAYER running under SUSE 10.x. This provided initial validation that the image had, at minimum, some portability. Fusion was still needed to tweak the "settings." After some tweaking, the following "settings" configuration was used:

  • 3 NICs
  • eth0 - NATed to be used as the NST management interface
  • eth1 - custom to be used as a promiscuous interface
  • eth2 - host to be assigned for future use
  • Parallel - not connected
  • Serial 1 - not connected
  • Serial 2 - not connected
  • Floppy1 - not connected but pointed to an empty floppy 1.4M image stored within the image folder
  • CD - connected and pointed to an empty iso image stored within the image folder
  • CD2 - not connected and pointed to an empty iso image stored within the image folder

The empty ISO files for the CD and the empty image for the floppy minimized obstacles to moving the image, while still allowing flexibility on what device to have connected during the boot process. One can adjust what is connected by using F2 during the boot process and making sure an empty image is not selected 'first' during the boot process.


Now it was time to get the NST configuration via CVS.

/root/nst was the CVS sandbox. The update to .bashrc to set up CVS worked smoothly. The CVS checkout was satisfactory.

I already had Java from the FC7 install.

  • egrep -i jre (output of rpm -qa)

jre-1.6.0_02-fcs

One error I made was caused by an interruption. When I returned to building NST after a hiatus of a couple of days, a new kernel had been released. So when I tried to build NST I got messages suggesting a kernel update. I used the FC7 package update feature and reran vmware-config-tools.pl.

The output of configure seems clean.

My exact yum update command line entry is lost but it was something close to:

  • yum install docbook-utils docbook-utils-pdf ncftp php-pear

Being a newbie at building NST, the next command was make package-check-url

Bing 'failed' the url check. So I edited nst/.../bing.sh and corrected the url. ntop and php-base were more important, but they seemed like better candidates for make package-check. Note that nessus and metasploit are not reported as problems in the url check.

Bing succeeded in the make package-update.

The approach to failures in package-update was:

  • tcl - bit of a puzzle since the binary rpm came with FC7
  • vmware tool - was already installed via rpm
  • unicornscan was expected based on Building From Source#Installing Packages
  • Wireshark was already installed by FC7

The output of make package-check was a useful quality control check.

Development Case Study Using VMWARE - vmware-config output

Stopping VMware Tools services in the virtual machine:

  Guest operating system daemon:                          [  OK  ]
  Blocking file system:                                   [  OK  ]
  Unmounting HGFS shares:                                 [  OK  ]
  Guest filesystem driver:                                [  OK  ]
  Guest memory manager:                                   [  OK  ]

Shutting down interface eth0: [ OK ] Shutting down interface eth2: [ OK ] Shutting down loopback interface: [ OK ]

  Guest vmxnet fast network device:                       [  OK  ]

Trying to find a suitable vmmemctl module for your running kernel.

None of the pre-built vmmemctl modules for VMware Tools is suitable for your running kernel. Do you want this program to try to build the vmmemctl module for your system (you need to have a C compiler installed on your system)? [yes]

Using compiler "/usr/bin/gcc". Use environment variable CC to override.

What is the location of the directory of C header files that match your running kernel? [/lib/modules/2.6.22.4-65.fc7/build/include]

Extracting the sources of the vmmemctl module.

Building the vmmemctl module.

Using 2.6.x kernel build system. make: Entering directory `/tmp/vmware-config1/vmmemctl-only' make -C /lib/modules/2.6.22.4-65.fc7/build/include/.. SUBDIRS=$PWD SRCROOT=$PWD/. modules make[1]: Entering directory `/usr/src/kernels/2.6.22.4-65.fc7-i686'

 CC [M]  /tmp/vmware-config1/vmmemctl-only/os.o
 SHIPPED /tmp/vmware-config1/vmmemctl-only/vmmemctl1.o
 LD [M]  /tmp/vmware-config1/vmmemctl-only/vmmemctl.o
 Building modules, stage 2.
 MODPOST 1 modules

WARNING: could not find /tmp/vmware-config1/vmmemctl-only/.vmmemctl1.o.cmd for /tmp/vmware-config1/vmmemctl-only/vmmemctl1.o

 CC      /tmp/vmware-config1/vmmemctl-only/vmmemctl.mod.o
 LD [M]  /tmp/vmware-config1/vmmemctl-only/vmmemctl.ko

make[1]: Leaving directory `/usr/src/kernels/2.6.22.4-65.fc7-i686' cp -f vmmemctl.ko ./../vmmemctl.o make: Leaving directory `/tmp/vmware-config1/vmmemctl-only' The module loads perfectly in the running kernel.

Extracting the sources of the vmhgfs module.

Building the vmhgfs module.

Using 2.6.x kernel build system. make: Entering directory `/tmp/vmware-config1/vmhgfs-only' make -C /lib/modules/2.6.22.4-65.fc7/build/include/.. SUBDIRS=$PWD SRCROOT=$PWD/. modules make[1]: Entering directory `/usr/src/kernels/2.6.22.4-65.fc7-i686'

 CC [M]  /tmp/vmware-config1/vmhgfs-only/backdoor.o
 CC [M]  /tmp/vmware-config1/vmhgfs-only/backdoorGcc32.o
 CC [M]  /tmp/vmware-config1/vmhgfs-only/bdhandler.o
 CC [M]  /tmp/vmware-config1/vmhgfs-only/cpName.o
 CC [M]  /tmp/vmware-config1/vmhgfs-only/cpNameLinux.o
 CC [M]  /tmp/vmware-config1/vmhgfs-only/cpNameLite.o
 CC [M]  /tmp/vmware-config1/vmhgfs-only/dbllnklst.o
 CC [M]  /tmp/vmware-config1/vmhgfs-only/dentry.o
 CC [M]  /tmp/vmware-config1/vmhgfs-only/dir.o
 CC [M]  /tmp/vmware-config1/vmhgfs-only/eventManager.o
 CC [M]  /tmp/vmware-config1/vmhgfs-only/file.o
 CC [M]  /tmp/vmware-config1/vmhgfs-only/filesystem.o
 CC [M]  /tmp/vmware-config1/vmhgfs-only/fsutil.o
 CC [M]  /tmp/vmware-config1/vmhgfs-only/hgfsBd.o
 CC [M]  /tmp/vmware-config1/vmhgfs-only/hgfsUtil.o
 CC [M]  /tmp/vmware-config1/vmhgfs-only/inode.o
 CC [M]  /tmp/vmware-config1/vmhgfs-only/kernelStubsLinux.o
 CC [M]  /tmp/vmware-config1/vmhgfs-only/link.o
 CC [M]  /tmp/vmware-config1/vmhgfs-only/message.o
 CC [M]  /tmp/vmware-config1/vmhgfs-only/module.o
 CC [M]  /tmp/vmware-config1/vmhgfs-only/page.o
 CC [M]  /tmp/vmware-config1/vmhgfs-only/request.o
 CC [M]  /tmp/vmware-config1/vmhgfs-only/rpcin.o
 CC [M]  /tmp/vmware-config1/vmhgfs-only/rpcout.o
 CC [M]  /tmp/vmware-config1/vmhgfs-only/staticEscape.o
 CC [M]  /tmp/vmware-config1/vmhgfs-only/stubs.o
 CC [M]  /tmp/vmware-config1/vmhgfs-only/super.o
 LD [M]  /tmp/vmware-config1/vmhgfs-only/vmhgfs.o
 Building modules, stage 2.
 MODPOST 1 modules
 CC      /tmp/vmware-config1/vmhgfs-only/vmhgfs.mod.o
 LD [M]  /tmp/vmware-config1/vmhgfs-only/vmhgfs.ko

make[1]: Leaving directory `/usr/src/kernels/2.6.22.4-65.fc7-i686' cp -f vmhgfs.ko ./../vmhgfs.o make: Leaving directory `/tmp/vmware-config1/vmhgfs-only' The module loads perfectly in the running kernel.

pcnet32 35781 0 Unloading pcnet32 module

Extracting the sources of the vmxnet module.

Building the vmxnet module.

Using 2.6.x kernel build system. make: Entering directory `/tmp/vmware-config1/vmxnet-only' make -C /lib/modules/2.6.22.4-65.fc7/build/include/.. SUBDIRS=$PWD SRCROOT=$PWD/. modules make[1]: Entering directory `/usr/src/kernels/2.6.22.4-65.fc7-i686'

 CC [M]  /tmp/vmware-config1/vmxnet-only/vmxnet.o
 Building modules, stage 2.
 MODPOST 1 modules
 CC      /tmp/vmware-config1/vmxnet-only/vmxnet.mod.o
 LD [M]  /tmp/vmware-config1/vmxnet-only/vmxnet.ko

make[1]: Leaving directory `/usr/src/kernels/2.6.22.4-65.fc7-i686' cp -f vmxnet.ko ./../vmxnet.o make: Leaving directory `/tmp/vmware-config1/vmxnet-only' The module loads perfectly in the running kernel.

Extracting the sources of the vmblock module.

Building the vmblock module.

Using 2.6.x kernel build system. make: Entering directory `/tmp/vmware-config1/vmblock-only' make -C /lib/modules/2.6.22.4-65.fc7/build/include/.. SUBDIRS=$PWD SRCROOT=$PWD/. modules make[1]: Entering directory `/usr/src/kernels/2.6.22.4-65.fc7-i686'

 CC [M]  /tmp/vmware-config1/vmblock-only/linux/block.o
 CC [M]  /tmp/vmware-config1/vmblock-only/linux/control.o
 CC [M]  /tmp/vmware-config1/vmblock-only/linux/dbllnklst.o
 CC [M]  /tmp/vmware-config1/vmblock-only/linux/dentry.o
 CC [M]  /tmp/vmware-config1/vmblock-only/linux/file.o
 CC [M]  /tmp/vmware-config1/vmblock-only/linux/filesystem.o
 CC [M]  /tmp/vmware-config1/vmblock-only/linux/inode.o
 CC [M]  /tmp/vmware-config1/vmblock-only/linux/module.o
 CC [M]  /tmp/vmware-config1/vmblock-only/linux/stubs.o
 CC [M]  /tmp/vmware-config1/vmblock-only/linux/super.o
 LD [M]  /tmp/vmware-config1/vmblock-only/vmblock.o
 Building modules, stage 2.
 MODPOST 1 modules
 CC      /tmp/vmware-config1/vmblock-only/vmblock.mod.o
 LD [M]  /tmp/vmware-config1/vmblock-only/vmblock.ko

make[1]: Leaving directory `/usr/src/kernels/2.6.22.4-65.fc7-i686' cp -f vmblock.ko ./../vmblock.o make: Leaving directory `/tmp/vmware-config1/vmblock-only' The module loads perfectly in the running kernel.

[EXPERIMENTAL] The Virtual Machine Communication Interface (VMCI) service provides a new communication capability with the Host, primarily for development at the moment. Would you like to enable this feature? [no]


Detected X.org version 1.3.


No drivers for X.org version: 1.3.


Do you want to change the display size that X starts with? (yes/no) [no]

Starting VMware Tools services in the virtual machine:

  Switching to guest configuration:                       [  OK  ]
  Guest filesystem driver:                                [  OK  ]
  Mounting HGFS shares:                                   [  OK  ]
  Guest memory manager:                                   [  OK  ]
  Guest vmxnet fast network device:                       [  OK  ]
  Blocking file system:                                   [  OK  ]
  DMA setup:                                              [  OK  ]
  Guest operating system daemon:                          [  OK  ]

The configuration of VMware Tools e.x.p build-51348 for Linux for this running kernel completed successfully.

You must restart your X session before any mouse or graphics changes take effect.

You can now run VMware Tools by invoking the following command: "/usr/bin/vmware-toolbox" during an X server session.

To use the vmxnet driver, restart networking using the following commands: /etc/init.d/network stop rmmod pcnet32 rmmod vmxnet modprobe vmxnet /etc/init.d/network start

To make use of the virtual printer, you will need to restart the CUPS service

If you wish to configure any experimental features, please run the following command: "vmware-config-tools.pl --experimental".

Enjoy,

--the VMware team


Development Case Study Using VMWARE - configure output

Creating .at files from XML under include/atmacros [ OK ] Creating initial build information scripts [ OK ] Creating stub manifest file [ OK ] Generating: "./config/yum.conf" [ OK ] Generating: "./config/rpm-check.sh" [ OK ] Generating: "./config/nstscriptdocbook2html.xsl" [ OK ] Verifying that NST scripts are up to date:

 Verify/build: "getipaddr"                                [  OK  ]
 Verify/build: "lddcheck"                                 [  OK  ]
 Verify/build: "nstcert"                                  [  OK  ]
 Verify/build: "nstnewscript"                             [  OK  ]
 Verify/build: "urlcache"                                 [  OK  ]

Verified: "5" of "5" scripts [ OK ]

Configuration is complete. Configured as:

                ARCHEXT:
                   ARCH: i686
              BUILDROOT: /usr/local/src
                 CFGDIR: /root/.nst
            DOCBOOK_XSL: file:///usr/local/src/docbook-xsl/docbook-xsl-1.73.0
                 DSTDIR: /root/nst/tmp
                  FCVER: 7
        GET_IP_ADDR_URL: http://nst.sourceforge.net/nst/cgi-bin/ip.cgi http://www.networksecuritytoolkit.org/nst/cgi-bin/ip.cgi http://whatismyip.org/
                HTMLDIR: /root/nst/tmp/public_html
              JAVA_HOME: /usr/java/jre1.6.0_02
                   JAVA: /usr/java/jre1.6.0_02/bin/java
                KERTYPE: i686
                 KERVER: 2.6.22.4-65.fc7
                LIBARCH: lib
          MACRO_OPTIONS: -debug 2
                NSTBOOT: desktop
      NSTCOMPRESSED_ISO: true
    NSTCTGPSDRIVEPASSWD: ******
       NSTCTMYSQLPASSWD: ******
            NSTCTPASSWD: ******
  NSTCTPOSTGRESQLPASSWD: ******
       NSTCTSNORTPASSWD: ******
          NSTDOMAINNAME: localdomain
           NSTHDDATADIR: /var/nst
            NSTHOSTNAME: probe
          NSTHWCLOCKUTC: false
   NST_INITRD_USES_CPIO: true
       NSTLIVECDDATADIR: /mnt/ram4
              NSTPASSWD: ******
       NSTPASSWD_PROMPT: true
       NSTPHRASE_PROMPT: false
            NSTSTRIPPED: true
            NSTTIMEZONE: America/New_York
           ON_LINE_DOCS: false
           PACKAGES_TSV: packages.tsv
                PKGCATS: boot boot2 bootnet system time printing db x gnome server development php java applications networking wireless dockapps recovery sound
                 SFUSER:
       SNORTRSCACHENAME: snort_rs_cache
    SOURCE_FORGE_MIRROR: http://easynews.dl.sourceforge.net/sourceforge
         WEBHOST_DOMAIN:
           WEBHOST_USER:

Use "make" to build src/nst-1.7.0.iso.gz, or "make help" to see additional targets.

NOTE: You may want to run "make package-update" to update MANY of the packages needed for the NST. You can then run "make package-check" to see what is left to do by hand (there are many helper scripts under "src/bin" to aid in the package install/update process).


Development Case Study Using VMWARE - make package-check-url

firefox (version 2.0.0.4) [ok] Image_Canvas (version 0.3.0) [ok] Image_Color (version 1.0.2) [ok] Image_Graph (version 0.7.2) [ok] Log (version 1.9.11) [ok] Mime_Type_Editor (version 0.2) [skip] Numbers_Roman (version 0.2.0) [ok] Numbers_Words (version 0.15.0) [ok] add_n_edit_cookies (version 0.2.1.1) [skip] amap (version 5.2) [ok] argus (version 3.4) [ok] aumix (version 2.8) [ok] autohide (version 1.1.5) [ok] bandwidthd (version 2.0.1) [ok] barnyard (version 0.2.0) [ok] bing (version 1.3.5) [failed]

 http://fgouget.free.fr/bing/bing_src-1.3.5.tar.gz

c3270 (version 3.3.4p8) [ok] cfdisk (version 0.9.4) [ok] chntpw (version 0.0.20040818) [ok] colorful_tabs (version 2.0.1) [unknown]

 https://addons.mozilla.org/en-US/firefox/downloads/file/14127/colorfultabs-2.0.1-firefox.xpi

cputnik (version 0.2.0) [ok] cryptcat (version 1.2.1) [ok] dd_rescue (version 1.12) [ok] dd_rhelp (version 0.0.6) [ok] dictionarysearch (version 2.0.1) [ok] dmidecode (version 2.8) [ok] domTT (version 0.7.3) [ok] e1000 (version 7.6.5) [ok] elinks (version 0.11.2) [ok] etherape (version 0.9.7) [ok] etherwake (version 1.09) [ok] ettercap (version 0.7.3) [ok] firewalk (version 5.0) [failed]

 http://www.packetfactory.net/projects/firewalk

fragroute (version 1.2) [ok] fruity (version 1.0-rc1) [ok] fwbuilder (version 2.1.13) [ok] fwbuilder-ipf (version 2.1.13) [ok] fwbuilder-ipfw (version 2.1.13) [ok] fwbuilder-ipt (version 2.1.13) [ok] fwbuilder-pf (version 2.1.13) [ok] gkismet (version 0.0.10) [ok] gkrellkam (version 2.0.0) [ok] gpsbabel (version 1.3.3) [ok] gpsdrive (version 2.10pre2) [ok] hammerhead (version 2.1.3) [ok] honeyd (version 1.5b) [ok] hydra (version 5.4) [ok] ifgraph (version 0.4.10) [ok] image_zoom (version 0.2.7) [ok] inprotect (version 0.22.05) [ok] iperf (version 2.0.2) [ok] ipmitool (version 1.8.9) [ok] ipsc (version 0.4.3) [ok] ipsec-tools (version 0.6.6) [ok] jakarta-jmeter (version 2.2) [ok] jikes (version 1.22) [ok] jpgraph (version 2.2) [ok] jre (version 1.6.0_02) [ok] kismet (version 2007.01.R1b) [ok] libdnsres (version 0.1a) [ok] libfwbuilder (version 2.1.13) [ok] libfwbuilder-devel (version 2.1.13) [ok] libssh (version 0.11) [ok] lilo (version 22.6) [ok] LinkChecker (version 0.6.1) [failed]

 https://addons.mozilla.org/firefox/532

linux-wlan-ng (version 0.2.7) [skip] long_titles (version 1.2.4) [ok] madwifi (version 0.9.3.2-rc1) [ok] mapscsi (version 0.0.11) [skip] mbrowse (version 0.3.1) [ok] metasploit (version 2.7) [ok] mpt-status (version 1.2.0) [skip] mysqltcl (version 3.02) [ok] ncat (version 0.10rc3) [skip] ndiswrapper (version 1.47) [ok] nemesis (version 1.4) [ok] nessus (version 2.2.10) [ok] netw (version 5.34.0) [ok] nikto (version 1.36) [ok] niktorat (version 1.0) [ok] nload (version 0.6.0) [ok] nmbscan (version 1.2.4) [ok] ntop (version 3.3.1) [unknown]

 https://svn.ntop.org/svn/ntop/trunk/ntop

nttcp (version 1.47) [ok] oinkmaster (version 2.0) [ok] p0f (version 2.0.8) [ok] packETH (version 1.3) [ok] partimage (version 0.6.5_beta3) [ok] php-base (version 1.3.6) [failed]

 http://secureideas.sourceforge.net/

phpMyAdmin (version 2.9.2) [ok] phpPgAdmin (version 4.1) [ok] phpSysInfo (version 2.5.3) [ok] pr3287 (version 3.3.4) [ok] puttywx (version 0.60) [ok] pwgen (version 2.05) [ok] quickrestart (version 1.1.0) [failed]

 https://addons.mozilla.org/firefox/3559

quicktables (version 2.3) [ok] rdesktop (version 1.5.0) [ok] reloadevery (version 2.0) [ok] sguil (version 0.6.1) [ok] secure_delete (version 3.1) [ok] sk98lin (version 8.41.2.3) [skip] smtpclient (version 1.0.0) [ok] snort (version 2.7.0.1) [ok] snort_inline (version 2.7.0.1) [ok] snort-mysql (version 2.7.0.1) [ok] snort-rules (version 2.4) [ok] snorter (version 2.1) [ok] snortslinger (version 1.3) [ok] tcl (version 8.4.13-16nothreads) [ok] tcpflow (version 0.21) [ok] tcping (version 1.3.4) [ok] tcpreen (version 1.4.3) [failed]

 http://www.simphalempin.com/dev/tcpreen/

tcpspray (version 1.1a) [ok] tcpstat (version 1.5) [failed]

 http://www.frenchfries.net/paul/tcpstat/

tcptrace (version 6.6.7) [ok] tcptraceroute (version 1.5beta7) [ok] tcptrack (version 1.2.0) [ok] tidy (version 0.8.3.9) [ok] tightvnc (version 1.3.8) [ok] tightvncwx (version 1.3.8) [ok] unicornscan (version 0.4.2) [ok] vmware-modules (version 1.0.3) [failed]

 http://nst.sourceforge.net/devel/vmware/vmware-modules-2.6.22.4-65.fc7.i686.tar.gz

vmware-tools (version 1.0.3) [failed]

 http://nst.sourceforge.net/devel/vmware/vmware-tools-2.6.22.4-65.fc7.i686.tar.gz

webdeveloper (version 1.1.4) [unknown]

 https://addons.mozilla.org/en-US/firefox/downloads/file/16347/web_developer-1.1.4-fx+fl.xpi

weplab (version 0.1.5) [ok] wipe (version 2.2.0) [ok] wireless-tools (version 28-1) [ok] wireshark (version 0.99.6) [ok] wmcpuload (version 1.0.1) [ok] wmfire (version 1.2.3) [ok] wmifinfo (version 0.09) [ok] wmlaptop (version 1.4) [skip] wmmemload (version 0.1.6) [failed]

 http://www.markstaggs.net/cgi-bin/newindex.pl?page=wmmemload

wmnd (version 0.4.11) [failed]

 http://www.yuv.info/wmnd/

wmsm (version 0.2.1) [ok] wmweather+ (version 2.9) [ok] make: *** [package-check-url] Error 1


Development Case Study Using VMWARE - make package-update

Checking to see if any packages need to be installed...

All packages appear to be installed.

Checking for package updates... Setting up Update Process fedora 100% |=========================| 2.1 kB 00:00 primary.sqlite.bz2 100% |=========================| 3.8 MB 00:03 updates 100% |=========================| 1.9 kB 00:00 Could not find update match for pcre-devel Could not find update match for kernel-devel Could not find update match for e2fsprogs-devel Could not find update match for libnet-devel Could not find update match for gettext-devel Could not find update match for docbook-style-xsl Could not find update match for docbook-utils-pdf Could not find update match for mysql-devel Could not find update match for gcc Could not find update match for texinfo-tex Could not find update match for ncftp Could not find update match for libdnet Could not find update match for subversion Could not find update match for kernel-headers Could not find update match for rrdtool-devel Could not find update match for emacs Could not find update match for WindowMaker-devel Could not find update match for lcms-devel Could not find update match for libpcap-devel Could not find update match for zisofs-tools Could not find update match for flex Could not find update match for ncurses-devel Could not find update match for tcl-devel Could not find update match for emacs-common Could not find update match for gnome-panel Could not find update match for WindowMaker Could not find update match for iptables-devel Could not find update match for libtool Could not find update match for libdnet-devel Could not find update match for autogen-devel Could not find update match for gkrellm-devel Could not find update match for docbook-utils Could not find update match for php-pear Could not find update match for parted-devel Could not find update match for gcc-c++ Could not find update match for qt-devel Could not find update match for cvs Could not find update match for bison Could not find update match for rpm-build Could not find update match for lcms No Packages marked for Update/Obsoletion

Checking to see if any packages need to be installed...

Checking to see if any packages need to be installed...

 Need to install: unrar

Downloading and installing required packages... Setting up Install Process Parsing package install arguments Nothing to do

Checking for package updates... Setting up Update Process Could not find update match for esound-libs Could not find update match for busybox Could not find update match for iputils Could not find update match for xorg-x11-fonts-base Could not find update match for tclx Could not find update match for gd Could not find update match for x3270-x11 Could not find update match for php-pgsql Could not find update match for libAfterImage Could not find update match for gdbm Could not find update match for libpurple Could not find update match for xorg-x11-drv-magictouch Could not find update match for postgresql-libs Could not find update match for giflib Could not find update match for rpm-devel Could not find update match for tk Could not find update match for nagios-plugins-snmp Could not find update match for bzip2-libs Could not find update match for nagios-plugins-flexlm Could not find update match for unzip Could not find update match for nagios-plugins-dns Could not find update match for xorg-x11-font-utils Could not find update match for gtk2 Could not find update match for libgnomecups Could not find update match for gtk+ Could not find update match for gnutls Could not find update match for apmd Could not find update match for nagios-plugins-breeze Could not find update match for ghostscript Could not find update match for iproute Could not find update match for xorg-x11-drv-i128 Could not find update match for xorg-x11-fonts-Type1 Could not find update match for gtkspell Could not find update match for libid3tag Could not find update match for libXcursor-devel Could not find update match for xorg-x11-drv-digitaledge Could not find update match for ttmkfdir Could not find update match for xorg-x11-drv-dummy Could not find update match for a2ps Could not find update match for findutils Could not find update match for parted Could not find update match for aircrack-ng Could not find update match for bind-libs Could not find update match for dosfstools Could not find update match for pygobject2 Could not find update match for fetchmail Could not find update match for libtermcap Could not find update match for perl-File-Tail Could not find update match for libxslt Could not find update match for system-config-display Could not find update match for mktemp Could not find update match for iwlwifi-firmware Could not find update match for pycairo Could not find update match for keyutils-libs Could not find update match for elfutils Could not find update match for imlib-devel Could not find update match for libgpg-error Could not find update match for libgnomeprintui22 Could not find update match for mkinitrd Could not find update match for reiserfs-utils Could not find update match for xorg-x11-drv-ast Could not find update match for nagios-plugins-ircd Could not find update match for gkrellm-wifi Could not find update match for php-gd Could not find update match for nagios-plugins-mailq Could not find update match for nagios-plugins-disk Could not find update match for xorg-x11-drv-glint Could not find update match for vnc-server Could not find update match for xorg-x11-fonts-75dpi Could not find update match for fluxbox Could not find update match for pidgin Could not find update match for gawk Could not find update match for libao-devel Could not find update match for gpsd Could not find update match for libxslt-devel Could not find update match for vnc-libs Could not find update match for libbonoboui-devel Could not find update match for xorg-x11-drv-cirrus Could not find update match for xpdf Could not find update match for libgnomeui Could not find update match for nagios-plugins Could not find update match for libIDL Could not find update match for bind-utils Could not find update match for e2fsprogs-libs Could not find update match for xorg-x11-drv-s3virge Could not find update match for usermode-gtk Could not find update match for librsvg2 Could not find update match for php-mbstring Could not find update match for kudzu Could not find update match for gdome2-devel Could not find update match for clamav-data Could not find update match for libXxf86vm-devel Could not find update match for ntfs-3g Could not find update match for file-libs Could not find update match for python-libs Could not find update match for apr-devel Could not find update match for xorg-x11-drv-mutouch Could not find update match for avahi-glib Could not find update match for gnome-vfs2-devel Could not find update match for mysql-devel Could not find update match for httpd Could not find update match for perl-IO-Socket-INET6 Could not find update match for gmp-devel Could not find update match for zip Could not find update match for tsclient Could not find update match for nagios-plugins-dig Could not find update match for startup-notification Could not find update match for perl Could not find update match for tzdata Could not find update match for libgnomeprint22 Could not find update match for dhcpv6_client Could not find update match for vim-enhanced Could not find update match for nagios-plugins-nwstat Could not find update match for nagios-plugins-ups Could not find update match for squid Could not find update match for vconfig Could not find update match for chkrootkit Could not find update match for nagios-plugins-procs Could not find update match for libtool-ltdl-devel Could not find update match for libICE Could not find update match for tcllib Could not find update match for perl-MIME-Lite Could not find update match for sysfsutils Could not find update match for postgresql Could not find update match for php-pear Could not find update match for mc Could not find update match for ed Could not find update match for setup Could not find update match for libXpm-devel Could not find update match for krb5-devel Could not find update match for airsnort Could not find update match for gamin-devel Could not find update match for compat-libstdc++-33 Could not find update match for libidn-devel Could not find update match for lcms Could not find update match for xorg-x11-drv-chips Could not find update match for iptables Could not find update match for sqlite Could not find update match for xsri Could not find update match for tar Could not find update match for distcache-devel Could not find update match for clamav-lib Could not find update match for neon-devel Could not find update match for imlib Could not find update match for openssl Could not find update match for libcroco-devel Could not find update match for logrotate Could not find update match for cyrus-sasl Could not find update match for gnome-libs Could not find update match for openldap-devel Could not find update match for xorg-x11-drv-vesa Could not find update match for gnome-vfs2 Could not find update match for glibc-devel Could not find update match for mod_ssl Could not find update match for xprobe2 Could not find update match for alsa-lib Could not find update match for libdnet Could not find update match for libgsf-devel Could not find update match for libgnomeui-devel Could not find update match for rhpl Could not find update match for ntfsprogs Could not find update match for xorg-x11-drv-void Could not find update match for caching-nameserver Could not find update match for perl-Crypt-SSLeay Could not find update match for xorg-x11-drv-hyperpen Could not find update match for man Could not find update match for zlib-devel Could not find update match for glib2 Could not find update match for ipw2100-firmware Could not find update match for w3c-libwww-devel Could not find update match for nagios-plugins-mrtgtraf Could not find update match for bind Could not find update match for libxkbfile Could not find update match for libwmf-devel Could not find update match for xorg-x11-drv-tdfx Could not find update match for libXfixes-devel Could not find update match for pciutils Could not find update match for talk Could not find update match for libao Could not find update match for openssh-clients Could not find update match for libuser Could not find update match for xorg-x11-drv-s3 Could not find update match for itk Could not find update match for perl-MailTools Could not find update match for perl-libs Could not find update match for acpid Could not find update match for libIDL-devel Could not find update match for kbd Could not find update match for clamav-devel Could not find update match for xorg-x11-drv-jamstudio Could not find update match for xorg-x11-drv-voodoo Could not find update match for rhpxl Could not find update match for zabbix-agent Could not find update match for gdome2 Could not find update match for xorg-x11-apps Could not find update match for libXxf86dga Could not find update match for util-linux Could not find update match for tmpwatch Could not find update match for clamav-update Could not find update match for nagios-plugins-smtp Could not find update match for ncftp Could not find update match for mysql-server Could not find update match for gdbm-devel Could not find update match for gdk-pixbuf Could not find update match for libmng-devel Could not find update match for mesa-libGLU Could not find update match for libSM Could not find update match for nmap Could not find update match for libpaper Could not find update match for squashfs-tools Could not find update match for python Could not find update match for libidn Could not find update match for libXxf86misc Could not find update match for pango Could not find update match for nagios-plugins-load Could not find update match for dhclient Could not find update match for aspell Could not find update match for xorg-x11-drv-i740 Could not find update match for sqlite-devel Could not find update match for nspr Could not find update match for libjpeg Could not find update match for awstats Could not find update match for gnome-libs-devel Could not find update match for ConsoleKit-libs Could not find update match for psmisc Could not find update match for net-snmp-libs Could not find update match for wodim Could not find update match for net-snmp-devel Could not find update match for nagios-plugins-perl Could not find update match for cairo Could not find update match for audit-libs Could not find update match for cyrus-sasl-devel Could not find update match for gpm-devel Could not find update match for libgcc Could not find update match for expect Could not find update match for sox Could not find update match for tcpreplay Could not find update match for libXxf86dga-devel Could not find update match for aterm Could not find update match for libXfontcache-devel Could not find update match for nss Could not find update match for bzip2-devel Could not find update match for poppler Could not find update match for libXtst-devel Could not find update match for tcltls Could not find update match for libXScrnSaver-devel Could not find update match for xorg-x11-drv-nsc Could not find update match for postgresql-odbc Could not find update match for dhcp Could not find update match for libXfont-devel Could not find update match for xorg-x11-drv-palmax Could not find update match for sendmail Could not find update match for ntp Could not find update match for sharutils Could not find update match for fping Could not find update match for nagios-plugins-dummy Could not find update match for rdate Could not find update match for gutenprint Could not find update match for xorg-x11-drv-savage Could not find update match for usermode Could not find update match for libbonoboui Could not find update match for bash Could not find update match for glibc-common Could not find update match for libXt-devel Could not find update match for xorg-x11-fonts-ISO8859-1-75dpi Could not find update match for xorg-x11-drv-aiptek Could not find update match for tcp_wrappers-libs Could not find update match for openssh Could not find update match for xorg-x11-drv-neomagic Could not find update match for atk Could not find update match for alsa-utils Could not find update match for adns-devel Could not find update match for nagios-plugins-tcp Could not find update match for openldap Could not find update match for tcpick Could not find update match for mt-st Could not find update match for tftp-server Could not find update match for nagios-plugins-sensors Could not find update match for nagios-plugins-time Could not find update match for ImageMagick Could not find update match for libxml2-devel Could not find update match for t1lib Could not find update match for nedit Could not find update match for avahi-glib-devel Could not find update match for testdisk Could not find update match for tcp_wrappers Could not find update match for pam_smb Could not find update match for rpcbind Could not find update match for mtools Could not find update match for pygtk2 Could not find update match for ORBit-devel Could not find update match for bootparamd Could not find update match for cups Could not find update match for sysvinit Could not find update match for lockdev-devel Could not find update match for gpm Could not find update match for php Could not find update match for gkrellm-daemon Could not find update match for xorg-x11-drv-apm Could not find update match for php-mysql Could not find update match for jed Could not find update match for urw-fonts Could not find update match for john Could not find update match for gkrellm Could not find update match for NetworkManager-glib Could not find update match for dbus Could not find update match for graphviz-devel Could not find update match for lrzsz Could not find update match for nagios-plugins-wave Could not find update match for psutils Could not find update match for ipsec-tools Could not find update match for hdparm Could not find update match for libcap-devel Could not find update match for libevent Could not find update match for xorg-x11-fonts-ISO8859-2-75dpi Could not find update match for libdnet-devel Could not find update match for cups-libs Could not find update match for beecrypt Could not find update match for perl-HTML-Parser Could not find update match for unix2dos Could not find update match for grep Could not find update match for ttcp Could not find update match for tree Could not find update match for libart_lgpl-devel Could not find update match for GConf2-devel Could not find update match for sed Could not find update match for php-bcmath Could not find update match for gnupg Could not find update match for xorg-x11-drv-mouse Could not find update match for xorg-x11-drv-cyrix Could not find update match for setserial Could not find update match for libXfontcache Could not find update match for libXinerama-devel Could not find update match for libcroco Could not find update match for ORBit Could not find update match for vte Could not find update match for perl-DBD-MySQL Could not find update match for libart_lgpl Could not find update match for ypbind Could not find update match for traceroute Could not find update match for slang-devel Could not find update match for dbus-glib Could not find update match for crontabs Could not find update match for xorg-x11-drv-v4l Could not find update match for net-snmp Could not find update match for gkrellm-hddtemp Could not find update match for vixie-cron Could not find update match for which Could not find update match for avahi-compat-howl Could not find update match for libcap Could not find update match for hal-libs Could not find update match for samba-client Could not find update match for xorg-x11-drv-citron Could not find update match for vnc Could not find update match for cracklib-dicts Could not find update match for passwd Could not find update match for quota Could not find update match for nagios-plugins-ldap Could not find update match for libdrm-devel Could not find update match for libwnck Could not find update match for xorg-x11-utils Could not find update match for rpm-libs Could not find update match for hesiod-devel Could not find update match for eject Could not find update match for perl-Net-SNMP Could not find update match for strace Could not find update match for libbonobo Could not find update match for php-adodb Could not find update match for libusb Could not find update match for librsvg2-devel Could not find update match for libusb-devel Could not find update match for gtkterm Could not find update match for libX11-devel Could not find update match for xorg-x11-twm Could not find update match for libgpg-error-devel Could not find update match for mesa-libGL Could not find update match for ipvsadm Could not find update match for xorg-x11-drv-i810 Could not find update match for libtirpc Could not find update match for php-pdo Could not find update match for elfutils-devel Could not find update match for popt Could not find update match for nagios-plugins-pgsql Could not find update match for ImageMagick-devel Could not find update match for sudo Could not find update match for finger-server Could not find update match for xorg-x11-drv-summa Could not find update match for fontconfig Could not find update match for openldap-clients Could not find update match for libXtst Could not find update match for unixODBC-devel Could not find update match for krb5-workstation Could not find update match for nagios-plugins-nagios Could not find update match for libsepol-devel Could not find update match for lm_sensors Could not find update match for libgtop2-devel Could not find update match for ethtool Could not find update match for freetype Could not find update match for libX11 Could not find update match for cpio Could not find update match for pyxf86config Could not find update match for nmap-frontend Could not find update match for graphviz Could not find update match for libdaemon Could not find update match for db4 Could not find update match for procmail Could not find update match for net-snmp-utils Could not find update match for qt Could not find update match for xlockmore Could not find update match for libXfont Could not find update match for libvorbis-devel Could not find update match for nagios-plugins-fping Could not find update match for xorg-x11-drv-tek4957 Could not find update match for krb5-libs Could not find update match for zabbix Could not find update match for net-tools Could not find update match for libgnome-devel Could not find update match for libvorbis Could not find update match for kernel Could not find update match for pcre-devel Could not find update match for dump Could not find update match for adjtimex Could not find update match for openssh-askpass Could not find update match for nagios-plugins-ping Could not find update match for mysql-libs Could not find update match for postgresql-server Could not find update match for gftp Could not find update match for libXres Could not find update match for MySQL-python Could not find update match for pygtk2-libglade Could not find update match for mysql-connector-odbc Could not find update match for mdadm Could not find update match for mailcap Could not find update match for lm_sensors-devel Could not find update match for nagios-plugins-nt Could not find update match for hwdata Could not find update match for ORBit2 Could not find update match for device-mapper Could not find update match for adns-progs Could not find update match for libgnome Could not find update match for finger Could not find update match for perl-DateManip Could not find update match for libpng Could not find update match for lesstif Could not find update match for screen Could not find update match for GeoIP Could not find update match for nagios-plugins-mrtg Could not find update match for clamav Could not find update match for audit-libs-devel Could not find update match for libXft-devel Could not find update match for libvolume_id Could not find update match for xorg-x11-drv-trident Could not find update match for libgcrypt Could not find update match for newt Could not find update match for xorg-x11-drv-magellan Could not find update match for talk-server Could not find update match for perl-URI Could not find update match for xorg-x11-drv-tseng Could not find update match for sysstat Could not find update match for zabbix-web Could not find update match for libevent-devel Could not find update match for lockdev Could not find update match for xinetd Could not find update match for tftp Could not find update match for iptables-ipv6 Could not find update match for lsof Could not find update match for binutils Could not find update match for gkrellm-volume Could not find update match for libxkbfile-devel Could not find update match for poppler-utils Could not find update match for perl-DBI Could not find update match for nagios-plugins-oracle Could not find update match for nbtscan Could not find update match for nagios-plugins-ide_smart Could not find update match for x86info Could not find update match for libglade2 Could not find update match for rpm Could not find update match for perl-TimeDate Could not find update match for xorg-x11-server-utils Could not find update match for syslinux Could not find update match for yp-tools Could not find update match for libacl Could not find update match for dhcdbd Could not find update match for hal-devel Could not find update match for xorg-x11-drv-dynapro Could not find update match for libXcursor Could not find update match for vim-X11 Could not find update match for iptstate Could not find update match for bridge-utils Could not find update match for libXScrnSaver Could not find update match for cracklib Could not find update match for nfs-utils-lib Could not find update match for esound Could not find update match for ncurses Could not find update match for xorg-x11-drv-ati Could not find update match for nfs-utils Could not find update match for xorg-x11-drv-sis Could not find update match for libXpm Could not find update match for imlib2 Could not find update match for libXft Could not find update match for chkfontpath Could not find update match for xorg-x11-drv-ur98 Could not find update match for nagios-plugins-game Could not find update match for xorg-x11-drv-nouveau Could not find update match for gnome-keyring Could not find update match for nagios-plugins-by_ssh Could not find update match for readline-devel Could not find update match for libogg-devel Could not find update match for zlib Could not find update match for xorg-x11-drv-spaceorb Could not find update match for cvs Could not find update match for iksemel Could not find update match for dhcpv6 Could not find update match for gutenprint-cups Could not find update match for perl-XML-Simple Could not find update match for avahi Could not find update match for libselinux Could not find update match for procps Could not find update match for hexedit Could not find update match for hping3 Could not find update match for xorg-x11-fonts-cyrillic Could not find update match for ipw2200-firmware Could not find update match for libxml2 Could not find update match for expat Could not find update match for nagios-plugins-rpc Could not find update match for chkconfig Could not find update match for pax Could not find update match for libXrender-devel Could not find update match for libXext-devel Could not find update match for galculator Could not find update match for x3270 Could not find update match for coreutils Could not find update match for beecrypt-devel Could not find update match for gkrellm-freq Could not find update match for dbus-x11 Could not find update match for pam Could not find update match for libgssapi-devel Could not find update match for libXmu-devel Could not find update match for itcl Could not find update match for man-pages Could not find update match for unixODBC Could not find update match for libXxf86misc-devel Could not find update match for dbus-devel Could not find update match for fuse Could not find update match for perl-Net-SSLeay Could not find update match for libsysfs Could not find update match for gpsd-clients Could not find update match for ngrep Could not find update match for xorg-x11-drv-acecad Could not find update match for libacl-devel Could not find update match for nfs-utils-lib-devel Could not find update match for rrdtool Could not find update match for libdaemon-devel Could not find update match for gamin Could not find update match for libXdmcp-devel Could not find update match for gnutls-devel Could not find update match for xorg-x11-fonts-ISO8859-1-100dpi Could not find update match for ORBit2-devel Could not find update match for module-init-tools Could not find update match for xorg-x11-drv-sisusb Could not find update match for libsepol Could not find update match for filesystem Could not find update match for gzip Could not find update match for libattr Could not find update match for nagios-plugins-all Could not find update match for nc Could not find update match for vim-common Could not find update match for libXrandr-devel Could not find update match for less Could not find update match for neon Could not find update match for libgnomecanvas-devel Could not find update match for iwidgets Could not find update match for vsftpd Could not find update match for evince Could not find update match for mysql Could not find update match for libdmx Could not find update match for samba Could not find update match for hal Could not find update match for mingetty Could not find update match for libpcap Could not find update match for w3c-libwww Could not find update match for cups-devel Could not find update match for apr Could not find update match for libbonobo-devel Could not find update match for gmp Could not find update match for Hermes Could not find update match for xorg-x11-drv-amd Could not find update match for nagios-plugins-udp Could not find update match for WINGs-libs Could not find update match for xorg-x11-fonts-misc Could not find update match for libXdmcp Could not find update match for libXau-devel Could not find update match for gd-devel Could not find update match for xterm Could not find update match for nagios-plugins-nrpe Could not find update match for xorg-x11-xdm Could not find update match for apr-util Could not find update match for libdrm Could not find update match for genisoimage Could not find update match for xorg-x11-drv-penmount Could not find update match for libgcrypt-devel Could not find update match for postgresql-devel Could not find update match for swatch Could not find update match for xorg-x11-drv-microtouch Could not find update match for libattr-devel Could not find update match for cyrus-sasl-lib Could not find update match for gkrellm-aclock Could not find update match for iftop Could not find update match for nrpe Could not find update match for minicom Could not find update match for fuse-libs Could not find update match for perl-Gtk2 Could not find update match for rusers-server Could not find update match for xorg-x11-fonts-truetype Could not find update match for nagios-plugins-swap Could not find update match for libXaw-devel Could not find update match for libpng-devel Could not find update match for xorg-x11-xauth Could not find update match for libXfixes Could not find update match for xorg-x11-fonts-ISO8859-2-100dpi Could not find update match for shared-mime-info Could not find update match for xorg-x11-drv-dmc Could not find update match for grub Could not find update match for udev Could not find update match for nagios-plugins-disk_smb Could not find update match for libXrender Could not find update match for star Could not find update match for nagios-plugins-hpjd Could not find update match for libfontenc Could not find update match for sysklogd Could not find update match for libgsf Could not find update match for rsync Could not find update match for GConf2 Could not find update match for libgtop2 Could not find update match for glibc Could not find update match for nagios-plugins-icmp Could not find update match for dvd+rw-tools Could not find update match for xorg-x11-drv-ark Could not find update match for shadow-utils Could not find update match for xorg-x11-xfs Could not find update match for libtermcap-devel Could not find update match for libtiff-devel Could not find update match for libXaw Could not find update match for libXau Could not find update match for nagios-plugins-log Could not find update match for xorg-x11-server-Xorg Could not find update match for libXres-devel Could not find update match for x3270-text Could not find update match for bc Could not find update match for xorg-x11-drv-evdev Could not find update match for gnome-panel Could not find update match for gpsd-devel Could not find update match for libXinerama Could not find update match for wget Could not find update match for MAKEDEV Could not find update match for libXi-devel Could not find update match for Hermes-devel Could not find update match for cups-lpd Could not find update match for libuser-devel Could not find update match for elfutils-libs Could not find update match for libjpeg-devel Could not find update match for xorg-x11-drv-calcomp Could not find update match for pcmciautils Could not find update match for acl Could not find update match for libexif Could not find update match for xorg-x11-drv-vmmouse Could not find update match for php-cli Could not find update match for xorg-x11-drv-fbdev Could not find update match for libsmbios-libs Could not find update match for xorg-x11-drv-elographics Could not find update match for hesiod Could not find update match for libXv-devel Could not find update match for adns Could not find update match for libtiff Could not find update match for redhat-artwork Could not find update match for libwmf Could not find update match for libstdc++ Could not find update match for xorg-x11-drv-fpit Could not find update match for ppp Could not find update match for libmng Could not find update match for nagios-plugins-mysql Could not find update match for readline Could not find update match for libXxf86vm Could not find update match for pcre Could not find update match for xorg-x11-drv-siliconmotion Could not find update match for ltrace Could not find update match for libFS Could not find update match for rrdtool-devel Could not find update match for cpuspeed Could not find update match for php-common Could not find update match for groff Could not find update match for tcpdump Could not find update match for perl-Mail-Sendmail Could not find update match for glib Could not find update match for apr-util-devel Could not find update match for bind-chroot Could not find update match for elfutils-libelf-devel Could not find update match for openssh-server Could not find update match for libXi Could not find update match for libXp Could not find update match for libXt Could not find update match for libXv Could not find update match for libXext Could not find update match for rp-pppoe Could not find update match for info Could not find update match for xorg-x11-drv-via Could not find update match for nagios-plugins-users Could not find update match for gstreamer Could not find update match for nagios-plugins-ntp Could not find update match for xorg-x11-drv-keyboard Could not find update match for initscripts Could not find update match for audiofile-devel Could not find update match for lynx Could not find update match for newt-devel Could not find update match for nagios-plugins-file_age Could not find update match for pam-devel Could not find update match for ypserv Could not find update match for gnome-keyring-devel Could not find update match for arpwatch Could not find update match for telnet-server Could not find update match for mailx Could not find update match for perl-Date-Calc Could not find update match for nagios Could not find update match for avahi-devel Could not find update match for jwhois Could not find update match for at Could not find update match for file Could not find update match for samba-common Could not find update match for curl Could not find update match for bzip2 Could not find update match for nagios-plugins-http Could not find update match for nagios-plugins-dhcp Could not find update match for gnuplot Could not find update match for distcache Could not find update match for nagios-plugins-real Could not find update match for libXmu Could not find update match for perl-Tk Could not find update match for esound-devel Could not find update match for elfutils-libelf Could not find update match for xorg-x11-fonts-100dpi Could not find update match for xorg-x11-drv-mga Could not find update match for smartmontools Could not find update match for scrub Could not find update match for nagios-plugins-ssh Could not find update match for xorg-x11-drv-vmware Could not find update match for libutempter Could not find update match for device-mapper-libs Could not find update match for xorg-x11-xinit Could not find update match for nagios-plugins-overcr Could not find update match for libogg Could not find update match for telnet Could not find update match for ncompress Could not find update match for libtool-ltdl Could not find update match for xorg-x11-drv-rendition Could not find update match for dos2unix Could not find update match for curl-devel Could not find update match for slang Could not find update match for libgssapi Could not find update match for perl-Crypt-DES Could not find update match for xorg-x11-drv-nv Could not find update match for diffutils Could not find update match for gkrellm-weather Could not find update match for usbutils Could not find update match for e2fsprogs Could not find update match for libgnomecanvas Could not find update match for ghostscript-fonts Could not find update match for libXrandr Could not find update match for time Could not find update match for cpp Could not find update match for nash Could not find update match for audiofile Could not find update match for libXp-devel No Packages marked for Update/Obsoletion /root/nst/src/bin/auto_update_packages


Updating: libdnsres via: src/bin/libdnsres_fetch_build


        See: /root/nst/tmp/updates/libdnsres.log for details


SUCCESS: libdnsres built/installed successfully



Updating: Image_Color via: src/bin/Image_fetch_install


        See: /root/nst/tmp/updates/Image_Color.log for details


SUCCESS: Image_Color built/installed successfully



Updating: Log via: src/bin/Log_fetch_install


        See: /root/nst/tmp/updates/Log.log for details


SUCCESS: Log built/installed successfully



Updating: Numbers_Roman via: src/bin/Numbers_Roman_fetch_install


        See: /root/nst/tmp/updates/Numbers_Roman.log for details


SUCCESS: Numbers_Roman built/installed successfully



Updating: Numbers_Words via: src/bin/Numbers_Words_fetch_install


        See: /root/nst/tmp/updates/Numbers_Words.log for details


SUCCESS: Numbers_Words built/installed successfully




Updating: amap via: src/bin/amap_fetch_build


        See: /root/nst/tmp/updates/amap.log for details


SUCCESS: amap built/installed successfully



Updating: argus via: src/bin/argus_fetch_install


        See: /root/nst/tmp/updates/argus.log for details


SUCCESS: argus built/installed successfully



Updating: aumix via: src/bin/aumix_fetch_build


        See: /root/nst/tmp/updates/aumix.log for details


SUCCESS: aumix built/installed successfully



Updating: bandwidthd via: src/bin/bandwidthd_fetch_build


        See: /root/nst/tmp/updates/bandwidthd.log for details


SUCCESS: bandwidthd built/installed successfully



Updating: bing via: src/bin/bing_fetch_build


        See: /root/nst/tmp/updates/bing.log for details


SUCCESS: bing built/installed successfully




Updating: c3270 via: src/bin/c3270_fetch_build


        See: /root/nst/tmp/updates/c3270.log for details


SUCCESS: c3270 built/installed successfully



Updating: cfdisk via: src/bin/cfdisk_fetch_build


        See: /root/nst/tmp/updates/cfdisk.log for details


SUCCESS: cfdisk built/installed successfully



Updating: chntpw via: src/bin/chntpw_fetch_install


        See: /root/nst/tmp/updates/chntpw.log for details


SUCCESS: chntpw built/installed successfully



Updating: cputnik via: src/bin/cputnik_fetch_build


        See: /root/nst/tmp/updates/cputnik.log for details


SUCCESS: cputnik built/installed successfully



Updating: cryptcat via: src/bin/cryptcat_fetch_install


        See: /root/nst/tmp/updates/cryptcat.log for details


SUCCESS: cryptcat built/installed successfully



Updating: dd_rescue via: src/bin/rr_rescue_fetch_build


        See: /root/nst/tmp/updates/dd_rescue.log for details


SUCCESS: dd_rescue built/installed successfully



Updating: dd_rhelp via: src/bin/rr_rhelp_fetch_build


        See: /root/nst/tmp/updates/dd_rhelp.log for details


SUCCESS: dd_rhelp built/installed successfully



Updating: dmidecode via: src/bin/dmidecode_fetch_install


        See: /root/nst/tmp/updates/dmidecode.log for details


SUCCESS: dmidecode built/installed successfully



Updating: domTT via: src/bin/domTT_fetch_install


        See: /root/nst/tmp/updates/domTT.log for details


SUCCESS: domTT built/installed successfully



Updating: e1000 via: src/bin/e1000_fetch_build


        See: /root/nst/tmp/updates/e1000.log for details


SUCCESS: e1000 built/installed successfully



Updating: elinks via: src/bin/elinks_fetch_build


        See: /root/nst/tmp/updates/elinks.log for details


SUCCESS: elinks built/installed successfully



Updating: etherape via: src/bin/etherape_fetch_build


        See: /root/nst/tmp/updates/etherape.log for details


SUCCESS: etherape built/installed successfully



Updating: etherwake via: src/bin/etherwake_fetch_build


        See: /root/nst/tmp/updates/etherwake.log for details


SUCCESS: etherwake built/installed successfully



Updating: ettercap via: src/bin/ettercap_fetch_install


        See: /root/nst/tmp/updates/ettercap.log for details


SUCCESS: ettercap built/installed successfully



Updating: firewalk via: src/bin/firewalk_fetch_install


        See: /root/nst/tmp/updates/firewalk.log for details


SUCCESS: firewalk built/installed successfully



Updating: fragroute via: src/bin/fragroute_fetch_install


        See: /root/nst/tmp/updates/fragroute.log for details


SUCCESS: fragroute built/installed successfully



Updating: fruity via: src/bin/fruity_fetch


        See: /root/nst/tmp/updates/fruity.log for details


SUCCESS: fruity built/installed successfully



Updating: gkismet via: src/bin/gkismet_fetch_build


        See: /root/nst/tmp/updates/gkismet.log for details


SUCCESS: gkismet built/installed successfully



Updating: gkrellkam via: src/bin/gkrellkam_fetch_build


        See: /root/nst/tmp/updates/gkrellkam.log for details


SUCCESS: gkrellkam built/installed successfully



Updating: gpsbabel via: src/bin/gpsbabel_fetch_build


        See: /root/nst/tmp/updates/gpsbabel.log for details


SUCCESS: gpsbabel built/installed successfully



Updating: gpsdrive via: src/bin/gpsdrive_fetch_build


        See: /root/nst/tmp/updates/gpsdrive.log for details


SUCCESS: gpsdrive built/installed successfully



Updating: hammerhead via: src/bin/hammerhead_fetch_install


        See: /root/nst/tmp/updates/hammerhead.log for details


SUCCESS: hammerhead built/installed successfully



Updating: honeyd via: src/bin/honeyd_fetch_install


        See: /root/nst/tmp/updates/honeyd.log for details


SUCCESS: honeyd built/installed successfully




Updating: ifgraph via: src/bin/ifgraph_fetch_install


        See: /root/nst/tmp/updates/ifgraph.log for details


SUCCESS: ifgraph built/installed successfully



Updating: inprotect via: src/bin/inprotect_fetch


        See: /root/nst/tmp/updates/inprotect.log for details


SUCCESS: inprotect built/installed successfully



Updating: iperf via: src/bin/iperf_fetch_build


        See: /root/nst/tmp/updates/iperf.log for details


SUCCESS: iperf built/installed successfully



Updating: ipmitool via: src/bin/ipmitool_fetch_install


        See: /root/nst/tmp/updates/ipmitool.log for details


SUCCESS: ipmitool built/installed successfully



Updating: ipsc via: src/bin/ipsc_fetch_build


        See: /root/nst/tmp/updates/ipsc.log for details


SUCCESS: ipsc built/installed successfully



Updating: ipsec-tools via: src/bin/ipsec-tools_fetch_build


        See: /root/nst/tmp/updates/ipsec-tools.log for details


SUCCESS: ipsec-tools built/installed successfully



Updating: jakarta-jmeter via: src/bin/jmeter_fetch


        See: /root/nst/tmp/updates/jakarta-jmeter.log for details


SUCCESS: jakarta-jmeter built/installed successfully



Updating: jikes via: src/bin/jikes_fetch_install


        See: /root/nst/tmp/updates/jikes.log for details


SUCCESS: jikes built/installed successfully



Updating: jpgraph via: src/bin/jpgraph_fetch


        See: /root/nst/tmp/updates/jpgraph.log for details


SUCCESS: jpgraph built/installed successfully



Updating: kismet via: src/bin/kismet_fetch_build


        See: /root/nst/tmp/updates/kismet.log for details


SUCCESS: kismet built/installed successfully



Updating: libssh via: src/bin/libssh_fetch_build


        See: /root/nst/tmp/updates/libssh.log for details


SUCCESS: libssh built/installed successfully



Updating: hydra via: src/bin/hydra_fetch_build


        See: /root/nst/tmp/updates/hydra.log for details


SUCCESS: hydra built/installed successfully




Updating: ifgraph via: src/bin/ifgraph_fetch_install


        See: /root/nst/tmp/updates/ifgraph.log for details


SUCCESS: ifgraph built/installed successfully



Updating: inprotect via: src/bin/inprotect_fetch


        See: /root/nst/tmp/updates/inprotect.log for details


SUCCESS: inprotect built/installed successfully



Updating: iperf via: src/bin/iperf_fetch_build


        See: /root/nst/tmp/updates/iperf.log for details


SUCCESS: iperf built/installed successfully



Updating: ipmitool via: src/bin/ipmitool_fetch_install


        See: /root/nst/tmp/updates/ipmitool.log for details


SUCCESS: ipmitool built/installed successfully



Updating: ipsc via: src/bin/ipsc_fetch_build


        See: /root/nst/tmp/updates/ipsc.log for details


SUCCESS: ipsc built/installed successfully



Updating: ipsec-tools via: src/bin/ipsec-tools_fetch_build


        See: /root/nst/tmp/updates/ipsec-tools.log for details


SUCCESS: ipsec-tools built/installed successfully



Updating: jakarta-jmeter via: src/bin/jmeter_fetch


        See: /root/nst/tmp/updates/jakarta-jmeter.log for details


SUCCESS: jakarta-jmeter built/installed successfully



Updating: jikes via: src/bin/jikes_fetch_install


        See: /root/nst/tmp/updates/jikes.log for details


SUCCESS: jikes built/installed successfully



Updating: jpgraph via: src/bin/jpgraph_fetch


        See: /root/nst/tmp/updates/jpgraph.log for details


SUCCESS: jpgraph built/installed successfully



Updating: kismet via: src/bin/kismet_fetch_build


        See: /root/nst/tmp/updates/kismet.log for details


SUCCESS: kismet built/installed successfully



Updating: libssh via: src/bin/libssh_fetch_build


        See: /root/nst/tmp/updates/libssh.log for details


SUCCESS: libssh built/installed successfully



Updating: hydra via: src/bin/hydra_fetch_build


        See: /root/nst/tmp/updates/hydra.log for details


SUCCESS: hydra built/installed successfully



Updating: libfwbuilder via: src/bin/libfwbuilder_fetch_build


        See: /root/nst/tmp/updates/libfwbuilder.log for details


SUCCESS: libfwbuilder built/installed successfully



Updating: fwbuilder via: src/bin/fwbuilder_fetch_build


        See: /root/nst/tmp/updates/fwbuilder.log for details


SUCCESS: fwbuilder built/installed successfully



Updating: lilo via: src/bin/lilo_fetch_install


        See: /root/nst/tmp/updates/lilo.log for details


SUCCESS: lilo built/installed successfully



Updating: mbrowse via: src/bin/mbrowse_fetch_install


        See: /root/nst/tmp/updates/mbrowse.log for details


SUCCESS: mbrowse built/installed successfully



Updating: mysqltcl via: src/bin/mysqltcl_fetch_install


        See: /root/nst/tmp/updates/mysqltcl.log for details


SUCCESS: mysqltcl built/installed successfully



Updating: ndiswrapper via: src/bin/ndiswrapper_fetch_build


        See: /root/nst/tmp/updates/ndiswrapper.log for details


SUCCESS: ndiswrapper built/installed successfully



Updating: nemesis via: src/bin/nemesis_fetch_build


        See: /root/nst/tmp/updates/nemesis.log for details


SUCCESS: nemesis built/installed successfully



Updating: nikto via: src/bin/nikto_fetch_build


        See: /root/nst/tmp/updates/nikto.log for details


SUCCESS: nikto built/installed successfully



Updating: niktorat via: src/bin/niktorat_fetch


        See: /root/nst/tmp/updates/niktorat.log for details


SUCCESS: niktorat built/installed successfully



Updating: nload via: src/bin/nload_fetch_build


        See: /root/nst/tmp/updates/nload.log for details


SUCCESS: nload built/installed successfully



Updating: nmbscan via: src/bin/nmbscan_fetch_install


        See: /root/nst/tmp/updates/nmbscan.log for details


SUCCESS: nmbscan built/installed successfully



Updating: nttcp via: src/bin/nttcp_fetch_install


        See: /root/nst/tmp/updates/nttcp.log for details


SUCCESS: nttcp built/installed successfully



Updating: oinkmaster via: src/bin/oinkmaster_fetch_build


        See: /root/nst/tmp/updates/oinkmaster.log for details


SUCCESS: oinkmaster built/installed successfully



Updating: packETH via: src/bin/packETH_fetch_build


        See: /root/nst/tmp/updates/packETH.log for details


SUCCESS: packETH built/installed successfully



Updating: partimage via: src/bin/partimage_fetch_build


        See: /root/nst/tmp/updates/partimage.log for details


SUCCESS: partimage built/installed successfully



Updating: php-base via: src/bin/php-base_fetch_install


        See: /root/nst/tmp/updates/php-base.log for details


SUCCESS: php-base built/installed successfully



Updating: phpMyAdmin via: src/bin/phpMyAdmin_fetch_install


        See: /root/nst/tmp/updates/phpMyAdmin.log for details


SUCCESS: phpMyAdmin built/installed successfully



Updating: phpPgAdmin via: src/bin/phpPgAdmin_fetch_install


        See: /root/nst/tmp/updates/phpPgAdmin.log for details


SUCCESS: phpPgAdmin built/installed successfully



Updating: phpSysInfo via: src/bin/phpSysInfo_fetch_install


        See: /root/nst/tmp/updates/phpSysInfo.log for details


SUCCESS: phpSysInfo built/installed successfully



Updating: p0f via: src/bin/p0f_fetch_build


        See: /root/nst/tmp/updates/p0f.log for details


SUCCESS: p0f built/installed successfully



Updating: pr3287 via: src/bin/pr3287_fetch_build


        See: /root/nst/tmp/updates/pr3287.log for details


SUCCESS: pr3287 built/installed successfully



Updating: puttywx via: src/bin/puttywx_fetch


        See: /root/nst/tmp/updates/puttywx.log for details


SUCCESS: puttywx built/installed successfully



Updating: pwgen via: src/bin/pwgen_fetch_build


        See: /root/nst/tmp/updates/pwgen.log for details


SUCCESS: pwgen built/installed successfully



Updating: quicktables via: src/bin/quicktables_fetch_build


        See: /root/nst/tmp/updates/quicktables.log for details


SUCCESS: quicktables built/installed successfully



Updating: secure_delete via: src/bin/secure_delete_fetch_build


        See: /root/nst/tmp/updates/secure_delete.log for details


SUCCESS: secure_delete built/installed successfully



Updating: sguil via: src/bin/sguil_fetch


        See: /root/nst/tmp/updates/sguil.log for details


SUCCESS: sguil built/installed successfully



Updating: barnyard via: src/bin/barnyard_fetch_build


        See: /root/nst/tmp/updates/barnyard.log for details


SUCCESS: barnyard built/installed successfully



Updating: smtpclient via: src/bin/smtpclient_fetch_build


        See: /root/nst/tmp/updates/smtpclient.log for details


SUCCESS: smtpclient built/installed successfully



Updating: snort via: src/bin/snort-mysql_fetch_build


        See: /root/nst/tmp/updates/snort.log for details


SUCCESS: snort built/installed successfully



Updating: snort_inline via: src/bin/snort_inline_fetch_build


        See: /root/nst/tmp/updates/snort_inline.log for details


SUCCESS: snort_inline built/installed successfully



Updating: snort-rules via: src/bin/snort-rules_fetch_install


        See: /root/nst/tmp/updates/snort-rules.log for details


SUCCESS: snort-rules built/installed successfully



Updating: snortslinger via: src/bin/snortslinger_fetch


        See: /root/nst/tmp/updates/snortslinger.log for details


SUCCESS: snortslinger built/installed successfully



Updating: tcl via: src/bin/tcl_nothreads_fetch_build


        See: /root/nst/tmp/updates/tcl.log for details


      • ERROR*** Failed to update: tcl ran: src/bin/tcl_nothreads_fetch_build


Updating: tcpflow via: src/bin/tcpflow_fetch_install


        See: /root/nst/tmp/updates/tcpflow.log for details


SUCCESS: tcpflow built/installed successfully



Updating: tcping via: src/bin/tcping_fetch_install


        See: /root/nst/tmp/updates/tcping.log for details


SUCCESS: tcping built/installed successfully



Updating: tcpreen via: src/bin/tcpreen_fetch_install


        See: /root/nst/tmp/updates/tcpreen.log for details


SUCCESS: tcpreen built/installed successfully



Updating: tcpspray via: src/bin/tcpspray_fetch_install


        See: /root/nst/tmp/updates/tcpspray.log for details


SUCCESS: tcpspray built/installed successfully



Updating: tcpstat via: src/bin/tcpstat_fetch_build


        See: /root/nst/tmp/updates/tcpstat.log for details


SUCCESS: tcpstat built/installed successfully



Updating: tcptrace via: src/bin/tcptrace_fetch_install


        See: /root/nst/tmp/updates/tcptrace.log for details


SUCCESS: tcptrace built/installed successfully



Updating: tcptraceroute via: src/bin/tcptraceroute_fetch_build


        See: /root/nst/tmp/updates/tcptraceroute.log for details


SUCCESS: tcptraceroute built/installed successfully



Updating: tcptrack via: src/bin/tcptrack_fetch_build


        See: /root/nst/tmp/updates/tcptrack.log for details


SUCCESS: tcptrack built/installed successfully



Updating: tightvnc via: src/bin/tightvnc_fetch_install


        See: /root/nst/tmp/updates/tightvnc.log for details


SUCCESS: tightvnc built/installed successfully



Updating: tightvncwx via: src/bin/tightvncwx_fetch


        See: /root/nst/tmp/updates/tightvncwx.log for details


SUCCESS: tightvncwx built/installed successfully



Updating: unicornscan via: src/bin/unicornscan_fetch_install


        See: /root/nst/tmp/updates/unicornscan.log for details


      • ERROR*** Failed to update: unicornscan ran: src/bin/unicornscan_fetch_install


Updating: vmware-tools via: src/bin/vmware-tools_fetch_install


        See: /root/nst/tmp/updates/vmware-tools.log for details


      • ERROR*** Failed to update: vmware-tools ran: src/bin/vmware-tools_fetch_install


Updating: weplab via: src/bin/weplab_fetch_install


        See: /root/nst/tmp/updates/weplab.log for details


SUCCESS: weplab built/installed successfully



Updating: wireshark via: src/bin/wireshark_fetch_build


        See: /root/nst/tmp/updates/wireshark.log for details


      • ERROR*** Failed to update: wireshark ran: src/bin/wireshark_fetch_build


Updating: wipe via: src/bin/wipe_fetch_build


        See: /root/nst/tmp/updates/wipe.log for details


SUCCESS: wipe built/installed successfully



Updating: wmcpuload via: src/bin/wmcpuload_fetch_build


        See: /root/nst/tmp/updates/wmcpuload.log for details


SUCCESS: wmcpuload built/installed successfully



Updating: wmfire via: src/bin/wmfire_fetch_build


        See: /root/nst/tmp/updates/wmfire.log for details


SUCCESS: wmfire built/installed successfully



Updating: wmifinfo via: src/bin/wmifinfo_fetch_build


        See: /root/nst/tmp/updates/wmifinfo.log for details


SUCCESS: wmifinfo built/installed successfully



Updating: wmmemload via: src/bin/wmmemload_fetch_build


        See: /root/nst/tmp/updates/wmmemload.log for details


SUCCESS: wmmemload built/installed successfully



Updating: wmnd via: src/bin/wmnd_fetch_build


        See: /root/nst/tmp/updates/wmnd.log for details


SUCCESS: wmnd built/installed successfully



Updating: wmsm via: src/bin/wmsm_fetch_build


        See: /root/nst/tmp/updates/wmsm.log for details


SUCCESS: wmsm built/installed successfully



Updating: wmweather+ via: src/bin/wmweather+_fetch_build


        See: /root/nst/tmp/updates/wmweather+.log for details


SUCCESS: wmweather+ built/installed successfully



      • ERROR*** DISPLAY is not set - unable to install firefox add-ons


      • ERROR*** Following package updates failed: tcl unicornscan vmware-tools wireshark
        Check the log files under: /root/nst/tmp/updates for details

make: *** [tsv-update] Error 1


Development Case Study Using VMWARE - make package-check

egrep -i fail output.of.make package-check

  • firefox (version 2.0.0.4) [failed]
  • autohide (version 1.1.5) [failed]
  • colorful_tabs (version 2.0.1) [failed]
  • dictionarysearch (version 2.0.1) [failed]
  • image_zoom (version 0.2.7) [failed]
  • LinkChecker (version 0.6.1) [failed]
  • long_titles (version 1.2.4) [failed]
  • madwifi (version 0.9.3.2-rc1) [failed]
  • metasploit (version 2.7) [failed]
  • nessus (version 2.2.10) [failed]
  • netw (version 5.34.0) [failed]
  • ntop (version 3.3.1) [failed]
  • quickrestart (version 1.1.0) [failed]
  • reloadevery (version 2.0) [failed]
  • snorter (version 2.1) [failed]
  • tcl (version 8.4.13-16nothreads) [failed]
  • tidy (version 0.8.3.9) [failed]
  • vmware-tools (version 1.0.3) [failed]
  • webdeveloper (version 1.1.4) [failed]
  • wireshark (version 0.99.6) [failed]