646
|
1 #!/usr/bin/env python
|
|
2 # -*- coding: utf-8 -*-
|
|
3
|
|
4 """
|
672
|
5 mount inserted usb disk
|
|
6
|
646
|
7 [ 33.854905] usb-storage 1-1.2:1.0: USB Mass Storage device detected
|
|
8 [ 33.854946] scsi6 : usb-storage 1-1.2:1.0
|
|
9 [ 33.855002] usbcore: registered new interface driver usb-storage
|
|
10 [ 34.855894] scsi 6:0:0:0: Direct-Access PNY USB 2.0 FD 8.07 PQ: 0 ANSI: 4
|
|
11 [ 34.856108] sd 6:0:0:0: Attached scsi generic sg2 type 0
|
|
12 [ 34.857281] sd 6:0:0:0: [sdb] 249999360 512-byte logical blocks: (127 GB/119 GiB)
|
|
13 [ 34.858452] sd 6:0:0:0: [sdb] Write Protect is off
|
|
14 [ 34.858455] sd 6:0:0:0: [sdb] Mode Sense: 23 00 00 00
|
|
15 [ 34.859678] sd 6:0:0:0: [sdb] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
|
|
16 [ 40.782414] sdb: sdb1
|
|
17 [ 40.787010] sd 6:0:0:0: [sdb] Attached SCSI removable disk
|
|
18
|
|
19 """
|
|
20
|
|
21 import argparse
|
|
22 import os
|
|
23 import subprocess
|
|
24 import sys
|
|
25
|
|
26 string = (str, unicode)
|
|
27
|
|
28 def main(args=sys.argv[1:]):
|
|
29
|
|
30 parser = argparse.ArgumentParser(description=__doc__)
|
672
|
31 parser.add_argument('-m', '--mount', dest='mount_point',
|
|
32 default='/mnt/media',
|
|
33 help="mount point")
|
646
|
34 options = parser.parse_args(args)
|
|
35
|
|
36 dmesg = subprocess.check_output(['dmesg']).splitlines()
|
|
37 string = 'usbcore: registered new interface driver usb-storage'
|
|
38 for index in reversed(range(len(dmesg))):
|
|
39 line = dmesg[index]
|
|
40 if string in line:
|
|
41 break
|
|
42 else:
|
|
43 sys.exit(1) # nothing found
|
|
44
|
|
45 for line in dmesg[index:]:
|
|
46 line = line.split(']', 1)[-1].strip()
|
|
47 if ':' in line:
|
|
48 try:
|
|
49 disk, partition = line.split(':')
|
|
50 except ValueError:
|
|
51 continue
|
|
52 disk = disk.strip()
|
|
53 partition = partition.strip()
|
|
54 if partition.startswith(disk):
|
672
|
55 print ("partition: {}".format(partition))
|
|
56 break
|
|
57 else:
|
|
58 parser.error("No partition found")
|
|
59
|
|
60 device = os.path.join('/dev', partition)
|
|
61 assert os.path.exists(device)
|
|
62 print "Device: {}".format(device)
|
|
63
|
|
64 command = ['sudo', 'mount', device, options.mount_point]
|
|
65 print (' '.join(command))
|
646
|
66
|
|
67 if __name__ == '__main__':
|
|
68 main()
|