And boys -- let's watch the swearing.

Mayor ,'Chosen'


Buffistechnology 3: "Press Some Buttons, See What Happens."

Got a question about technology? Ask it here. Discussion of hardware, software, TiVos, multi-region DVDs, Windows, Macs, LINUX, hand-helds, iPods, anything tech related. Better than any helpdesk!


Sean K - May 30, 2009 9:35:29 am PDT #10215 of 25501
You can't leave me to my own devices; my devices are Nap and Eat. -Zenkitty

Scola FTW!


tommyrot - May 31, 2009 4:40:59 am PDT #10216 of 25501
Sir, it's not an offence to let your cat eat your bacon. Okay? And we don't arrest cats, I'm very sorry.

So who's using virtualization software for the Mac. I've used Parallels for the Mac, but I don't think I've used the latest version. But I've heard VMWare is really good too.


le nubian - May 31, 2009 5:02:44 am PDT #10217 of 25501
"And to be clear, I am the hell. And the high water."

I use Parallels and I like it.


le nubian - May 31, 2009 10:03:08 am PDT #10218 of 25501
"And to be clear, I am the hell. And the high water."

was someone looking for netbook info,

you might want to try this: [link]


Dana - May 31, 2009 10:05:04 am PDT #10219 of 25501
I'm terrifically busy with my ennui.

That was me. I think I'm about to buy this one:

[link]


omnis_audis - May 31, 2009 11:49:11 am PDT #10220 of 25501
omnis, pursue. That's an order from a shy woman who can use M-16. - Shir

I used Parallels when it first came out. When I had my major HD crash last year (or 18 months ago...whenever), the tech guy asked did I have a dual boot machine. I said yes. He asked, had I been doing a lot of virtual machine stuff. Ya, with dual screen, it works great. He mentioned he had seen an increase in HD failures since Parallels came out. Anecdotal evidence? Actual cause/effect? I dunno. I haven't reinstalled it since. I'll do the dual boot, if I need to play in windows.


Jon B. - May 31, 2009 12:06:06 pm PDT #10221 of 25501
A turkey in every toilet -- only in America!

Anyone use git? Actually, this may be more of a generic unix question. I installed git on my shared server using the instructions here. Namely,

cd ~/                          
test -d ~/src || mkdir ~/src   
cd ~/src                       
curl -O [link]
tar -xvzf git-1.6.3.1.tar.gz   
cd git-1.6.3.1 
./configure --prefix=$HOME
make
make install
echo "export PATH=$PATH:$HOME/bin" >> ~/.bashrc

It all seemed to run fine -- no errors. But when type "git" on the shell command prompt, I get the response "git: command not found". This happens even if I'm in the bin folder where I can clearly see that there's an executable (755) file called "git". What am I missing?


Tom Scola - May 31, 2009 12:07:56 pm PDT #10222 of 25501
Remember that the frontier of the Rebellion is everywhere. And even the smallest act of insurrection pushes our lines forward.

Try /usr/local/bin/git


Jon B. - May 31, 2009 12:16:24 pm PDT #10223 of 25501
A turkey in every toilet -- only in America!

The equivalent of that on my server is

/hsphere/local/home/wobbly/bin/git
and that DID work!

Now what?


Tom Scola - May 31, 2009 12:18:54 pm PDT #10224 of 25501
Remember that the frontier of the Rebellion is everywhere. And even the smallest act of insurrection pushes our lines forward.

You need to edit your .profile and add /usr/local/bin to your PATH.