<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
  <title></title>
</head>
<body bgcolor="#ffffff" text="#000000">
I think there may have also been a second command, something about tty
or re-mapping it?<br>
<br>
Ben Steeves wrote:
<blockquote cite="mid7ebb24d104062714476409f446@mail.gmail.com"
 type="cite">
  <pre wrap="">On Sun, 27 Jun 2004 16:00:40 -0400, Norman LeCouvie <a class="moz-txt-link-rfc2396E" href="mailto:lecouvie@sun.com"><lecouvie@sun.com></a> wrote:
  </pre>
  <blockquote type="cite">
    <pre wrap="">I cannot get gnome-pilot to see my usb palm pilot. when this happened a
few months about with another linux distro, someone send me a command to
redirect the usb ports or something,

chmod "something something something"

    </pre>
  </blockquote>
  <pre wrap=""><!---->
(as root): chmod 666 /dev/ttyUSB* 

chmod CHanges the MODe of the file (or files).  The mode denotes the
access permissions that apply to the file.  "6" is the octal
equivalent of 110 binary, which, when applied against the pattern
"rwx", means "r" (read) and "w" (write) are enabled (set to one) and
"x" (executable) is disabled (set to 0).  The first octal digit is for
the file's owner's permissions, the second for members of the file's
group, and the third for others.  A permission string of 666 gives
read and write permission to everyone.

On a multi-user system, you typically wouldn't do that, but on a
single-user desktop its a pretty safe bet that no one will be trying
to use the USB ports concurrently.

  </pre>
</blockquote>
</body>
</html>