Hey, I've been in a firefight before! Well, I was in a fire. Actually, I was fired from a fry-cook opportunity. I can handle myself.

Wash ,'War Stories'


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!


le nubian - May 31, 2009 5:02:44 am PDT #10217 of 25505
"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 25505
"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 25505
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 25505
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 25505
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 25505
hwæt

Try /usr/local/bin/git


Jon B. - May 31, 2009 12:16:24 pm PDT #10223 of 25505
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 25505
hwæt

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


Jon B. - May 31, 2009 12:22:18 pm PDT #10225 of 25505
A turkey in every toilet -- only in America!

Where would the .profile be? It's not in my home directory.


Tom Scola - May 31, 2009 12:25:53 pm PDT #10226 of 25505
hwæt

Create a .profile in your home directory containing the line

PATH=$PATH:/usr/local/bin