Entries Tagged as '► Downloads'

Desktop Backgrounds

I use a lot of virtual machines, and I often RDP to my servers to manage them; sometimes I’ll have several windows open at once and it becomes fairly easy to get a little confused as to what window is associated with which machine.

Long long ago (in a galaxy far far away) I started making desktop background images that contained the machine name and installing them on each machine.  That was a fair amount of work, and require configuration on each and every machine.

Then I found BgInfo (from SysInternals, now Microsoft), and that was a great solution — but it did still require a moderate amount of configuration on every machine…

So, I created an “installer” for BgInfo that puts all the files in the right places, and creates the startup link so as to almost completely automate the configuration (OK – you have to run a single command on each machine; but if you map to a share or put this on a thumb drive it’s really simple).

BgInfo (my installer; includes an older version of BgInfo)

BgInfo on Microsoft

Originally posted 2010-03-02 02:00:42.

Automating Clean Manager in Windows

Using clean manager on older versions of Windows (in particular) always requires setting the options, which isn’t hard, but makes it a little hard to automate as part of a larger process of cleaning up your drive.

I made my life a little easier to run clean manager by writing a batch file (and registry file) that you can downloads (in a 7z archive) via cleanup_disk.7z

Originally posted 2010-03-21 01:30:47.

Macbuntu – Installing

Sometimes form adds significantly to function… and I’d say that Macbuntu is a good example of that.

Macbuntu strives to make (Ubuntu) Linux look and feel much more like a Mac; and while it doesn’t let you run Mac software (you’d probably want to look into Darwin — based Apple Open Source releases that formed the base of OS-X) it does make the user interface much more “human” friendly.

Install Macbuntu makes some substantial changes to your Ubuntu installation, and you probably want to try it out in a virtual machine or on a machine that isn’t critical first — you might not like it, and there’s a slight chance things might go horribly wrong.

Here’s a cook-book approach.

Install Ubuntu Desktop 10.10 (if you install a different version you’ll need to adjust the version of Macbuntu you install)… and if this is just a test, the 32-bit version is fine.

Use the package manager to add Firefox, Thunderbird, and Chromium to your installation.

Go ahead an update everything

Launch each of the above once (you don’t have to configure an account in Thunderbird — but it’s not a bad idea to go ahead and enter one).

Then download, unpack, and install Macbuntu.  You can use the below commands in a terminal window (without elevated privilege — the install script will ask when needed) to do that (or you can download and install in any way you’re most comfortable).

wget https://downloads.sourceforge.net/project/macbuntu/macbuntu-10.10/v2.3/Macbuntu-10.10.tar.gz -O ~/Downloads/Macbuntu-10.10.tar.gz
tar xzvf
~/Downloads/Macbuntu-10.10.tar.gz -C /tmp
cd /tmp/Macbuntu-10.10/
./install.sh

You can select all the defaults as you go through the installation; and you certainly can enable more of the “eye candy” (I wouldn’t do that if you’re running on a really low end machine).

When Docky is installed it will auto-configure “known” applications that are installed on your machine (that’s why you wanted to install Firefox, Thunderbird, and Chromium before starting this).

Also, at the end of the installation you’ll be given the opportunity to download and install plug-ins for Firefox and Thunderbird that will make them more Mac-like; and you’ll be given the opportunity to download and install a theme for Chromium that does the same (in Chromium, you’ll need to enable GTK+ theme and system title bar and borders as well if you want the “full” effect).

You’ll probably want to decide what you want on your doc — you may want to eliminate one of the web browsers and one of the email clients — but it’s up to you.  Personalize and play… I’ve been running Macbuntu on my netbook for awhile now and I’m quite happy with it.

NOTE:
There are other packages that allow you to give a Mac-like look to Linux, Macbuntu is specfically intended for Ubuntu, if you don’t run Ubuntu you should consider Mac4Lin instead.

This post repeats a great deal of material found in yesterday’s post on Macbuntu — it’s targeted mainly at installation.  And yes, the fact that I’ve done two posts in two days indicates that I really think this is something that has potential.

Originally posted 2010-11-15 02:00:26.

Null SMTP Server

For some time now I’ve wanted an efficient way to be able to send myself rich email without having to waste a lot of bandwidth; so I wrote what I call a “null” SMTP server.

It’s a dotNET application (written in C#) that sits in the System Tray and “talks” SMTP.

You point your mail client’s outbound SMTP to localhost (127.0.0.1), it say “OK” to just about everything, and throws away the message (well — internally I have a logging method, but right now I don’t expose that)… doesn’t sound really useful does it?

How do I use it?

Easy; I setup an IMAP account that uses this as the send path, and the IMAP server as the receive path — Windows Mail (or Live Mail) will send the message (which throws it away basically) and then upload a copy to my “sent” folder.  I cut down on my bandwidth (and time) and still get a copy of the email I wanted.  In case you’re wondering, I use email to “record” lots of information (contents of web pages; to do list items; etc — since my IMAP server stores the messages in a format that Windows Desktop Search can index it makes it a snap for me to manage large amounts of information — and it by it’s very nature is shared… yes I could use OneNote, but previous to 2007 it’s clunky and it doesn’t share the information without a SharePoint server — and I already have an IMAP server, and already archive some of my email).

Here’s a link to the installer for it; I haven’t heavily tested either the installer or the applet — but I’m using it.

Null SMTP Server Installer

Remember to set your outbound SMTP connection to localhost (127.0.0.1); you don’t want authentication or SSL / TLS (I don’t support them — and won’t).

Originally posted 2008-10-21 21:00:21.

WinAMP PLS Play List Files In Windows Media Player

I’ve been listing to “Internet radio” some on my computer while I work; but the only utility I had loaded on my computer that handled .pls files was Nero Showtime… and I preferred to have Windows Media Player handle it.

So I created a little Windows program in C# (it would be trivial to do in any language, but that’s my preference at the moment) and associated it with .pls files that does nothing but take file1 out of the play list and url-ize it in a format that Windows Media Player likes and pass it on to Windows Media Player.

Give it a try!

Installer: WinAMP Play List for Windows Media Player Installer

Playlists: http://www.di.fm/

You can save the MP3 play list to your computer and you need not visit the web site again.

Originally posted 2008-08-28 16:45:09.

#$%^ Documents and Settings

I wrote this little batch file to make Windows XP and Windows Server 2003 have a user directory structure more similar to Windows Vista, Windows Server 2008, and Windows 7.

You simply need to run it as a user with administrative privileges and it will create the “User” directory in the root of your drive along with all the other more “sane” directory structures that the newer Windows use — don’t worry, it uses links so that you won’t have two copies of the information, and applications that expect the old structure will continue to work.

There is an older BLOG post that describes how it works:  Revise Windows XP “Home” Directory Structure if you’re interested in the details.

MkLinks

Originally posted 2010-03-03 02:00:37.

Automating Clearing Windows Temp

I’ve never figured out why Windows and Windows applications don’t properly clear out the temporary directory, but they don’t and certainly a lot of “junk” can accumulate there.

I made my life a little easier clear the temp by writing a batch file that you can downloads (in a 7z archive) via cleanup_temp.7z

Originally posted 2010-03-24 01:30:31.

Remove Net Meeting

If you run an older version of Microsoft Windows (Windows XP or Windows Server 2003 for instance) and you don’t use Net Meeting, you can remove it by typing the following command (all on one line)

%SystemRoot%\System32\rundll32.exe setupapi,InstallHinfSection NetMtg.Remove 132 msnetmtg.inf

Or download a batch file (in a 7z archive) via remove_netmeeting.7z

Originally posted 2010-03-15 01:30:24.

Corel PaintShop Pro Malware

When you install Corel PaintShop Pro X2 (version 12) you get an extra service that you’re not told about — ProtexisLicensing.

It’s alleged to be spyware that monitors your system and reports back to the software vendor.

Removing it is simple:

  1. Use the service manager GUI to stop it and set it to disabled (that’s probably enough, but not for me).
  2. Open a command prompt (with elevated priviledges on Vista, Win7, or Server2008) and type “sc delete protexislicensing”
  3. Now delete the file “C:\Windows\SysWOW64\PSIService.exe”

For your convenience I’ve included the command to do all these tasts below; simply put them into a batch file and run it (withe elevated priviledges) or copy paste execute each line in a command window.

Odd that I haven’t seen federal charges against Corel for cyber terrorism — they certainly didn’t have my permission to install any type of monitoring software on my machine (and that’s probably true of all their paying customers).

I certainly don’t feel that companies that take actions like this are on any higher moral or legal ground than software pirates — while perhaps not as devious as the root kits many software suppliers installed, it is every bit as invasive.

Join me in boycotting Corel (and any other company that violates the trust of it’s customers)… as a former first lady once said:

Just Say NO!

- Nancy Reagan

——

disable_corel_spyware.bat

sc stop protexislicensing
sc config protexislicensing start= disabled
sc delete protexislicensing
del “%windir%\SysWOW64\PSIService.exe”

You can also download a “fancy” batch file to do the job from my server as a batch file in a 7zip archive disable_corel_spyware.

Originally posted 2010-01-16 01:00:43.

FreeNX

I’ve been using NX technology to remotely connect to my Linux boxes for some time now, and I find it to be a great solution for remote desktop (very similar in many ways to Microsoft’s RDP — but based on a differential X compression system more closely aligned with *nix’s roots).

Like with so many Open Source projects there are multiple versions you need to consider.

Google produced a version called neatx, but it really doesn’t seem to be an active project; nor does it have the features (or stability) of FreeNX.

Nomachine.com produces a commercial and community edition they refer to as nx.  The main problem with using their product on a server is that it’s limited to the number of users — and I mean users, not active connections.  But it’s likely that you’ll download their free client for Windows, OS-X, Solaris, or even Linux.

An issue with setting up FreeNX on Ubuntu is that it’s not part of the distribution (or in the distribution repositories) so you’ll need to add the FreeNX Team PPA (I won’t go into details, if you look at the “FreeNX (on Ubuntu)” link below you can view the community documentation, which is well written and makes the task of installing FreeNX very straight forward.

With both FreeNX and nextx, occasionally the very first session to the server (after a reboot) will not establish; but launching it a second time works fine.

With neatx, after a reboot the Linux server leaves the session files (that’s not as egregious as you might think, since those sessions files allow a disconnected client to resume a session — had the machine not been restarted).  What this causes is an error in trying to establish the “same” client connection again; so you have to clear out the old session files.  I found that just adding a few lines to the rc.local file was a better solution (that way I never forgot; and yes there is a caveat — but I’m willing to deal with the possibility of deleting session files that might be resume-able).

# rc.local

# clear out any lingering nx (neatx) sessions
if [ -d /var/lib/neatx/sessions ]; then
rm -rf /var/lib/neatx/sessions/*
fi

So I’ve told you all about installing it, and some of the pitfalls — but I haven’t really said much about it other than to wave my hands and liken it to Microsoft RDP.

Well, consider sitting at a Windows machine (or Mac, Solaris, Linux) and launching a program that puts your Linux desktop on your machine in a window — allowing you to interact with the Linux machine just like you were sitting in front of the monitor attached to it (if it had a monitor).

And just like logging in locally, you can use any display manager (gdm, kdm, xdm, etc) that you’ve got installed and configured to run — in fact, you can launch multiple sessions each with different display managers simultaneously.

Yeah, lots of people don’t install any of the graphics on a server — but I find that there really isn’t much resource hit on installing (or using) a graphical UI on a server; and I’m willing to do that to have the ability to use a GUI when I want to (you can certainly still ssh into the box; in fact, FreeNX will require that you setup ssh — which is easiest to do with tasksel; of course in 10.10 you’ll have to install that using apt-get).

Anyway, whether it’s for you or not will depend on how you use your Linux machine; for the moment I haven’t abandoned my Windows desktop (my scanner will not work under Linux); so I have the option of starting up my desktop with Ubuntu (you can use wubi for that if you want to make it virtually painless, and it makes it easy to change your mind later on); starting a virtual machine (using VirtualBox of course) running Ubuntu; or remoting into my server running Ubuntu using NX/FreeNX.

FreeNX

FreeNX (on Ubuntu)

NX Technology (on Wikipedia)

Originally posted 2010-11-17 02:00:26.