seanism DOT com Random thoughts from the world of seanism

29Dec/110

Scrolling with TrackPoint in Ubuntu 10.04

My Thinkpad X300 is a great machine and everything in Ubuntu 10.04 works natively except for scrolling with the TrackPoint.  I've gotten it working but it never sticks after putting the laptop to sleep.  Below are the instructions modified for a Thinkpad X300.

1. Install gpointing-device-settings
Open terminal and type sudo apt-get install gpointing-device-settings

2. Enable scrolling with TrackPoint
Open gpointing-device-settings and click DualPoint Stick and check use wheel emulation with button 2.

3. Create /usr/lib/X11/xorg.conf.d/20-thinkpad.conf

Section "InputClass"
Identifier "Trackpoint Wheel Emulation"
MatchProduct "DualPoint Stick"
MatchDevicePath "/dev/input/event*"
Driver "evdev"
Option "EmulateWheel" "true"
Option "EmulateWheelButton" "2"
Option "Emulate3Buttons" "false"
Option "XAxisMapping" "6 7"
Option "YAxisMapping" "4 5"
EndSection

I modified the instructions found here since they only partly worked for my X300.

23Nov/110

Connecting Windows 7 to a Windows XP share

If you are having trouble connecting a Windows 7 machine to a Windows XP share try enabling Network security: LAN Manager authentication level - Send LM & NTLM responses.

  1. Open the run dialog and type gpedit.msc and press enter.
  2. Open Computer Configuration
  3. Open Windows Settings
  4. Open Security Settings
  5. Open Local Policies
  6. Open Security Options
  7. Find Network security: LAN Manager authentication level and change it to Send LM & NTLM responses
For more info on the settings see the Microsoft TechNet article.
23Nov/110

You cannot view a list in Datasheet view after you install the 64-bit version of Office 2010

Symptom
You cannot view a list in Datasheet view on a SharePoint website after you install the 64-bit version of Microsoft Office 2010.

When you click Actions and then click Edit in Datasheet on a SharePoint 2003 or 2007 site, or you click the List tab and then click Datasheet view on a SharePoint 2010 site, you receive the following error message:

The list cannot be displayed in Datasheet view for one or more of the following reasons:
• A datasheet component compatible with Microsoft SharePoint Foundation is not installed.
• Your Web browser does not support ActiveX controls.
• A component is not properly configured for 32-bit or 64-bit support.

Solution
Install the 2007 Office System Driver: Data Connectivity Components 

13Nov/110

Screaming Infidelities

Cyanide and Happiness, a daily webcomic
Cyanide & Happiness @ Explosm.net

Tagged as: No Comments
11Nov/110

Windows 7 prompting for credentials when accessing SharePoint documents

Sympton
You are prompted to enter your credentials, even though the user account that you are using has sufficient permission to access this site.

For example, when you open a Microsoft Office file from a Microsoft Office SharePoint site by using 2007 Microsoft Office on a Windows 7-based client computer that has no proxy configured, you are prompted for authentication.

Solution
you have to create a registry entry. To do this, follow these steps:

  1. Click Start, type regedit in the Start Search box, and then press ENTER.
  2. Locate and then click the following registry subkey:
    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WebClient\Parameters
  3. On the Edit menu, point to New, and then click Multi-String Value.
  4. Type AuthForwardServerList, and then press ENTER.
  5. On the Edit menu, click Modify.
  6. In the Value data box, type the URL of the server that hosts the Web share, and then click OK.Note You can also type a list of URLs in the Value data box. For more information, see the "Sample URL list" section in this article.
  7. Exit Registry Editor.
  8. Restart the WebDAV service.
  9. Open an elevated command prompt and type in net stop WebClient && net start WebClient
  10. Reconnect to your SharePoint site.
source: http://support.microsoft.com/kb/943280
28Sep/110

Windows 7 firewall network location

If you have a computer that is connected to a domain and is plugged into the domain network but doesn't have the domain profile active in the firewall settings of Windows 7 check to make sure you have your domain DNS server set as your primary DNS.

I had a client have an external DNS set for "faster internet" but it was causing errors on the machine because the PDC couldn't communicate with it correctly.

29Aug/110

How to write e-mails to nerds from RackerHacker.com

Standard e-mail etiquette is pretty obvious to most of us and if you're good at it, you'll get your point across more often without stepping on toes or causing unneeded confusion. Simple things like identifying yourself well, avoiding sarcasm and adding context to statements are all extremely beneficial. However, writing e-mails to highly technical developers, system administrators, and engineers is a little trickier. These types of e-mail recipients don't really enjoy handling e-mail (inbound or outbound) and most find that e-mail is just a speed bump which interrupts their productivity.

If you're not technical, you might be asking yourself: "I need to e-mail technical people and they need to take what I say seriously? How do I do it?" It's not impossible, but the rest of this blog post should help.

Continue Reading...

Filed under: IT No Comments
18Aug/110

MotoHelper 2.0.24 Consuming free space

A client of mine's laptop ran out of free space.  I did a scan and noticed the file MotoHelper.log was using it all.   After deleting the file it began to consume all the free space again after a few days.  I uninstalled the MotoHelper software and all is well.  I couldn've tried updating it but the client did not need the software.

The file path is...
C:\Program Files\Motorola\MotoHelper\MotoHelper.log

11Aug/110

Exchange 2003 store won’t mount

One of the Windows SBS 2003 servers I administer had a BSOD and after bringing it back up the Exchange store wouldn't mount.  It gave the error "The database files in this store are inconsistent."

I used the Eseutil.exe utility to check the consistency of the store.
"c:\Program Files\Exchsrvr\bin\eseutil.exe" /mh "c:\Program Files\Exchsrvr\MDBDATA\priv1.edb"

From the output I noticed 2 things.  The state was set to dirty shutdown and one of the logs was missing or corrupt.
State: Dirty Shutdown
Log Required: 16655-16655 (0x410f-0x410f)

I tried running Eseutil.exe /r but received an error.  I then proceeded to run Eseutil.exe /p which repairs the database.  Once that was complete I ran an offline defrag, Eseutil.exe /d, and lastly isinteg.exe -s servernsmr-fix -test alltests which checks for integrity weaknesses.

I was then able to mount the store and users were able to access their mailboxes.  A word of caution Eseutil.exe /p is usually a last resort and can cause some data loss.  Microsoft recommends restoring from a clean backup rather then doing a repair.  I'll leave that decision up to you.

6Aug/110

CentOS 6

I noticed CentOS 6 is out.  I downloaded CentOS-6.0-i386-netinstall.iso.  So far it's working flawlessly with Virtualbox.

For those that don't have the netinstall URLs they are...

32 bit: http://mirror.centos.org/centos/6/os/i386/
64 bit: http://mirror.centos.org/centos/6/os/x86_64/

Tagged as: , , No Comments