<div>tiger@debian:~$ sudo  fdisk  -l<br><br>Disk /dev/sda: 120.0 GB, 120034123776 bytes<br>255 heads, 63 sectors/track, 14593 cylinders<br>Units = cylinders of 16065 * 512 = 8225280 bytes<br>Sector size (logical/physical): 512 bytes / 512 bytes<br>I/O size (minimum/optimal): 512 bytes / 512 bytes<br>Disk identifier: 0x073a3c87<br><br>   Device Boot      Start         End      Blocks   Id  System<br>/dev/sda1   *           1        1912    15358108+   c  W95 FAT32 (LBA)<br>/dev/sda2            1913        3736    14647296    b  W95 FAT32<br>/dev/sda3            3736        3979     1952768   83  Linux<br>/dev/sda4            3979       14594    85260289    5  Extended<br>/dev/sda5            3979        4040      487424   83  Linux<br>/dev/sda6            4040        4769     5858304   83  Linux<br>/dev/sda7            4770        4891      975872   83  Linux<br>/dev/sda8            4891        5134     1951744   83  Linux<br>/dev/sda9            5134       14374    74217472   83  Linux<br>/dev/sda10          14374       14594     1764352   82  Linux swap / Solaris<br><br>i want to read  sda1  with python:<br>>>> file=open('/dev/sda1','rb')<br>Traceback (most recent call last):<br>  File "<stdin>", line 1, in <module><br>IOError: [Errno 13] Permission denied: '/dev/sda1'<br><br>how can i own the access to read sda1?<br></div>