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 Cyanogenmod, and I'd really like something that I can stick with 
Cyanogenmod, though the Fire is lacking in some areas, as far as I understand 
there is no audio support... 

Thoughts?

-- 

Regards,

Nathan England

~
NME Computer Services http://www.nmecs.com
Nathan England (nat...@nmecs.com)
Systems Administration / Web Application Development
Information Security and Consulting
(480) 559.9681

signature.asc
Description: This is a digitally signed message part.
---
PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
To subscribe, unsubscribe, or to change your mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss

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 running.



On Thu, Mar 29, 2012 at 1:43 PM, Michael Havens bmi...@gmail.com wrote:
 Thanks for the help Mike. But it didn't work.

  bmike1@Michaels-PC:~$ sudo /etc/init.d/sshd start
  sudo: /etc/init.d/sshd: command not found

 I'm pretty dure that is because openssh-server Doesn't seem to be installed.
 I tried installing it but it won't install. I think it because it can't
 remove

  linux-image-3.0.0-15-generic
  linux-image-3.0.0-16-generic
  linux-image-3.0.0-17-generic


 On Thu, Mar 29, 2012 at 5:54 AM, Mike Ballon mike.bal...@gmail.com wrote:

 I don't have an ubuntu box to show output exactly, hopefully this will
 get you what you need just the same...

 type netstat -a | grep ssh on the print server host, you should get
 something like this:

 tcp        0      0 *:ssh                       *:*
     LISTEN

 If you don't see the output above, then ssh is not listen and you'll
 need to type sudo /etc/init.d/sshd start

 Try the netstat command again...

 If, in the first time running netstat you DID see the output, check
 your firewall by typing sudo /sbin/iptables -L | grep ssh, you
 should see something like this:

 ACCEPT     tcp  --  10.0.0.0/8           anywhere            state NEW
 tcp dpt:ssh

 If all that is correct the last thing to check is tcp wrappers, which
 probably are not as common as you once where, just cat out
 /etc/hosts.allow and /etc/hosts.deny for any related content.

 Cheers!

 On Tue, Mar 27, 2012 at 7:19 PM, Michael Havens bmi...@gmail.com wrote:
  Okay I figured out why the virtual (debian) couldn't ssh to the host
  (mint). I didn't have openssh-server installed in the mint. Now they are
  talking with each other nicely! Unfortunately I can't go from the either
  of
  those to the print-server (ubuntu). The errors given from both computers
  is
  'connection timed out'.
  I can ssh from the ubuntu to  to the debian and the mint with no
  problem.
  When I verified that openssh-server was installed on the ubuntu with apt
  it
  said:
 
   openssh-server is already the newest version.
   openssh-server set to manually installed.
 
  So I'm not too sure what that means. I think that is saying that the
  downloaddd package is the newest version but it isn't installed! If I'm
  correect on that point how do I install it and another question I have
  is
  how do I get it to load on boot? I think that installing it will take
  care
  of that but I just want to make sure.
  --
  :-)~MIKE~(-:
 
  ---
  PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
  To subscribe, unsubscribe, or to change your mail settings:
  http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss
 ---
 PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
 To subscribe, unsubscribe, or to change your mail settings:
 http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss




 --
 :-)~MIKE~(-:

 ---
 PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
 To subscribe, unsubscribe, or to change your mail settings:
 http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss
---
PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
To subscribe, unsubscribe, or to change your mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss


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 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 running.



 On Thu, Mar 29, 2012 at 1:43 PM, Michael Havens bmi...@gmail.com wrote:
  Thanks for the help Mike. But it didn't work.
 
   bmike1@Michaels-PC:~$ sudo /etc/init.d/sshd start
   sudo: /etc/init.d/sshd: command not found
 
  I'm pretty dure that is because openssh-server Doesn't seem to be
 installed.
  I tried installing it but it won't install. I think it because it can't
  remove
 
   linux-image-3.0.0-15-generic
   linux-image-3.0.0-16-generic
   linux-image-3.0.0-17-generic
 
 
  On Thu, Mar 29, 2012 at 5:54 AM, Mike Ballon mike.bal...@gmail.com
 wrote:
 
  I don't have an ubuntu box to show output exactly, hopefully this will
  get you what you need just the same...
 
  type netstat -a | grep ssh on the print server host, you should get
  something like this:
 
  tcp0  0 *:ssh   *:*
  LISTEN
 
  If you don't see the output above, then ssh is not listen and you'll
  need to type sudo /etc/init.d/sshd start
 
  Try the netstat command again...
 
  If, in the first time running netstat you DID see the output, check
  your firewall by typing sudo /sbin/iptables -L | grep ssh, you
  should see something like this:
 
  ACCEPT tcp  --  10.0.0.0/8   anywherestate NEW
  tcp dpt:ssh
 
  If all that is correct the last thing to check is tcp wrappers, which
  probably are not as common as you once where, just cat out
  /etc/hosts.allow and /etc/hosts.deny for any related content.
 
  Cheers!
 
  On Tue, Mar 27, 2012 at 7:19 PM, Michael Havens bmi...@gmail.com
 wrote:
   Okay I figured out why the virtual (debian) couldn't ssh to the
 host
   (mint). I didn't have openssh-server installed in the mint. Now they
 are
   talking with each other nicely! Unfortunately I can't go from the
 either
   of
   those to the print-server (ubuntu). The errors given from both
 computers
   is
   'connection timed out'.
   I can ssh from the ubuntu to  to the debian and the mint with no
   problem.
   When I verified that openssh-server was installed on the ubuntu with
 apt
   it
   said:
  
openssh-server is already the newest version.
openssh-server set to manually installed.
  
   So I'm not too sure what that means. I think that is saying that the
   downloaddd package is the newest version but it isn't installed! If
 I'm
   correect on that point how do I install it and another question I have
   is
   how do I get it to load on boot? I think that installing it will take
   care
   of that but I just want to make sure.
   --
   :-)~MIKE~(-:
  
   ---
   PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
   To subscribe, unsubscribe, or to change your mail settings:
   http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss
  ---
  PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
  To subscribe, unsubscribe, or to change your mail settings:
  http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss
 
 
 
 
  --
  :-)~MIKE~(-:
 
  ---
  PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
  To subscribe, unsubscribe, or to change your mail settings:
  http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss
 ---
 PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
 To subscribe, unsubscribe, or to change your mail settings:
 http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss




-- 
Dazed_75 a.k.a. Larry

Please protect my address like I protect yours. When sending messages to
multiple recipients, always use the BCC: (Blind carbon copy) and not To: or
CC:. Remove all addresses from the message body before sending a Forwarded
message. This can prevent spy programs capturing addresses from the
recipient list and message body.
---
PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
To subscribe, unsubscribe, or to change your mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss

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 message from the gui update manager with instructions on maybe
how to fix it (but it didn't) (a). The update manager was also talking
about a distribution upgrade and needing to update three packages. I
canceled out of that because the packages are all different versions and I
don't want to do a distribution upgrade.

-a-
bmike1@Michaels-PC:~$ sudo apt-get install -f
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following packages will be REMOVED:
  linux-image-3.0.0-15-generic linux-image-3.0.0-16-generic
  linux-image-3.0.0-17-generic
0 upgraded, 0 newly installed, 3 to remove and 3 not upgraded.
3 not fully installed or removed.
After this operation, 351 MB disk space will be freed.
Do you want to continue [Y/n]?
(Reading database ... 246431 files and directories currently installed.)
Removing linux-image-3.0.0-15-generic ...
Examining /etc/kernel/postrm.d .
run-parts: executing /etc/kernel/postrm.d/initramfs-tools 3.0.0-15-generic
/boot/vmlinuz-3.0.0-15-generic
update-initramfs: Deleting /boot/initrd.img-3.0.0-15-generic
run-parts: executing /etc/kernel/postrm.d/zz-update-grub 3.0.0-15-generic
/boot/vmlinuz-3.0.0-15-generic
/etc/default/grub: 1: GNU: not found
run-parts: /etc/kernel/postrm.d/zz-update-grub exited with return code 127
Failed to process /etc/kernel/postrm.d at
/var/lib/dpkg/info/linux-image-3.0.0-15-generic.postrm line 328.
dpkg: error processing linux-image-3.0.0-15-generic (--remove):
 subprocess installed post-removal script returned error exit status 1
No apport report written because MaxReports is reached already
  Removing
linux-image-3.0.0-16-generic ...
Examining /etc/kernel/postrm.d .
run-parts: executing /etc/kernel/postrm.d/initramfs-tools 3.0.0-16-generic
/boot/vmlinuz-3.0.0-16-generic
update-initramfs: Deleting /boot/initrd.img-3.0.0-16-generic
run-parts: executing /etc/kernel/postrm.d/zz-update-grub 3.0.0-16-generic
/boot/vmlinuz-3.0.0-16-generic
/etc/default/grub: 1: GNU: not found
run-parts: /etc/kernel/postrm.d/zz-update-grub exited with return code 127
Failed to process /etc/kernel/postrm.d at
/var/lib/dpkg/info/linux-image-3.0.0-16-generic.postrm line 328.
dpkg: error processing linux-image-3.0.0-16-generic (--remove):
 subprocess installed post-removal script returned error exit status 1
No apport report written because MaxReports is reached already
  Removing
linux-image-3.0.0-17-generic ...
Examining /etc/kernel/postrm.d .
run-parts: executing /etc/kernel/postrm.d/initramfs-tools 3.0.0-17-generic
/boot/vmlinuz-3.0.0-17-generic
update-initramfs: Deleting /boot/initrd.img-3.0.0-17-generic
run-parts: executing /etc/kernel/postrm.d/zz-update-grub 3.0.0-17-generic
/boot/vmlinuz-3.0.0-17-generic
/etc/default/grub: 1: GNU: not found
run-parts: /etc/kernel/postrm.d/zz-update-grub exited with return code 127
Failed to process /etc/kernel/postrm.d at
/var/lib/dpkg/info/linux-image-3.0.0-17-generic.postrm line 328.
dpkg: error processing linux-image-3.0.0-17-generic (--remove):
 subprocess installed post-removal script returned error exit status 1
No apport report written because MaxReports is reached already
  Errors were
encountered while processing:
 linux-image-3.0.0-15-generic
 linux-image-3.0.0-16-generic
 linux-image-3.0.0-17-generic
E: Sub-process /usr/bin/dpkg returned an error code (1)
bmike1@Michaels-PC:~$


On Fri, Mar 30, 2012 at 7:47 AM, Dazed_75 lthiels...@gmail.com wrote:

 Make that:
 Try sudo apt-get install openssh-server


 On Fri, Mar 30, 2012 at 6:07 AM, Mike Ballon mike.bal...@gmail.comwrote:

 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 running.



 On Thu, Mar 29, 2012 at 1:43 PM, Michael Havens bmi...@gmail.com wrote:
  Thanks for the help Mike. But it didn't work.
 
   bmike1@Michaels-PC:~$ sudo /etc/init.d/sshd start
   sudo: /etc/init.d/sshd: command not found
 
  I'm pretty dure that is because openssh-server Doesn't seem to be
 installed.
  I tried installing it but it won't install. I think it because it can't
  remove
 
   linux-image-3.0.0-15-generic
   linux-image-3.0.0-16-generic
   linux-image-3.0.0-17-generic
 
 
  On Thu, Mar 29, 2012 at 5:54 AM, Mike Ballon mike.bal...@gmail.com
 wrote:
 
  I don't have an ubuntu box to show output exactly, hopefully this will
  get you 

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 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 message from the gui update manager with instructions on maybe
 how to fix it (but it didn't) (a). The update manager was also talking about
 a distribution upgrade and needing to update three packages. I canceled out
 of that because the packages are all different versions and I don't want to
 do a distribution upgrade.

 -a-
 bmike1@Michaels-PC:~$ sudo apt-get install -f
 Reading package lists... Done
 Building dependency tree
 Reading state information... Done
 The following packages will be REMOVED:
   linux-image-3.0.0-15-generic linux-image-3.0.0-16-generic
   linux-image-3.0.0-17-generic
 0 upgraded, 0 newly installed, 3 to remove and 3 not upgraded.
 3 not fully installed or removed.
 After this operation, 351 MB disk space will be freed.
 Do you want to continue [Y/n]?
 (Reading database ... 246431 files and directories currently installed.)
 Removing linux-image-3.0.0-15-generic ...
 Examining /etc/kernel/postrm.d .
 run-parts: executing /etc/kernel/postrm.d/initramfs-tools 3.0.0-15-generic
 /boot/vmlinuz-3.0.0-15-generic
 update-initramfs: Deleting /boot/initrd.img-3.0.0-15-generic
 run-parts: executing /etc/kernel/postrm.d/zz-update-grub 3.0.0-15-generic
 /boot/vmlinuz-3.0.0-15-generic
 /etc/default/grub: 1: GNU: not found
 run-parts: /etc/kernel/postrm.d/zz-update-grub exited with return code 127
 Failed to process /etc/kernel/postrm.d at
 /var/lib/dpkg/info/linux-image-3.0.0-15-generic.postrm line 328.
 dpkg: error processing linux-image-3.0.0-15-generic (--remove):
  subprocess installed post-removal script returned error exit status 1
 No apport report written because MaxReports is reached already
   Removing
 linux-image-3.0.0-16-generic ...
 Examining /etc/kernel/postrm.d .
 run-parts: executing /etc/kernel/postrm.d/initramfs-tools 3.0.0-16-generic
 /boot/vmlinuz-3.0.0-16-generic
 update-initramfs: Deleting /boot/initrd.img-3.0.0-16-generic
 run-parts: executing /etc/kernel/postrm.d/zz-update-grub 3.0.0-16-generic
 /boot/vmlinuz-3.0.0-16-generic
 /etc/default/grub: 1: GNU: not found
 run-parts: /etc/kernel/postrm.d/zz-update-grub exited with return code 127
 Failed to process /etc/kernel/postrm.d at
 /var/lib/dpkg/info/linux-image-3.0.0-16-generic.postrm line 328.
 dpkg: error processing linux-image-3.0.0-16-generic (--remove):
  subprocess installed post-removal script returned error exit status 1
 No apport report written because MaxReports is reached already
   Removing
 linux-image-3.0.0-17-generic ...
 Examining /etc/kernel/postrm.d .
 run-parts: executing /etc/kernel/postrm.d/initramfs-tools 3.0.0-17-generic
 /boot/vmlinuz-3.0.0-17-generic
 update-initramfs: Deleting /boot/initrd.img-3.0.0-17-generic
 run-parts: executing /etc/kernel/postrm.d/zz-update-grub 3.0.0-17-generic
 /boot/vmlinuz-3.0.0-17-generic
 /etc/default/grub: 1: GNU: not found
 run-parts: /etc/kernel/postrm.d/zz-update-grub exited with return code 127
 Failed to process /etc/kernel/postrm.d at
 /var/lib/dpkg/info/linux-image-3.0.0-17-generic.postrm line 328.
 dpkg: error processing linux-image-3.0.0-17-generic (--remove):
  subprocess installed post-removal script returned error exit status 1
 No apport report written because MaxReports is reached already
   Errors were
 encountered while processing:
  linux-image-3.0.0-15-generic
  linux-image-3.0.0-16-generic
  linux-image-3.0.0-17-generic
 E: Sub-process /usr/bin/dpkg returned an error code (1)
 bmike1@Michaels-PC:~$


 On Fri, Mar 30, 2012 at 7:47 AM, Dazed_75 lthiels...@gmail.com wrote:

 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 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 running.



 On Thu, Mar 29, 2012 at 1:43 PM, Michael Havens bmi...@gmail.com wrote:
  Thanks for the help Mike. But it didn't work.
 
   bmike1@Michaels-PC:~$ sudo /etc/init.d/sshd start
   sudo: /etc/init.d/sshd: command not found
 
  I'm pretty dure that is because openssh-server Doesn't seem to be
  installed.
  I tried installing it but it 

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-genericdeinstall
linux-image-3.0.0-16-genericdeinstall
linux-image-3.0.0-17-genericdeinstall


On Fri, Mar 30, 2012 at 9:08 AM, Mike Ballon mike.bal...@gmail.com wrote:

 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 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?
 

---
PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
To subscribe, unsubscribe, or to change your mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss

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
device to configure' window. You know I am having so many problems with
this thing that I think I should just reinstall everything! What do you
think?
-- 
:-)~MIKE~(-:
---
PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
To subscribe, unsubscribe, or to change your mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss

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-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-genericdeinstall
 linux-image-3.0.0-16-genericdeinstall
 linux-image-3.0.0-17-genericdeinstall



 On Fri, Mar 30, 2012 at 9:08 AM, Mike Ballon mike.bal...@gmail.comwrote:

 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 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?
 




-- 
:-)~MIKE~(-:
---
PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
To subscribe, unsubscribe, or to change your mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss

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
developers so I am fairly certain it is correct but so far I have been
unable to pull the code I need. I have tried pulling code from other svn
on-line repositories and those seemed to work just fine.

Can anyone lese 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 even tried just a simple svn list command instead of a checkout and still
I got the same result. It hangs for some period of time and then finally
times out with an error about not being able to connect to the remote host.
--
Steven DuChene


---
PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
To subscribe, unsubscribe, or to change your mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss


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 about being unable to connect
 to the remote host. I have been given the svn link by one of the project
 developers so I am fairly certain it is correct but so far I have been
 unable to pull the code I need. I have tried pulling code from other svn
 on-line repositories and those seemed to work just fine.

 Can anyone lese 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


Just to check out the port 80 connections and we see a re-write to:
http://www.adaptivecomputing.com/products/open-source/torque/

I really don't see an svn ports open:

sh-3.2# nmap -PN clusterresources.com

Starting Nmap 5.00 ( http://nmap.org ) at 2012-03-30 18:03 MST
Interesting ports on mail.adaptivecomputing.com (204.15.87.226):
Not shown: 995 filtered ports
PORT STATE  SERVICE
20/tcp   closed ftp-data
21/tcp   open   ftp
22/tcp   open   ssh
80/tcp   open   http
8443/tcp open   https-alt

Nmap done: 1 IP address (1 host up) scanned in 69.46 seconds

sh-3.2# nmap -PN www.clusterresources.com

Starting Nmap 5.00 ( http://nmap.org ) at 2012-03-30 18:08 MST
Interesting ports on mail.adaptivecomputing.com (204.15.87.227):
Not shown: 994 filtered ports
PORT STATE  SERVICE
22/tcp   open   ssh
80/tcp   open   http
443/tcp  open   https
3306/tcp open   mysql
5001/tcp closed commplex-link
8443/tcp open   https-alt

Nmap done: 1 IP address (1 host up) scanned in 44.43 seconds

svn 3690/udp# Subversion
svn 3690/tcp# Subversion
sh-3.2# svn
Type 'svn help' for usage.
sh-3.2# svn list svn://clusterresources.com/torque/

svn: Can't connect to host 'clusterresources.com': Operation timed out
sh-3.2# svn info svn://svn.clusterresources.com/torque
svn: Can't connect to host 'svn.clusterresources.com': Operation timed out
sh-3.2# ipfw list
65535 allow ip from any to any
sh-3.2#

According to this:
http://www.clusterresources.com/torquedocs21/1.1installation.shtml
that's the right url:

You might email  Justin Pratt  pratt at
eecs.utk.eduhttp://www.supercluster.org/mailman/listinfo/torqueusers
Or join the TorqueUsersList:
http://www.supercluster.org/mailman/listinfo/torqueusers



 I even tried just a simple svn list command instead of a checkout and still
 I got the same result. It hangs for some period of time and then finally
 times out with an error about not being able to connect to the remote host.
 --
 Steven DuChene


 ---
 PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
 To subscribe, unsubscribe, or to change your mail settings:
 http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss




-- 
(503) 754-4452 Android
(623) 239-3392 Skype
(623) 688-3392 Google Voice
**
it-clowns.com
---
PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
To subscribe, unsubscribe, or to change your mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss

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. 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 about being unable to connect
 to the remote host. I have been given the svn link by one of the project
 developers so I am fairly certain it is correct but so far I have been
 unable to pull the code I need. I have tried pulling code from other svn
 on-line repositories and those seemed to work just fine.

 Can anyone lese 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 even tried just a simple svn list command instead of a checkout and still
 I got the same result. It hangs for some period of time and then finally
 times out with an error about not being able to connect to the remote host.
 --
 Steven DuChene


 ---
 PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
 To subscribe, unsubscribe, or to change your mail settings:
 http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss
---
PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
To subscribe, unsubscribe, or to change your mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss


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 arse-over-teakettle and needs to be kicked.

-- 
Matt G / Dances With Crows
The Crow202 Blog:  http://crow202.org/wordpress/
There is no Darkness in Eternity/But only Light too dim for us to see

---
PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
To subscribe, unsubscribe, or to change your mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss


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 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 arse-over-teakettle and needs to be kicked.

 --
 Matt G / Dances With Crows
 The Crow202 Blog:  http://crow202.org/wordpress/
 There is no Darkness in Eternity/But only Light too dim for us to see

 ---
 PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
 To subscribe, unsubscribe, or to change your mail settings:
 http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss




-- 
(503) 754-4452 Android
(623) 239-3392 Skype
(623) 688-3392 Google Voice
**
it-clowns.com
---
PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
To subscribe, unsubscribe, or to change your mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss

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 30, 2012 at 2:25 PM, Michael Havens bmi...@gmail.com wrote:
 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-client                    install
 openssh-server                    deinstall
 dpkg --get-selections | grep linux-image
 linux-image-3.0.0-12-generic            install
 linux-image-3.0.0-14-generic            install
 linux-image-3.0.0-15-generic            deinstall
 linux-image-3.0.0-16-generic            deinstall
 linux-image-3.0.0-17-generic            deinstall



 On Fri, Mar 30, 2012 at 9:08 AM, Mike Ballon mike.bal...@gmail.com
 wrote:

 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 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?
 




 --
 :-)~MIKE~(-:

 ---
 PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
 To subscribe, unsubscribe, or to change your mail settings:
 http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss
---
PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
To subscribe, unsubscribe, or to change your mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss