<?xml version="1.0" encoding="iso-8859-1"?>
<rss version="2.0">
<channel>
  <title>Linux Format forums</title>
  <link>http://www.linuxformat.com/forums/index.php</link>
  <description>Help, discussion, magazine feedback and more</description>
  <language>english</language>
  <copyright>(c) Copyright Fri May 24, 2013 3:25 pm by Linux Format forums</copyright>
  <managingEditor>webmaster@linuxformat.com</managingEditor>
  <webMaster>webmaster@linuxformat.com</webMaster>
  <pubDate>Fri May 24, 2013 3:25 pm</pubDate>
  <lastBuildDate>Fri May 24, 2013 3:25 pm</lastBuildDate>
  <docs>http://backend.userland.com/rss</docs>
  <generator>phpBB2 RSS Syndication Mod by Lucas</generator>
  <ttl>1</ttl>

  <image>
    <title>Linux Format forums</title>
    <url></url>
    <link>http://www.linuxformat.com/forums/</link>
    <description>Help, discussion, magazine feedback and more</description>
  </image>

                                      <item>
                                        <title>RE: How do i create hardware nodes?</title>
                                        <link>http://www.linuxformat.com/forums/viewtopic.php?p=2420#2420</link>
                                        <description>&lt;br /&gt;
                                      Author: &lt;a href='http://www.linuxformat.com/forums/profile.php?mode=viewprofile&amp;u=-1'&gt;Anonymous&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
                                      Posted: Mon May 30, 2005 9:59 am&lt;br /&gt;&lt;br /&gt;
                                      &lt;br /&gt;&lt;br /&gt;
                                      huh i dont under stand ! i posted a terminal output and you post code .&lt;br /&gt;
can you explain.</description>
                                        <comments>http://www.linuxformat.com/forums/viewtopic.php?p=2420#2420</comments>
                                        <author>Anonymous</author>
                                        <pubDate>Mon May 30, 2005 9:59 am</pubDate>
                                        <guid isPermaLink="true">http://www.linuxformat.com/forums/viewtopic.php?p=2420#2420</guid>
                                      </item>
                                      <item>
                                        <title>RE: How do i create hardware nodes?</title>
                                        <link>http://www.linuxformat.com/forums/viewtopic.php?p=2399#2399</link>
                                        <description>&lt;br /&gt;
                                      Author: &lt;a href='http://www.linuxformat.com/forums/profile.php?mode=viewprofile&amp;u=167'&gt;nordle&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
                                      Posted: Sun May 29, 2005 4:11 pm&lt;br /&gt;&lt;br /&gt;
                                      &lt;br /&gt;&lt;br /&gt;
                                      Not quite the same, but may be of use:&lt;br /&gt;
&lt;br /&gt;
#!/bin/sh&lt;br /&gt;
# Create device nodes for the Linux DVB API with DVB_API_VERSION 2.&lt;br /&gt;
# The devices created are suitable for most current PC DVB cards,&lt;br /&gt;
# i.e. cards having one frontend, one demux and optionally one&lt;br /&gt;
# MPEG decoder.&lt;br /&gt;
# The script creates devices for two cards by default.&lt;br /&gt;
&lt;br /&gt;
if [ -e /dev/.devfsd ]; then&lt;br /&gt;
        echo &quot;It seems you are using devfs. Good!&quot;&lt;br /&gt;
	exit 0&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
# get rid of old DVB API devices; do it twice for good measure...&lt;br /&gt;
rm -rf /dev/ost&lt;br /&gt;
rm -rf /dev/ost&lt;br /&gt;
rm -rf /dev/dvb&lt;br /&gt;
rm -rf /dev/dvb&lt;br /&gt;
&lt;br /&gt;
mkdir /dev/dvb&lt;br /&gt;
chmod 755 /dev/dvb&lt;br /&gt;
&lt;br /&gt;
for i in `seq 0 1`; do&lt;br /&gt;
	echo &quot;Creating DVB devices in /dev/dvb/adapter$i&quot;&lt;br /&gt;
	mkdir /dev/dvb/adapter$i&lt;br /&gt;
	chmod 755 /dev/dvb/adapter$i&lt;br /&gt;
	mknod -m 0660 /dev/dvb/adapter$i/video0    c 212   `expr 64 \* $i + 0`&lt;br /&gt;
	mknod -m 0660 /dev/dvb/adapter$i/audio0    c 212   `expr 64 \* $i + 1`&lt;br /&gt;
	mknod -m 0660 /dev/dvb/adapter$i/frontend0 c 212   `expr 64 \* $i + 3`&lt;br /&gt;
	mknod -m 0660 /dev/dvb/adapter$i/demux0    c 212   `expr 64 \* $i + 4`&lt;br /&gt;
	mknod -m 0660 /dev/dvb/adapter$i/dvr0      c 212   `expr 64 \* $i + 5`&lt;br /&gt;
	mknod -m 0660 /dev/dvb/adapter$i/ca0       c 212   `expr 64 \* $i + 6`&lt;br /&gt;
	mknod -m 0660 /dev/dvb/adapter$i/net0      c 212   `expr 64 \* $i + 7`&lt;br /&gt;
	mknod -m 0660 /dev/dvb/adapter$i/osd0      c 212   `expr 64 \* $i + 8`&lt;br /&gt;
	chown root.video /dev/dvb/adapter$i/*&lt;br /&gt;
done</description>
                                        <comments>http://www.linuxformat.com/forums/viewtopic.php?p=2399#2399</comments>
                                        <author>nordle</author>
                                        <pubDate>Sun May 29, 2005 4:11 pm</pubDate>
                                        <guid isPermaLink="true">http://www.linuxformat.com/forums/viewtopic.php?p=2399#2399</guid>
                                      </item>
                                      <item>
                                        <title>RE: How do i create hardware nodes?</title>
                                        <link>http://www.linuxformat.com/forums/viewtopic.php?p=2397#2397</link>
                                        <description>&lt;br /&gt;
                                      Author: &lt;a href='http://www.linuxformat.com/forums/profile.php?mode=viewprofile&amp;u=-1'&gt;Anonymous&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
                                      Posted: Sun May 29, 2005 1:23 pm&lt;br /&gt;&lt;br /&gt;
                                      &lt;br /&gt;&lt;br /&gt;
                                      Ive created the node using &lt;span style=&quot;color: blue&quot;&gt;mknod c 81 0 &lt;/span&gt;, whick i am told is for capture devices but when i run &lt;span style=&quot;font-weight: bold&quot;&gt;xawtv&lt;/span&gt; in terminal i get&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;code&quot;&gt;&lt;br /&gt;
&amp;#91;adam@localhost ~&amp;#93;$ xawtv&lt;br /&gt;
This is xawtv-3.94, running on Linux/i686 &amp;#40;2.6.11-6mdk-i686-up-4GB&amp;#41;&lt;br /&gt;
can't open /dev/video0&amp;#58; No such device&lt;br /&gt;
v4l-conf had some trouble, trying to continue anyway&lt;br /&gt;
v4l2&amp;#58; open /dev/video0&amp;#58; No such device&lt;br /&gt;
v4l2&amp;#58; open /dev/video0&amp;#58; No such device&lt;br /&gt;
v4l&amp;#58; open /dev/video0&amp;#58; No such device&lt;br /&gt;
no video grabber device available&lt;br /&gt;
&amp;#91;adam@localhost ~&amp;#93;$&lt;br /&gt;
&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;&lt;br /&gt;
can anyone help me with this?&lt;br /&gt;
/dev/video0 does exist and adam has full access.</description>
                                        <comments>http://www.linuxformat.com/forums/viewtopic.php?p=2397#2397</comments>
                                        <author>Anonymous</author>
                                        <pubDate>Sun May 29, 2005 1:23 pm</pubDate>
                                        <guid isPermaLink="true">http://www.linuxformat.com/forums/viewtopic.php?p=2397#2397</guid>
                                      </item>
                                      <item>
                                        <title>RE: How do i create hardware nodes?</title>
                                        <link>http://www.linuxformat.com/forums/viewtopic.php?p=2223#2223</link>
                                        <description>&lt;br /&gt;
                                      Author: &lt;a href='http://www.linuxformat.com/forums/profile.php?mode=viewprofile&amp;u=369'&gt;dandnsmith&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
                                      Posted: Tue May 24, 2005 12:05 pm&lt;br /&gt;&lt;br /&gt;
                                      &lt;br /&gt;&lt;br /&gt;
                                      After your reply, I just had a quick look myself.&lt;br /&gt;
Since I last had occasion to use the mknod command, things have changed. There used to be a script to do it, with enough info to guide you - I cannot see where this is now.&lt;br /&gt;
Have a look at the man page for MAKEDEV  (put it in CAPS, else it isn't found) and see if that helps at all.&lt;br /&gt;
Also devices.txt under /usr/share/doc/MAKEDEV....</description>
                                        <comments>http://www.linuxformat.com/forums/viewtopic.php?p=2223#2223</comments>
                                        <author>dandnsmith</author>
                                        <pubDate>Tue May 24, 2005 12:05 pm</pubDate>
                                        <guid isPermaLink="true">http://www.linuxformat.com/forums/viewtopic.php?p=2223#2223</guid>
                                      </item>
                                      <item>
                                        <title>RE: How do i create hardware nodes?</title>
                                        <link>http://www.linuxformat.com/forums/viewtopic.php?p=2148#2148</link>
                                        <description>&lt;br /&gt;
                                      Author: &lt;a href='http://www.linuxformat.com/forums/profile.php?mode=viewprofile&amp;u=-1'&gt;Anonymous&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
                                      Posted: Sun May 22, 2005 6:59 pm&lt;br /&gt;&lt;br /&gt;
                                      &lt;br /&gt;&lt;br /&gt;
                                      so i know ive got to do &lt;br /&gt;
&lt;span style=&quot;font-weight: bold&quot;&gt; mknod /dev/Video0 c 4 64&lt;/span&gt;&lt;br /&gt;
How ever the&lt;span style=&quot;color: red&quot;&gt;c 4 64&lt;/span&gt; have to be altered to suit the device, but i dont understand the majour/minor number system.&lt;br /&gt;
and i know i need to do something chown for user root&amp;amp;adam, however i lose it her.&lt;br /&gt;
can you help?&lt;br /&gt;
&lt;br /&gt;
&lt;span style=&quot;color: red&quot;&gt;Um LXF can you do an article on mknod some time please?&lt;/span&gt;</description>
                                        <comments>http://www.linuxformat.com/forums/viewtopic.php?p=2148#2148</comments>
                                        <author>Anonymous</author>
                                        <pubDate>Sun May 22, 2005 6:59 pm</pubDate>
                                        <guid isPermaLink="true">http://www.linuxformat.com/forums/viewtopic.php?p=2148#2148</guid>
                                      </item>
                                      <item>
                                        <title>RE: How do i create hardware nodes?</title>
                                        <link>http://www.linuxformat.com/forums/viewtopic.php?p=2137#2137</link>
                                        <description>&lt;br /&gt;
                                      Author: &lt;a href='http://www.linuxformat.com/forums/profile.php?mode=viewprofile&amp;u=369'&gt;dandnsmith&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
                                      Posted: Sun May 22, 2005 5:45 pm&lt;br /&gt;&lt;br /&gt;
                                      &lt;br /&gt;&lt;br /&gt;
                                      I only know how to do it in a terminal window, as root&lt;br /&gt;
&lt;br /&gt;
cd /dev&lt;br /&gt;
mknod ......&lt;br /&gt;
&lt;br /&gt;
I suggest a quick look at the man page(s) for mknod and anything else related to get the right parameters.&lt;br /&gt;
Post again if there's still a problem, giving detail</description>
                                        <comments>http://www.linuxformat.com/forums/viewtopic.php?p=2137#2137</comments>
                                        <author>dandnsmith</author>
                                        <pubDate>Sun May 22, 2005 5:45 pm</pubDate>
                                        <guid isPermaLink="true">http://www.linuxformat.com/forums/viewtopic.php?p=2137#2137</guid>
                                      </item>
                                      <item>
                                        <title>How do i create hardware nodes?</title>
                                        <link>http://www.linuxformat.com/forums/viewtopic.php?p=2117#2117</link>
                                        <description>&lt;br /&gt;
                                      Author: &lt;a href='http://www.linuxformat.com/forums/profile.php?mode=viewprofile&amp;u=-1'&gt;Anonymous&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
                                      Posted: Sun May 22, 2005 9:25 am&lt;br /&gt;&lt;br /&gt;
                                      &lt;br /&gt;&lt;br /&gt;
                                      How do i create hardware nodes in &lt;span style=&quot;font-weight: bold&quot;&gt;Mandriva ltd ED&lt;/span&gt;&lt;br /&gt;
Im trying to create a hardware node &lt;span style=&quot;color: blue&quot;&gt;Video0&lt;/span&gt; for a tevion &lt;br /&gt;
&lt;span style=&quot;font-weight: bold&quot;&gt;TV7134RF&lt;/span&gt; video capture card so i can watch tv.&lt;br /&gt;
Can anyone help without ignoring me?&lt;br /&gt;
&lt;span style=&quot;color: red&quot;&gt;Why cant i log back in to edit my posts or check message? the forums are refusing my id a pasword but i have to valid ids?&lt;/span&gt;[/b]</description>
                                        <comments>http://www.linuxformat.com/forums/viewtopic.php?p=2117#2117</comments>
                                        <author>Anonymous</author>
                                        <pubDate>Sun May 22, 2005 9:25 am</pubDate>
                                        <guid isPermaLink="true">http://www.linuxformat.com/forums/viewtopic.php?p=2117#2117</guid>
                                      </item></channel></rss>