The Following User Says Thank You to 7&7 For This Useful Post: | ||
|
2013-10-18
, 15:29
|
Community Council |
Posts: 4,920 |
Thanked: 12,867 times |
Joined on May 2012
@ Southerrn Finland
|
#2
|
|
2013-10-19
, 03:48
|
Posts: 3 |
Thanked: 2 times |
Joined on Oct 2013
|
#3
|
The Following User Says Thank You to 7&7 For This Useful Post: | ||
|
2013-10-19
, 19:08
|
Posts: 78 |
Thanked: 109 times |
Joined on Jan 2012
@ Washington State
|
#4
|
If I DO need a kernel module, there doesn't appear to be an nbd package for diablo, unless I can use a debian package compiled for the arm chip? If I have to make my own from sources I assume I will need to install the SDK and go from there? it will be a much longer journey than I intended, and take a while since this is a spare time kind of project - and likely require much more googleing and reading than installing!!
|
2013-10-21
, 06:25
|
Posts: 3 |
Thanked: 2 times |
Joined on Oct 2013
|
#5
|
|
2013-10-21
, 18:58
|
Posts: 78 |
Thanked: 109 times |
Joined on Jan 2012
@ Washington State
|
#6
|
|
2013-10-21
, 21:04
|
Community Council |
Posts: 4,920 |
Thanked: 12,867 times |
Joined on May 2012
@ Southerrn Finland
|
#7
|
FWIW my uname -a string is:
Linux andy-n810 2.6.21-omap1 #2 Tue Oct 14 11:25:25 EEST 2008 armv6l unknown
So I wonder if you're running a 2.6.21-omap1 flavor of OS.
|
2013-10-22
, 00:37
|
Posts: 78 |
Thanked: 109 times |
Joined on Jan 2012
@ Washington State
|
#8
|
I have need of a new block device file in the /dev folder. I have used mknod and MAKEDEV to make the new device with the appropriate device major and minors, then when I issue the command to use the device file I get "can't open '/dev/nb1': No such device or address"
the file exists, and has the correct major and minor associated when I type ls.
What gives. I'm afraid I don't even know where to start, to figure out what is going on.
The Details and background:
I have a set top video player hooked to the big screen TV, I put movies (.avi,.mp4,. ect) on a USB stick and watch on the TV. I want to stream the movie files directly off of the computer where they are located, but the video box does not have network connectivity.
Enter the N800. I can plug the N800 into the video box via USB, and it looks like two USB sticks. But there is no access to the root file system, so NFS mounts are not accessible. I figure I need a Block device with the filesystem coming from the network.
Enter Network Block Devices. A block device file in /dev that has a filesystem supplied over the network. (my terminology may be wrong I don't know, but that's how I think of it.) So, I have set up my desktop to act as both client and server, and I can connect to and mount the movie directory so I know that is working and I have the correct syntax for the required incantations.
However, the N800 does not have any nbX devices in /dev like my desktop machine already did, so I had to add them myself. Also, it appears device files have become more complicated in that there now exists udev and device files created and destroyed on the fly. but still, how does a file exist in the directory listing, but not exist when a command goes to use it?
I am at a standstill on this.