Identify an external modem

June 29th, 2007

In addition to packing and identification stickers, you can identify an external modem by installing as a ’standard modem’, running the diagnostics and reading the responses for AT13 and AT16.

AndyM Computers

Offline Files tips

June 28th, 2007

“Incorrect Function” Error

When synchronizing offline files, some files give an error:

“Unable to make ‘Filename.ext’ available offline on \\Server\Share\Folder. Incorrect function.”

Solution found here

  1. Open My Computer
  2. Goto Tools–>Options
  3. Click on the Offline Files tab.
  4. Hold down CTRL+SHIFT and click DELETE FILES. This will completely clear the client cache and re-sync after a reboot.

“Files of this type cannot be made available offline” Error

Error message:

“Warnings occurred while Windows was synchronizing your data. Results: Offline files. Unable to make file name available offline. Files of this type cannot be made available offline.”

To suppress error message for specific file types:

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\NetCache\ExclusionErrorSuppressionList]
“*.pst”=dword:00000000
“*.mdb”=dword:00000000
“*.db?”=dword:00000000
“*.ldb”=dword:00000000
“*.mde”=dword:00000000
“*.mdw”=dword:00000000
“*.slm”=dword:00000000

To change the error message display for all types: (from here)
To change this default behavior, use Registry Editor (Regedt32.exe) to locate the following key in the registry:

[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Syncmgr]

Add the following registry value:

Value Name: KeepProgressLevel
Data Type: REG_DWORD
Value: 1 (hexadecimal)

You can add the following values and then quit Registry Editor:

1 – Pause on errors.
2 – Pause on warnings.
3 – Pause on errors and warnings.
4 – Pause and display INFO.

AndyM Computers, Windows

Stalk your tube line with Twitter

June 13th, 2007

twittertube1

I have been struggling to see the point of Twitter.com to be honest, but here’s something that does make it a little useful – Tom Morris has written a script that updates Twitter accounts with the current status

AndyM Useful Links

View CHKDSK log

April 26th, 2007

The log for CHKDSK can be found in the Windows Event Log. It’s in the Applications log and the source will be listed as Winlogon.

AndyM Computers, Software, Windows

Installing additional Ubuntu software

January 29th, 2007

To install additional software required to support various types of multimedia:

The GUI way

  1. Applications->Add/Remove Applications.
  2. Type xine into the search box at the top.
  3. Find “Xine extra plugins” in the list and tick it.
  4. Find and select “Gstreamer extra codec” and “Sun Java 5.0 Plugin”
  5. Press OK.

The Command Line way

This is much quicker as long as you know the names of the packages you want to install.

  1. Install codecs etc:
    sudo apt-get install sox vorbis-tools flac lame mpg321 faad faac
  2. Install the Xine-backend version of Totem:
    sudo apt-get install totem-xine

Flash v9

The version of Flash in Ubuntu 6.10 is v7 which is quite old. Lots of websites now require version 9, which is easy to install in Firefox:

  1. Go to http://www.adobe.com/products/flash/about/
  2. Click on the green jigsaw piece icon to install the current version of Flash.

AndyM Computers, Ubuntu Linux

CSS Code to allow Image Float in WordPress Themes

January 29th, 2007

To enable the ability to float images left or right, add the following code to the CSS stylesheet.

Obviously this works for any web page, I just happen to be doing it for this blog on WordPress.

Read more…

AndyM CSS, Web Development

Pastebin tools

January 29th, 2007

A pastebin is a website that allows you to paste text in order to share it with someone else on the web. They are useful for troubleshooting all sorts of programming and configuration issues.

Pastebin.com appears to be the original, and it allows a wide variety of syntax highlighting and also the creation of private Pastebins (private in the sense that only your content should be on there, but still available to anyone who knows the URL)

www.pastebin.ca doesn’t appear to be working properly at the moment so I can’t say much about it.

AndyM Computers, Useful Links

Mount MP3 network share located on main Windows PC

January 29th, 2007

SlimServer doesn’t like the Music Folder path in the form smb://computer/share – presumably it can’t use smbclient. I therefore need to mount this share in the filesystem.

Parts of this are taken from here and here.

Read more…

AndyM Ubuntu Linux

Installing SlimServer 6.5.1 on Ubuntu 6.10

January 28th, 2007

Ubuntu is based on Debian, so I followed the instructions on the Slim Devices website here and it worked fine. It basically involves adding the Slim Devices repository to Synaptic Package Manager (Settings/Repository->Third Party) and then installing using apt-get.

The next thing to do is mount the network share so it can be accessed by SlimServer.

AndyM Ubuntu Linux

Auto Mounting NTFS partitions at boot

January 28th, 2007

There’s a very useful Getting Started document over at UbuntuGuide which describes lots of basic configuration tasks.

In the Ubuntu 6.10 official documentation there seem to be references to a utility in System->Administration->Disks but apparently the Disks utility was removed in v6.10. It’s not difficult to edit the /etc/fstab file as on any other Linux. There are instructions in the Ubuntu documentation and also here

Read more…

AndyM Ubuntu Linux