You are currently browsing the monthly archive for August, 2006.
I helped a friend out today who wanted to reinstall Windows on his Dell laptop. When he inserted the CD into the drive and rebooted, the computer still booted into Windows and would not boot from the CDROM drive for him. Having seen this many times before, I told him to change the boot order so that he could boot from the Windows installation CD. Since he was unsure of how to do this, I have a feeling that most people would be stuck were they in the same situation. Here are the most common keystrokes that will get you into your BIOS. Once you are there, change the “boot order” or “boot sequence”, so that the CDROM is the first item. Once that has completed, save the changes and exit. Presto! you can now start the installation and proceed with glee.
Phoenix BIOS (older)
- Ctrl+Alt+Esc
- Ctrl+Alt+F1
- Ctrl+Alt+S
- Ctrl+Alt+Enter
- Ctrl+Alt+F11
- Ctrl+Alt+Ins
Award BIOS
- Ctrl+Alt+Esc
- Esc
- Del
AMI BIOS (most common)
- Del
IBM BIOS
- Ctrl+Alt+Ins F1
Compaq BIOS
- F10
Dell BIOS
- F2
Related Articles:
Mephisto is a CMS engine written using Ruby on Rails. The newest version has been released today and many people are very excited about it as it adds yet another Rails application to the ever-expanding list.
Some quick Mephisto features:
- Easy Typo and Textpattern Blog Conversion
- Easy Asset Management
- Slick GUI
- Article Tagging, Filtering, and Improvements
Related Articles:
I came across a great tip that should help anyone trying to make an FTP client in Ruby. Basically it seems the Net/FTP library is attempting reverse lookups of addresses you try to connect to (which is in itself fine, but perhaps unnecessary). The problem arises because the reverse lookup is called each time a new file transfer is initiated. blade.nagaokaut.ac.jp/cgi-bin/scat.rb/ruby/ruby-talk/112801
Here’s the resolution I found in the japanese forum:
BasicSocket.do_not_reverse_lookup = true
Related Articles:
Firstly, grab all of the image files from Sun
You’ll need a Sun ID, and you don’t need to use the Java download helper, but if you’re on a slow connection it will certainly help (if anything, it helps by queuing your downloads).
Once all of the files have been downloaded, you will need to extract them. I use WinRAR to do this, but the choice is yours.
Navigate to the folder you have downloaded the files to. Select all of the files, either by dragging a selection box, or by ctrl-clicking, or shift-clicking. Right-click, then click on “extract files here”. Wait a while (this is a full DVD image).
Once this process has completed we will need to concatenate the files together.
The next step is not required, but I find it will help with everyday computing as well so I have included it.
You’ll need to somehow run a command in the folder that you have all of the Solaris files in. I use the Microsoft PowerToy to do that. Download and install it.
(Or you can use many other ways to do the same thing if you wish - the choice is yours)
Then find the folder you have downloaded the files to and right-click it. You will be offered the option to “Run Program” from the context menu. Click that button and paste the following into the resulting window.
copy /b
"sol-10-u1-ga-x86-dvd-iso-a"
+"sol-10-u1-ga-x86-dvd-iso-b"
+"sol-10-u1-ga-x86-dvd-iso-c"
+"sol-10-u1-ga-x86-dvd-iso-d"
+"sol-10-u1-ga-x86-dvd-iso-e"
sol-10-GA-x86-dvd.iso
you’ll see (if your files are on the drive “D” and you use Windows XP):
Microsoft Windows XP [Version 5.1.2600]
(C) Copyright 1985-2001 Microsoft Corp.
D:\sol-10-u1-ga-x86-dvd-iso-a
D:\sol-10-u1-ga-x86-dvd-iso-b
D:\sol-10-u1-ga-x86-dvd-iso-c
D:\sol-10-u1-ga-x86-dvd-iso-d
D:\sol-10-u1-ga-x86-dvd-iso-e
1 file(s) copied.
Voila! You can now burn the image using free software like IMGBurn, or commercial such as Nero, Roxio EasyCD, or Cheetah.
Related Articles:
If you run Ruby on Rails apps, or a Typo installation on Dreamhost, you may have noticed that you cannot access your stats page. Here’s the code that will get it running, quick and dirty, and have you poring over stats for HOURS!
You’ll want to login to your server using SSH, then edit the .htaccess file in your public folder, from within your home directory. Here’s how I did it as an example:
# pico /ruby.doesrails.com/public/.htacess
Cut and paste the following code:
# This is the stats rewrite rule for use with Dreamhost
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} ^/stats/(.*)$ [OR]
RewriteCond %{REQUEST_URI} ^/failed_auth.html$
RewriteRule ^.*$ - [L]
(select the code, use CTRL+C on windows, or APPLE+C on a Mac, then to paste use SHIFT+INSERT on most SSH clients, or simply right-click and select paste from the menu)
You can put this anywhere in the .htacess file and it should work, as long as it is after the
RewriteEngine On
rule that already exists.
Related Articles:

First you will need to add the Terminal Services Role to your Longhorn installation either through the Roles Wizard or by using the Software Manager. You may also wish to install the Web TS Role while you are there to allow users to connect to a website, authenticate, and run a remote app easily. Once this has been completed, restart the system as required and head to the Administrative Tools Control Panel. Here you will find the Remote Programs applet. From here we can browse to an application to publish, and export it as an RDP file compatible with both Vista and current versions of Windows. You may also wish to add authentication to the file, but remember that if the file will be used on another system the authentication settings will be lost. In my case I used Word 2007 Beta - so I log in, and the window goes full screen with only Word loaded! This is a great way to securely publish apps with the right config, and I can’t wait to see what happens in the final version. This is very similar to what Citrix does, but presumably (keeping fingers crossed).
Related Articles:

Recent Comments