ich habe ein "playlist-script" auf meinem mp3 player das ich gern an verschiedenen pc laufen lassen will.
Da der Player an jedem Pc einen neuen/anderen Mountpoint zugewiesen bekommt (dev/sda, dev/sdb...)
Wie kann ich den aktuellen mountpoint eines USB-Gerätes auslesen (um es dann im "playlist" script zu verwenden)???
Code: Alles auswählen
Bus 008 Device 002: ID 046a:0180 Cherry GmbH
Bus 008 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 007 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 006 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 005 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 003 Device 002: ID 046d:c50e Logitech, Inc. MX-1000 Cordless Mouse Receiver
Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 001 Device 021: ID 0781:7434 SanDisk Corp.
Bus 001 Device 003: ID 04b8:0122 Seiko Epson Corp. Perfection 3590 scanner
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
is das der Player und
Code: Alles auswählen
/dev/sda1 on / type ext3 (rw,errors=remount-ro)
tmpfs on /lib/init/rw type tmpfs (rw,nosuid,mode=0755)
proc on /proc type proc (rw,noexec,nosuid,nodev)
sysfs on /sys type sysfs (rw,noexec,nosuid,nodev)
udev on /dev type tmpfs (rw,mode=0755)
tmpfs on /dev/shm type tmpfs (rw,nosuid,nodev)
devpts on /dev/pts type devpts (rw,noexec,nosuid,gid=5,mode=620)
fusectl on /sys/fs/fuse/connections type fusectl (rw)
/dev/sda4 on /home type ext3 (rw)
/dev/sda3 on /tmp type ext3 (rw)
none on /dev/bus/usb type usbfs (rw,devgid=1001,devmode=664)
binfmt_misc on /proc/sys/fs/binfmt_misc type binfmt_misc (rw,noexec,nosuid,nodev)
trusteduser@192.168.4.4:/mnt/data on /mnt/data type fuse.sshfs (rw,noexec,nosuid,nodev,max_read=65536,user=kai)
/dev/sdb on /media/disk type vfat (rw,nosuid,nodev,uhelper=hal,shortname=lower,uid=1000)
der momentane mountpoint.
Wo bei ich aus der Zeile von "mount" nicht erkennen kann das es sich TATSÄCHLICH um den gemeineten Player handelt. Das weis ich NUR weil ich sonst kein weiteres Geät am PC habe.
Ich suche also so was wie : "lies die ID/Prokduknummer des Gerätes -> vergleiche sie mit den am PC befindlichen USB-Geräten (ob gemountet oder nicht) und wenn gemountet, dann gebe mountpoint aus.
Danke schon mal im Voraus.