Android Tablets

2012-03-30 Thread Nathan England
I'm in the market for an Android tablet. I'm seriously looking at the Amazon Kindle Fire but the Asus Transformer is not bad either, just a little expensive. I'd like to not go over $300. Any recommendations? A little history, I've previously had the HTC Hero and Samsung Galaxy S both running

Re: ssh in network

2012-03-30 Thread Mike Ballon
I spun up an ubuntu-desktop VM. At least the desktop distro does not have sshd installed. Try sudo apt-get install openssh--server I also noticed the ubuntu doesn't use v5 init scripts so I guess it's service ssh start, although after I installed it with the apt command above it was already

Re: ssh in network

2012-03-30 Thread Dazed_75
Make that: Try sudo apt-get install openssh-server On Fri, Mar 30, 2012 at 6:07 AM, Mike Ballon mike.bal...@gmail.com wrote: I spun up an ubuntu-desktop VM. At least the desktop distro does not have sshd installed. Try sudo apt-get install openssh--server I also noticed the ubuntu doesn't

Re: ssh in network

2012-03-30 Thread Michael Havens
Try sudo apt-get install openssh-server I've tried that and it won't install. I think it is because their are three packages in there that won't install (linux-image-3.0.0-15-generic, linux-image-3.0.0-16-generic, and linux-image-3.0.0-17-generic). How do I remove those packages? I just got a

Re: ssh in network

2012-03-30 Thread Mike Ballon
Lets try the other route; what is your output to dpkg --get-selections | grep openssh ? Also post the output of dpkg --get-selections | grep linux-image just for fun. On Fri, Mar 30, 2012 at 11:49 AM, Michael Havens bmi...@gmail.com wrote: Try sudo apt-get install openssh-server I've tried

Re: ssh in network

2012-03-30 Thread Michael Havens
dpkg --get-selections | grep openssh openssh-clientinstall openssh-serverdeinstall dpkg --get-selections | grep linux-image linux-image-3.0.0-12-genericinstall linux-image-3.0.0-14-genericinstall linux-image-3.0.0-15-generic

sound card

2012-03-30 Thread Michael Havens
I do not know what happened. The sound on my print server stopped working. I then clicked on the speaker icon to turn it up and I see it is maxed. So then I clicked 'sound settings' and the output volume is maxed so I investigate the tabs. The first tab (hardware) has nothing in the 'choose a

Re: ssh in network

2012-03-30 Thread Michael Havens
you know... I am having such problems that I think I should just reinstall everything. What do you think? On Fri, Mar 30, 2012 at 10:07 AM, Michael Havens bmi...@gmail.com wrote: dpkg --get-selections | grep openssh openssh-clientinstall openssh-server

network issue blocks svn code pull?

2012-03-30 Thread Steven A. DuChene
I am attempting to pull some code from an open source on-line repository. When I issue the svn checkout command it just hangs for a long time and then finally times out with an error message about being unable to connect to the remote host. I have been given the svn link by one of the project

Re: network issue blocks svn code pull?

2012-03-30 Thread Lisa Kachold
Hi Steven: On Fri, Mar 30, 2012 at 3:47 PM, Steven A. DuChene linux-clust...@mindspring.com wrote: I am attempting to pull some code from an open source on-line repository. When I issue the svn checkout command it just hangs for a long time and then finally times out with an error message

Re: network issue blocks svn code pull?

2012-03-30 Thread Mike Ballon
no good: svn://clusterresources.com/torque/branches/4.0-fixes svn: Can't connect to host 'clusterresources.com': Operation timed out svn list svn://clusterresources.com/torque svn: Can't connect to host 'clusterresources.com': Operation timed out On Fri, Mar 30, 2012 at 6:47 PM, Steven A.

Re: network issue blocks svn code pull?

2012-03-30 Thread Matt Graham
From: Steven A. DuChene linux-clust...@mindspring.com Can anyone else try the following svn checkout command and let me know if it works for you? svn co svn://clusterresources.com/torque/branches/4.0-fixes I get connection timed out as well. It's highly probable that their server's gone

Re: network issue blocks svn code pull?

2012-03-30 Thread Lisa Kachold
It appears to be hosted on/by http://www.adaptivecomputing.com/resources/docs/ You can also just do an apt-get or yum? On Fri, Mar 30, 2012 at 6:50 PM, Matt Graham danceswithcr...@usa.netwrote: From: Steven A. DuChene linux-clust...@mindspring.com Can anyone else try the following svn

Re: ssh in network

2012-03-30 Thread Mike Ballon
I'd say yes, not sure why there are two linux-image packages. Of course I'm not an ubuntu expert You can try to download the deb package yourself and install with dpkg with a --force for a last ditch effort. There is always grabbing the tarball and installing from source as well :) On Fri, Mar