|
2009-11-06
, 21:05
|
|
Posts: 4,274 |
Thanked: 5,358 times |
Joined on Sep 2007
@ Looking at y'all and sighing
|
#2
|
|
2009-11-06
, 21:33
|
|
Posts: 1,217 |
Thanked: 446 times |
Joined on Oct 2009
@ Bedfordshire, UK
|
#4
|
The Following User Says Thank You to Fargus For This Useful Post: | ||
|
2009-11-06
, 21:44
|
|
Posts: 388 |
Thanked: 115 times |
Joined on Oct 2009
@ London, UK
|
#5
|
|
2009-11-06
, 22:23
|
|
Posts: 900 |
Thanked: 273 times |
Joined on Aug 2008
@ Fresno CA USA
|
#7
|
|
2009-11-06
, 22:25
|
|
Posts: 900 |
Thanked: 273 times |
Joined on Aug 2008
@ Fresno CA USA
|
#8
|
|
2009-11-06
, 22:48
|
|
Posts: 2,427 |
Thanked: 2,986 times |
Joined on Dec 2007
|
#9
|
Linux uses vendor:device hex codes as in 046d:c03f for my Logitech mouse. Udev uses these to identify devices as well in /lib/udev/rules.d. Here's an example of rule file 50-video.rules which I created to set special mount points for video devices.
KERNEL=="video*", SYSFS{vendor}=="0x4444", SYSFS{device}=="0x0016", SYSFS{name}=="ivtv0 encoder MPEG", SYMLINK+="video/pvr150"
KERNEL=="video*", SYSFS{vendor}=="0x109e", SYSFS{device}=="0x036e", SYMLINK+="video/bttv"
KERNEL=="video*", SYSFS{vendor}=="0x046d", SYSFS{device}=="0x092e", SYMLINK+="video/webcam"
Hopefully this will give you some hints on where to look as it relates to Nokia tablets. Note that will identify the device as in vendor and model and isn't like a mac address which identifies a port on the network.
The Following User Says Thank You to daperl For This Useful Post: | ||
|
2009-11-06
, 23:32
|
Posts: 119 |
Thanked: 110 times |
Joined on Sep 2009
@ Prague
|
#10
|
Could one not install something like macchanger to spoof or get mac? I've used such a thing on Ubuntu a few years back when messing with WEP cracking.
Something that may be useful to other app developers, especially if tying in mobile apps to web apps and vice versa -
I feel like there is an easily accessible Unique ID string for every device, like a mac address.
Does this exist? If so, any ideas how to access it? (bonus points if it's in python)