The uClibc dev system includes SSHD, but you need to set up host keys in /etc first: [root@crackers /]# ssh-keygen -t dsa -f /etc/ssh_host_dsa_key Generating public/private dsa key pair. Enter passphrase (empty for no passphrase): Enter same passphrase again: Your identification has been saved in /etc/ssh_host_dsa_key. Your public kkey has been saved in /etc/ssh_host_dsa_key.pub. The […]
SSHD on GIAGD
New GIAGD distribution
For more information on the fabulous furry GIAGD fun, see this article. I revisited this, because there is a new root filesystem available at uclibc that includes perl and ssh. I nosed around for new versions of the extra source code I needed to get housey to boot. Here are some links: Lilo NASM GPM […]
Debian on a USBCard — Part 1 – Creating the filesystem
We have used our GIAGD distribution for our various utility computers that run stuff like our 8048 dev system and our chicken cam. It is a bit of a pain to maintain our own distribution based on uClibc; however, there is a fabulous new development. You can now get a port of Debian woody compiled […]
Debian on a USBCard — Part 2 – Transferring the Filesystem
In this article we discussed the Debian port to uClibc, and we created an ext3 filesystem on a USBCard. Now, we need to transfer the filesystem from the tarball to the USBCard. First, let’s mount our newly created filesystem: root@srv-1 / # mount -t ext3 /dev/sdc1 /mnt root@srv-1 / # mount /dev/hda3 on / type […]
Debian on a USBCard — Part 3 – Compiling the Kernel
In this article we transferred the filesystem to our UBCard. Now, we need to create a kernel. Before we create our kernel, though, we need to know what options to compile in. We are starting with our GIAGD .config from this article. Now, we are using VMware to bring this filesystem up. Since we don’t […]
Debian on a USBCard — Part 4 – Final Configuration
In this article we created a kernel for our USBCard system. Once we have the kernel in place we need to run lilo and adjust some other configuration files. To do this, just boot off of the Superrescue CD again and: mount -t ext3 /dev/sda1 /mnt chroot /mnt Now, we can edit /etc/lilo.conf: boot = […]
A Small GNU/Linux System – Revisited
We have a number of utility computers running that are based on uClibc. Every time we rebuild the devices, we have to basically create a new distribution. It appears that the Debian packages are no longer being maintained. That is OK, though, because we have figured out most of the tricks to getting this to […]
Running GTK Apps Without X
Check out the GTK on DirectFB project, if running an app like the GIMP without X11 excites you. DirectFB uses the framebuffer device in the Linux kernel, and can replace X as a “Window System”, or at least, the basic parts of one. The fact that an app as complicated as the GIMP can run […]
Openbravo ERP – Initial VM Evaluation
Openbravo is an Open Source web-based Enterprise Resource Planning (ERP) system. The license is a variation of the Mozilla Public License. The Openbravo project is very popular and has more than 100 employees. The management team has an impressive lineup, including Cees Poortman who was the Managing Director of Navision Netherlands, Director for Microsoft Business […]
REALbasic: The PC is the Computer
REALbasic creates a single machine code executable that will run on Older Macs, Mac OS X, GNU/Linux, and Microsoft Windows systems from 98 on. There is no requirement to install a bunch of DLLs, so the target system has fewer side effects to worry about. Certainly rollback is quite clear. Further, you don’t need a […]
Using Regular Expressions With REALbasic
Here is a bit of code from Mountain Climbing Journal that combines an if statement and regular expressions to match an image and display it: if left(me.SelText,9)=”<img src=” AND Keyboard.AsyncControlKey=TRUE then dim rg as new RegEx dim match as RegExMatch dim f as folderItem dim imgsrc as string if instr(me.SelText,”/”) <> 0 then rg.SearchPattern=”<img src=”+chr(34)+”\S*/(\w+\.\w+)”+chr(34)+”>$” […]
Binding EditFields to a Multi-Column ListBox
If you have a ListBox with multiple columns and want to bind EditFields to the columns so that when you select a row with a mouse click or with arrows the EditFields match the columns in the ListBox, then use the change event for the ListBox and assign the EditFields. For instance, for a ListBox […]
Free Database Tools for Linux – Part One: TOra
If you work with commercial databases Oracle or Microsoft SQLServer, there’s a couple of free tools you ought to know about. For Oracle admins, users, and developers, there’s TOra, the Toolkit for Oracle. By our estimation, it’s as good as TOAD and free is a VERY good price. TOra runs on Linux, Solaris, and Windows. […]
Free Database Tools for Linux – Part Two: SQSH
I ran across SQSH when I was building the Perl DBD:Sybase module to connect to MS SQLServer databases for monitoring purposes. Both SQSH and DBD:Sybase can use a set of free libraries to connect to SQLServer instead of the Sybase client libraries. I thought this was pretty darn cool. I also thought it was cool […]
Copying Table Structures With MySQL
We often have to get basic tables in place for our MySQL web backend. To create a new database: [root@main gg]# mysql -p Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 8374 to server version: 3.23.54 Type ‘help;’ or ‘\h’ for help. Type ‘\c’ to […]
Creating a Database With MySQL
Let’s say we want to track our servers using a database instead of those nasty spreadsheets that many of us use. MySQL is a pretty simple and cheap way to get started. We are going to use a blank root password in these examples to ease typing, however, you should change the root password following […]
Importing Spreadsheets Into MySQL
In this article, we created a database in MySQL, as well as a sample table called systemsdoc. This article is for you screwheads that still document your systems with Excel spreadsheets. Eventually, we will show you how to run reports and update the database via customized web pages. First, though, we need to get the […]
Getting phpMyAdmin to Work With Gentoo
We emerged Apache to start, and noticed that PHP didn’t work correctly. Kinda makes sense, but ya gotta start somewhere. We’ve relied on RPMs in the past, as in this article. There are some gotchas. Agatha’s Gentoo workstation is a year old or so, now, so emerge mod_php and emerge phpmyadmin didn’t quite work as […]
Adding Records to MySQL Databases With HTML/PHP
In this article, we loaded up our new MySQL database with data. Adding records from a CLI tool is a bit cumbersome. PHP is a great way to add records to a MySQL database. For more information on PHP, see our articles here. The first step in using PHP is to set up the database […]
Updating Records in MySQL Databases With HTML/PHP
In this article we added a record to our systems database. We made a mistake, though, and would like to update the record so that the date is correct. Here is the current date: mysql> select manu, model, deploy_date, sernum, sysversion from systemsdoc -> where UID=8; +—————–+———+————-+——–+————–+ | manu | model | deploy_date | sernum […]