You can ignore that error (command not found: ipconfig /all). It looks like the uuid plug-in doesn't try to detect the OS and just runs both ifconfig (UNIX) and ipconfig (Windows) commands. What it's trying to do is get a MAC address from one of your network interfaces which it successfully did.
Also, since you were running as root (saw that it wrote the file to /root/insoshi), you had ifconfig in your PATH. Typically, if you're running the install under another userid, you would also get an error that it couldn't find ifconfig. The reason is that /sbin (where ifconfig is located) is usually not part of a non-root user PATH since it contains sys admin binaries. You would just need to add /sbin temporarily to the PATH before running script/install. Long On Wed, Sep 24, 2008 at 11:34 AM, Thanh Doan <[EMAIL PROTECTED]> wrote: > > Hi Long/Michael: > > I got an error while trying to clone and install insoshi. I use ubuntu > 8.04. I use option 2 of the following guide > http://sites.google.com/a/insoshi.com/insoshi-guides/Installation > > After installing sphinx, install rails 2.1.1, all needed gems I ran > script/install > > And I got the an error in step 12. > > == 12 CreateLocalKeys: migrating > ============================================== > UUID: No UUID state file found, attempting to create one for you: > /root/insoshi/vendor/rails/activerecord/lib/active_record/migration.rb:403: > command not found: ipconfig /all > Found the following IEEE 802 NIC MAC addresses on your computer: > 00:1e:c9:09:0d:09 > 00:1f:3c:7c:89:af > Selecting the first address 00:1e:c9:09:0d:09 for use in your UUID state > file. > Created a new UUID state file: /root/insoshi/uuid.state > == 12 CreateLocalKeys: migrated (0.2446s) > ===================================== > > it seems like ipconfig /all is not portable command. Can you please > advise what I need to do? > > Thanks > > Thanh Doan > > > > -- Long Nguyen [EMAIL PROTECTED] --~--~---------~--~----~------------~-------~--~----~ Insoshi developer site: http://dogfood.insoshi.com/ Insoshi documentation: http://docs.insoshi.com/ You received this message because you are subscribed to the Google Groups "Insoshi" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/insoshi?hl=en -~----------~----~----~----~------~----~------~--~---
