<?xml version="1.0" encoding="UTF-8"?><rss
version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
> <channel><title>Comments on: How To Check and Use Serial Ports Under Linux</title> <atom:link href="http://www.cyberciti.biz/faq/find-out-linux-serial-ports-with-setserial/feed/" rel="self" type="application/rss+xml" /><link>http://www.cyberciti.biz/faq/find-out-linux-serial-ports-with-setserial/</link> <description>Every answer asks a more beautiful question.</description> <lastBuildDate>Fri, 10 Feb 2012 19:55:56 +0000</lastBuildDate> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <item><title>By: abdel</title><link>http://www.cyberciti.biz/faq/find-out-linux-serial-ports-with-setserial/#comment-67670</link> <dc:creator>abdel</dc:creator> <pubDate>Tue, 31 Jan 2012 08:58:04 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/find-out-linux-serial-ports-with-setserial/#comment-67670</guid> <description>Hi Tom,
It works. I just add my username to &quot; dialout &quot; and it worked fine. Iwould like to thank you for you time and support.
Best Regards
Abdel</description> <content:encoded><![CDATA[<p>Hi Tom,</p><p>It works. I just add my username to &#8221; dialout &#8221; and it worked fine. Iwould like to thank you for you time and support.</p><p>Best Regards<br
/> Abdel</p> ]]></content:encoded> </item> <item><title>By: Tom Schuneman</title><link>http://www.cyberciti.biz/faq/find-out-linux-serial-ports-with-setserial/#comment-67663</link> <dc:creator>Tom Schuneman</dc:creator> <pubDate>Mon, 30 Jan 2012 16:04:49 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/find-out-linux-serial-ports-with-setserial/#comment-67663</guid> <description>Your entry in /etc/group is incorrect.  If you read my previous post, I said to add your user id to the line that _begins_ with uucp.  You added uucp to the group of users that can access your account.  You want an entry in the /etc/group file that looks something like:
uucp:x:14:uucp,abdelinux
The critical element is that it&#039;s the line that begins with uucp</description> <content:encoded><![CDATA[<p>Your entry in /etc/group is incorrect.  If you read my previous post, I said to add your user id to the line that _begins_ with uucp.  You added uucp to the group of users that can access your account.  You want an entry in the /etc/group file that looks something like:</p><p>uucp:x:14:uucp,abdelinux</p><p>The critical element is that it&#8217;s the line that begins with uucp</p> ]]></content:encoded> </item> <item><title>By: abdel</title><link>http://www.cyberciti.biz/faq/find-out-linux-serial-ports-with-setserial/#comment-67632</link> <dc:creator>abdel</dc:creator> <pubDate>Sat, 28 Jan 2012 01:22:49 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/find-out-linux-serial-ports-with-setserial/#comment-67632</guid> <description>Thanks Tom,
here is my output from the group file I have added my username to it but does not work.
abdelinux:x:1000:uucp,adm,abdelinux,
I will just give up.Thanks a lot for your help I relay appreciate it.</description> <content:encoded><![CDATA[<p>Thanks Tom,<br
/> here is my output from the group file I have added my username to it but does not work.</p><p>abdelinux:x:1000:uucp,adm,abdelinux,</p><p>I will just give up.Thanks a lot for your help I relay appreciate it.</p> ]]></content:encoded> </item> <item><title>By: Tom Schuneman</title><link>http://www.cyberciti.biz/faq/find-out-linux-serial-ports-with-setserial/#comment-67598</link> <dc:creator>Tom Schuneman</dc:creator> <pubDate>Wed, 25 Jan 2012 16:36:00 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/find-out-linux-serial-ports-with-setserial/#comment-67598</guid> <description>1) ls -la /dev/ttyS0 -- This will report the permissions on the port.  Typically, this will say crw-rw---- 1 root uucp.  The &quot;c&quot; in the string indicates that it&#039;s a &quot;character device&quot; the first &quot;rw&quot; indicates that the owner has read/write permission.  The second &quot;rw&quot; means that the group has read/write permissions.  The &quot;---&quot; indicates that the rest of the world has no permissions.  After the &quot;----&quot;, &quot;root&quot; indicates that the owner of the device is root, and that the group id is  &quot;uucp&quot;.  So, you either need to be root, or a member of the uucp group to have read/write access to the port.
2) To add yourself to the uucp group (to get read/write access), you need to edit the file /etc/group, and add your user name to the line that begins with &quot;uucp:&quot;  User names are separated by commas, so add a comma, then your user name to the end of the line.  You will need root permissions to edit this file.
3) log out, and log back in because group associations are made at login time, and are not queried on each request.</description> <content:encoded><![CDATA[<p>1) ls -la /dev/ttyS0 &#8212; This will report the permissions on the port.  Typically, this will say crw-rw&#8212;- 1 root uucp.  The &#8220;c&#8221; in the string indicates that it&#8217;s a &#8220;character device&#8221; the first &#8220;rw&#8221; indicates that the owner has read/write permission.  The second &#8220;rw&#8221; means that the group has read/write permissions.  The &#8220;&#8212;&#8221; indicates that the rest of the world has no permissions.  After the &#8220;&#8212;-&#8221;, &#8220;root&#8221; indicates that the owner of the device is root, and that the group id is  &#8220;uucp&#8221;.  So, you either need to be root, or a member of the uucp group to have read/write access to the port.</p><p>2) To add yourself to the uucp group (to get read/write access), you need to edit the file /etc/group, and add your user name to the line that begins with &#8220;uucp:&#8221;  User names are separated by commas, so add a comma, then your user name to the end of the line.  You will need root permissions to edit this file.</p><p>3) log out, and log back in because group associations are made at login time, and are not queried on each request.</p> ]]></content:encoded> </item> <item><title>By: abdel</title><link>http://www.cyberciti.biz/faq/find-out-linux-serial-ports-with-setserial/#comment-67592</link> <dc:creator>abdel</dc:creator> <pubDate>Wed, 25 Jan 2012 14:11:59 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/find-out-linux-serial-ports-with-setserial/#comment-67592</guid> <description>Thanks Tom,
I actually I tried but it&#039;s does not work, still says &quot;permission denied&quot;. I would appreciate if you explain to me step by step the procedure how to do it, I&#039;m knew to Linux.
Best Regards
Abdel</description> <content:encoded><![CDATA[<p>Thanks Tom,<br
/> I actually I tried but it&#8217;s does not work, still says &#8220;permission denied&#8221;. I would appreciate if you explain to me step by step the procedure how to do it, I&#8217;m knew to Linux.<br
/> Best Regards<br
/> Abdel</p> ]]></content:encoded> </item> <item><title>By: Tom Schuneman</title><link>http://www.cyberciti.biz/faq/find-out-linux-serial-ports-with-setserial/#comment-67468</link> <dc:creator>Tom Schuneman</dc:creator> <pubDate>Mon, 23 Jan 2012 22:29:41 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/find-out-linux-serial-ports-with-setserial/#comment-67468</guid> <description>Check the permissions on /dev/ttyS0...  Likely problem is it&#039;s owned by root, and is part of the uucp group.  Add yourself to the uucp group, and all should be better.  I&#039;m curious to know if this is enough for you as I am having problems communicating with a serial port on Linux as well.  I got past the permissions stuff, but it is still not working.</description> <content:encoded><![CDATA[<p>Check the permissions on /dev/ttyS0&#8230;  Likely problem is it&#8217;s owned by root, and is part of the uucp group.  Add yourself to the uucp group, and all should be better.  I&#8217;m curious to know if this is enough for you as I am having problems communicating with a serial port on Linux as well.  I got past the permissions stuff, but it is still not working.</p> ]]></content:encoded> </item> <item><title>By: abdel</title><link>http://www.cyberciti.biz/faq/find-out-linux-serial-ports-with-setserial/#comment-67213</link> <dc:creator>abdel</dc:creator> <pubDate>Thu, 19 Jan 2012 13:41:34 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/find-out-linux-serial-ports-with-setserial/#comment-67213</guid> <description>Hi,everybody
I have a serial PCI card with two ports but neither of them is working, on Linux fedora 16. I have tried using &quot;gtkterm&quot; and &quot;minicom&quot; but unfortunately  I can&#039;t make a serial connection to my Cisco lab. Here is my output when I issue the command: &quot;setserial -g /dev/ttyS[0123]&quot;.
/dev/ttyS0, UART: 16550A, Port: 0xec00, IRQ: 16
/dev/ttyS1, UART: 16550A, Port: 0xe880, IRQ: 16
/dev/ttyS2, UART: unknown, Port: 0x03e8, IRQ: 4
/dev/ttyS3, UART: unknown, Port: 0x02e8, IRQ: 3
also I want to mention that when I try to connet throught the terminal it generates a message like so: &quot; Cannot open /dev/ttyS0: Permission denied&quot;.
any help please.
abdel</description> <content:encoded><![CDATA[<p>Hi,everybody<br
/> I have a serial PCI card with two ports but neither of them is working, on Linux fedora 16. I have tried using &#8220;gtkterm&#8221; and &#8220;minicom&#8221; but unfortunately  I can&#8217;t make a serial connection to my Cisco lab. Here is my output when I issue the command: &#8220;setserial -g /dev/ttyS[0123]&#8220;.</p><p>/dev/ttyS0, UART: 16550A, Port: 0xec00, IRQ: 16<br
/> /dev/ttyS1, UART: 16550A, Port: 0xe880, IRQ: 16<br
/> /dev/ttyS2, UART: unknown, Port: 0x03e8, IRQ: 4<br
/> /dev/ttyS3, UART: unknown, Port: 0x02e8, IRQ: 3</p><p>also I want to mention that when I try to connet throught the terminal it generates a message like so: &#8221; Cannot open /dev/ttyS0: Permission denied&#8221;.<br
/> any help please.<br
/> abdel</p> ]]></content:encoded> </item> <item><title>By: AC</title><link>http://www.cyberciti.biz/faq/find-out-linux-serial-ports-with-setserial/#comment-64305</link> <dc:creator>AC</dc:creator> <pubDate>Thu, 10 Nov 2011 12:28:38 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/find-out-linux-serial-ports-with-setserial/#comment-64305</guid> <description>Thanks very useful..save my time :)</description> <content:encoded><![CDATA[<p>Thanks very useful..save my time :)</p> ]]></content:encoded> </item> <item><title>By: Joe Knifer</title><link>http://www.cyberciti.biz/faq/find-out-linux-serial-ports-with-setserial/#comment-64009</link> <dc:creator>Joe Knifer</dc:creator> <pubDate>Tue, 01 Nov 2011 18:39:21 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/find-out-linux-serial-ports-with-setserial/#comment-64009</guid> <description>Daemon is a program called getty used by UNIX/Linux systems. There are many different versions of getty. The first modem detected is /dev/ttys0 or /dev/ttys1. To create a link to the devices file so that you can view modem information. Type ln -s /dev/ttys1 /dev/modem.
It is essential to set the modem to AUTO ANSWER using getty.
download minicom from alioth.debian.org/projects/minicom.
create a modem config file by entering minicom -s from the root command line
select the options you want to configure using AT commands
connect to the modem by typing in minicom</description> <content:encoded><![CDATA[<p>Daemon is a program called getty used by UNIX/Linux systems. There are many different versions of getty. The first modem detected is /dev/ttys0 or /dev/ttys1. To create a link to the devices file so that you can view modem information. Type ln -s /dev/ttys1 /dev/modem.<br
/> It is essential to set the modem to AUTO ANSWER using getty.</p><p>download minicom from alioth.debian.org/projects/minicom.</p><p>create a modem config file by entering minicom -s from the root command line<br
/> select the options you want to configure using AT commands<br
/> connect to the modem by typing in minicom</p> ]]></content:encoded> </item> <item><title>By: arek</title><link>http://www.cyberciti.biz/faq/find-out-linux-serial-ports-with-setserial/#comment-57360</link> <dc:creator>arek</dc:creator> <pubDate>Sun, 17 Apr 2011 08:20:58 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/find-out-linux-serial-ports-with-setserial/#comment-57360</guid> <description>it dosn&#039;t work :( I can&#039;t connect to my ASA using debian.</description> <content:encoded><![CDATA[<p>it dosn&#8217;t work :( I can&#8217;t connect to my ASA using debian.</p> ]]></content:encoded> </item> <item><title>By: Mike Bushroe</title><link>http://www.cyberciti.biz/faq/find-out-linux-serial-ports-with-setserial/#comment-57234</link> <dc:creator>Mike Bushroe</dc:creator> <pubDate>Tue, 12 Apr 2011 19:17:47 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/find-out-linux-serial-ports-with-setserial/#comment-57234</guid> <description>I have 4 standard serial ports defined, /dev/ttyS0-4, but I added a  PCI-E 16 port serial adapter, and I have not found a way to connect anything to the upper 16 ports.
How do you create the virtual links? what options do you give setserial to define the new ports?</description> <content:encoded><![CDATA[<p>I have 4 standard serial ports defined, /dev/ttyS0-4, but I added a  PCI-E 16 port serial adapter, and I have not found a way to connect anything to the upper 16 ports.<br
/> How do you create the virtual links? what options do you give setserial to define the new ports?</p> ]]></content:encoded> </item> <item><title>By: Alessandro</title><link>http://www.cyberciti.biz/faq/find-out-linux-serial-ports-with-setserial/#comment-45713</link> <dc:creator>Alessandro</dc:creator> <pubDate>Thu, 28 Jan 2010 08:38:48 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/find-out-linux-serial-ports-with-setserial/#comment-45713</guid> <description>I want to advise you that probably there is an error in the last sentence &quot;seserial with -g option help to find out what physical serial ports your Linux box has.&quot;; isn&#039;t it setserial?
Bye</description> <content:encoded><![CDATA[<p>I want to advise you that probably there is an error in the last sentence &#8220;seserial with -g option help to find out what physical serial ports your Linux box has.&#8221;; isn&#8217;t it setserial?</p><p>Bye</p> ]]></content:encoded> </item> <item><title>By: leszek</title><link>http://www.cyberciti.biz/faq/find-out-linux-serial-ports-with-setserial/#comment-38906</link> <dc:creator>leszek</dc:creator> <pubDate>Tue, 30 Sep 2008 16:34:59 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/find-out-linux-serial-ports-with-setserial/#comment-38906</guid> <description>another simple serial console program not mentioned is gtkterm.</description> <content:encoded><![CDATA[<p>another simple serial console program not mentioned is gtkterm.</p> ]]></content:encoded> </item> <item><title>By: Scott</title><link>http://www.cyberciti.biz/faq/find-out-linux-serial-ports-with-setserial/#comment-38903</link> <dc:creator>Scott</dc:creator> <pubDate>Mon, 29 Sep 2008 18:14:13 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/find-out-linux-serial-ports-with-setserial/#comment-38903</guid> <description>I don&#039;t know if this is the place, but I&#039;m looking for information that is similar. I have 2 machines setup through a null modem. I want to read through the com port from one machine to the other. The sending machine is running Windows sending through COM1: and the receiving computer is Linux Red Hat. Any help on this would be appreciated.</description> <content:encoded><![CDATA[<p>I don&#8217;t know if this is the place, but I&#8217;m looking for information that is similar. I have 2 machines setup through a null modem. I want to read through the com port from one machine to the other. The sending machine is running Windows sending through COM1: and the receiving computer is Linux Red Hat. Any help on this would be appreciated.</p> ]]></content:encoded> </item> </channel> </rss>
