2010
03.20

http://socialmediasecurity.com/wp-content/uploads/2009/07/Facebook_Privacy_and_Security_Guide.pdf

2010
03.08

http://blogs.zdnet.com/security/?p=5602&tag=content;col1

2010
03.04

10. Disk Space Monitor

http://www.tinyurl.com/Rzrvm77

9. Bulk Password Reset

http://www.tinyurl.com/Lgntax2

8. Windows Service Monitor

http://www.tinyurl.com/Qzh9fog

7. VMware Change Reporter

http://www.tinyurl.com/Kzpc4s3

6. Active Directory Object Restore Wizard

http://www.tinyurl.com/BRces62

5. File Server Change Reporter

http://www.tinyurl.com/ih55n2d

4. Inactive Users Tracker

http://www.tinyurl.com/N56p4n5

3. Password Expiration Notifier

http://www.tinyurl.com/TYe7ak

2. USB Blocker

http://www.tinyurl.com/Zh5a8w8

1. Active Directory Change Reporter

http://www.tinyurl.com/Kf9kn3s

2010
03.03

Installation guide for installing the Citrix ICA client under Ubuntu Linux

Prerequisites:

1. Download the latest Linux client from www.citrix.com

2. Install Openmotif onto your machine

  • sudo apt-get install motif-clients
  • sudo apt-get install libmotif-dev

Installation:

1. Install the 32-bit Citrix client.

  1. Download the linux client tarball (currently here) to some temp dir, e.g. /tmp/citrix
  2. Extract the tarball, e.g. (change parameters as necessary)
DOWNLOAD_DIR="/tmp/citrix"
TARBALL_FN="linuxx86-11.0.140395.tar.gz"
pushd ${DOWNLOAD_DIR}
tar xfz ${TARBALL_FN} # add '> /dev/null' for quiet
  1. From the download directory, run the text-mode installer
sudo ./setupwfc
  • Take the option to “Install Citrix Receiver”, install to
/usr/lib/ICAClient
  • , choose additional options as needed, and quit the installer.
  • Check to see that the installer created
    • the executable /usr/lib/ICAClient/wfcmgr
    • a launcher like Applications>Internet>Citrix Receiver or Internet>Citrix Receiver
  • Check that /usr/lib/ICAClient/wfcmgr has needed libraries, e.g.
CLIENT_EXEC="/usr/lib/ICAClient/wfcmgr"
ldd ${CLIENT_EXEC}
  • You will probably get results like
linux-gate.so.1 => (0xf77a3000)
libXm.so.4 => not found
libXp.so.6 => /usr/lib32/libXp.so.6 (0xf777f000)
libXpm.so.4 => /usr/lib32/libXpm.so.4 (0xf776c000)
libSM.so.6 => /usr/lib32/libSM.so.6 (0xf7763000)
libICE.so.6 => /usr/lib32/libICE.so.6 (0xf7748000)
libXmu.so.6 => /usr/lib32/libXmu.so.6 (0xf772f000)
libdl.so.2 => /lib32/libdl.so.2 (0xf772b000)
libpthread.so.0 => /lib32/libpthread.so.0 (0xf7712000)
libc.so.6 => /lib32/libc.so.6 (0xf75cd000)
libXt.so.6 => /usr/lib32/libXt.so.6 (0xf757a000)
libX11.so.6 => /usr/lib32/libX11.so.6 (0xf744b000)
libXext.so.6 => /usr/lib32/libXext.so.6 (0xf743b000)
libXau.so.6 => /usr/lib32/libXau.so.6 (0xf7437000)
libuuid.so.1 => /lib32/libuuid.so.1 (0xf7431000)
/lib/ld-linux.so.2 (0xf77a4000)
libxcb.so.1 => /usr/lib32/libxcb.so.1 (0xf7413000)
libXdmcp.so.6 => /usr/lib32/libXdmcp.so.6 (0xf740e000)
  • Note the not found above. If you don’t get one of those, try just running /usr/lib/ICAClient/wfcmgr: if that launches the Citrix Receiver, you’re done, and you can probably exit these instructions. If not, proceed to next step.

2. Download and setup all needed 32-bit libraries.

  • If you are missing libXm.so.4
    • Install motif and create a symlink to the latest similar library
sudo aptitude install libmotif3
ls -al /usr/lib/libXm.so*
# if the latest version is libXm.so.3.0.2, then
sudo ln -s /usr/lib/libXm.so.3.0.2 /usr/lib/libXm.so.4

Repeat running ldd until all libraries are found. I.e.

CLIENT_EXEC="/usr/lib/ICAClient/wfcmgr"
ERROR_STRING='not found'
ldd ${CLIENT_EXEC} | fgrep -e "${ERROR_STRING}"

should produce no output.

3. Run the native client from a terminal, e.g.

${CLIENT_EXEC}
  • The Citrix Receiver should launch with no errors. Choose Connections>Exit to quit the native client. If you see errors in the terminal, use the terminal messages to guide your efforts. You may need to repeat steps above.

4. Run the client from the launcher noted above.

Last Step – copy all of the Mozilla trusted certificate authorities to your Citrix client directory

sudo cp /usr/share/ca-certificates/mozilla/* /usr/lib/ICAClient/keystore/cacerts/