Author Archives: jwebb - Page 2

Firefox 4 doesn’t prompt to save tabs on exit

If you are liked to the way Firefox 3 prompted to save open tabs on exit you’ll be surprised when Firefox 4 doesn’t ask by default. The feature isn’t missing, it’s just turned off. Follow the steps below to turn this feature on.

Please note: This solution was posted by TonyE on the Mozilla support forums. I am not taking credit, just passing it along.

  1. Open Firefox 4.
  2. Type about:config into the location bar and press enter.
  3. Accept the warning message that appears, you will be taken to a list of preferences.
  4. Locate the preference browser.tabs.warnOnClose, if its value is set to false, double-click on it to change its value to true.
  5. Repeat this for these 2 preferences browser.warnOnQuit, browser.warnOnRestart.
  6. There is one more preference that needs to be set to true – browser.showQuitWarning.

HOW TO: Add Novell SLP DHCP Options to the Microsoft DHCP Service

If anyone needs to hand out OES SLP info from a Microsoft DHCP server you might want to take a look at this Microsoft KB article 285019.

iPrint 5.60 client released

Novell has released the iPrint 5.60 client.

Fixes introduced in the 5.60 Client
1. TID 7007782 – Universal Printer Driver takes over 4 minutes to install
2. TID 7008220 Unable to view print jobs from the Windows 7 Printers and Devices panel
3. Client install to non-English Win7 platforms crashes the spooler, showing a failed installed. (Bugs 663841 and 681632)
4. Initial printer status shows error state with non-English Win7 with Xerox drivers and User Printers (Bug 674558)
5. Print drivers in the C:\NDPS directory are not cleared (Bug 670861)

You can download the update here.

ZENworks Imaging Driver Update for March

The ZENworks imaging driver update has been released for March.

Fixes include:

TID 7008215 PXE Failing on Realtek Gigabyte NIC
TID 7007277 Unable to image IBM Thinkpad T43 using PXE boot

Drivers updated
Imaging support has been updated with the following driver:

r8168 – version 8.020.00

Kernel Version: 2.6.32.19-0.3-default

Download here.


HTTP Error when uploading images through WordPress

Recently I received an HTTP Error when trying to upload images for a post on this site. This error seems to relate to using 1and1 as a host. The fix is easy, add the line below to your .htaccess file located in the root of your WordPress install. Be sure to add the lines after # END WordPress or your changes may get wiped out.

AddType x-mapp-php5 .php

Here is where I found the answer.

http://wordpress.org/support/topic/http-error-on-image-upload-still

ZENworks imaging return codes

One of the previous version of this site included instructions on how to get the return code from the img program and compile a list of their meanings. For archive sake I made a copy of the original article available here. I’ve also found a more comprehensive list of return codes and their meanings from the Novell wiki.

http://wiki.novell.com/index.php/ZENworks_Errors

Graphical Interface for ImageX

I found this cool utility while browsing the Internet one day. Just thought I would pass it on.

It’s a cool GUI front end for the ImageX utility from Microsoft.

You can get it -> http://www.autoitscript.com/site/autoit-tools/gimagex/

nsscomn fails to load after OES2 SP2

After installing the latest patches to your OES2 SP2 server you receive the following after a reboot.

loading nsscomn kernel module

FATAL: Error inserting nsscomn (/lib/modules/2.6.16.60-0.59.1-vmi/weak-updates/nsscomn.ko): Cannot allocate memory

ERROR: Failed load of nsscomn

The solution, as mentioned in the Novell forums, is to add vmalloc=256M to the kernel load option then reboot. I’ve tested this fix and it does work.

ZCM and Windows 7 SP1

If you are running ZCM and would like to use Windows 7 SP1 you will need to apply a patch to your system. The patches are listed below.

ZCM 11

http://download.novell.com/Download?buildid=dKSmfmpsOpA~

ZCM 10.3.3

Includes the patch.

ZCM 10.3.2

http://download.novell.com/Download?buildid=U9EZlU4MNes~

ZCM 10.3.1 (Updated for combined patch)

http://download.novell.com/Download?buildid=2Wgh0yxLITo~

How to make cp copy hidden files.

If you need to copy hidden files in Linux you will need to use the following command to enable it.

shopt -s dotglob

Now cp will copy hidden files. To turn this off use the following command.

shopt -u dotglob

If you would like to read more about the shopt command look here.