daily pastebin goal
43%
SHARE
TWEET

Untitled

a guest Jan 10th, 2012 10 Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. pekka@pekka-Veriton-M661:~$ sudo fdisk -l
  2. [sudo] password for pekka:
  3.  
  4. Disk /dev/sda: 80.0 GB, 80000000000 bytes
  5. 255 päätä, 63 sektoria/ura, 9726 sylinteriä, yhteensä 156250000 sektoria
  6. Yksiköt = 1 * 512 = 512 -tavuiset sektorit
  7. Sector size (logical/physical): 512 bytes / 512 bytes
  8. I/O size (minimum/optimal): 512 bytes / 512 bytes
  9. Levyn tunniste: 0x0034239d
  10.  
  11.     Laite Käynn     Alku          Loppu    Lohkot   Id  Järjestelmä
  12. /dev/sda1              63   156248189    78124063+   7  HPFS/NTFS/exFAT
  13.  
  14. Disk /dev/sdb: 1000.2 GB, 1000204886016 bytes
  15. 255 päätä, 63 sektoria/ura, 121601 sylinteriä, yhteensä 1953525168 sektoria
  16. Yksiköt = 1 * 512 = 512 -tavuiset sektorit
  17. Sector size (logical/physical): 512 bytes / 512 bytes
  18. I/O size (minimum/optimal): 512 bytes / 512 bytes
  19. Levyn tunniste: 0x7ca97ca9
  20.  
  21.     Laite Käynn     Alku          Loppu    Lohkot   Id  Järjestelmä
  22. /dev/sdb1              63  1953520064   976760001    7  HPFS/NTFS/exFAT
  23.  
  24. Disk /dev/sdc: 160.0 GB, 160041885696 bytes
  25. 255 päätä, 63 sektoria/ura, 19457 sylinteriä, yhteensä 312581808 sektoria
  26. Yksiköt = 1 * 512 = 512 -tavuiset sektorit
  27. Sector size (logical/physical): 512 bytes / 512 bytes
  28. I/O size (minimum/optimal): 512 bytes / 512 bytes
  29. Levyn tunniste: 0x45003db9
  30.  
  31.     Laite Käynn     Alku          Loppu    Lohkot   Id  Järjestelmä
  32. /dev/sdc1   *        2048   173034566    86516259+   7  HPFS/NTFS/exFAT
  33. /dev/sdc2       173036115   312576704    69770295   83  Linux
  34.  
  35. Disk /dev/sdd: 160.0 GB, 160041885696 bytes
  36. 255 päätä, 63 sektoria/ura, 19457 sylinteriä, yhteensä 312581808 sektoria
  37. Yksiköt = 1 * 512 = 512 -tavuiset sektorit
  38. Sector size (logical/physical): 512 bytes / 512 bytes
  39. I/O size (minimum/optimal): 512 bytes / 512 bytes
  40. Levyn tunniste: 0xc7051a76
  41.  
  42.     Laite Käynn     Alku          Loppu    Lohkot   Id  Järjestelmä
  43. /dev/sdd1              63   117290564    58645251   83  Linux
  44. /dev/sdd3       117297150   312580095    97641473    5  Laajennettu
  45. /dev/sdd5       117297152   295938047    89320448   83  Linux
  46. /dev/sdd6       295940096   312580095     8320000   82  Linux-sivutus / Solaris
  47.  
  48. Disk /dev/sde: 16.2 GB, 16236150784 bytes
  49. 255 päätä, 63 sektoria/ura, 1973 sylinteriä, yhteensä 31711232 sektoria
  50. Yksiköt = 1 * 512 = 512 -tavuiset sektorit
  51. Sector size (logical/physical): 512 bytes / 512 bytes
  52. I/O size (minimum/optimal): 512 bytes / 512 bytes
  53. Levyn tunniste: 0x04dd5721
  54.  
  55.     Laite Käynn     Alku          Loppu    Lohkot   Id  Järjestelmä
  56. /dev/sde1   *          63    31711231    15855584+   c  W95 FAT32 (LBA)
  57. pekka@pekka-Veriton-M661:~$ cat /etc/fstab
  58. # /etc/fstab: static file system information.
  59. #
  60. # Use 'blkid -o value -s UUID' to print the universally unique identifier
  61. # for a device; this may be used with UUID= as a more robust way to name
  62. # devices that works even if disks are added and removed. See fstab(5).
  63. #
  64. # <file system> <mount point>   <type>  <options>       <dump>  <pass>
  65. proc            /proc           proc    nodev,noexec,nosuid 0       0
  66. # / was on /dev/sdd5 during installation
  67. UUID=887fb2c0-653f-491f-94ca-185d59a45cdb /               ext4    errors=remount-ro 0       1
  68. # swap was on /dev/sdd6 during installation
  69. UUID=2210102d-7876-4bed-82e7-4d91485e9d63 none            swap    sw              0       0
  70. pekka@pekka-Veriton-M661:~$ df -ht
  71. df: valitsin vaatii argumentin -- ”t”
  72. Lisätietoja komennolla ”df --help”.
  73. pekka@pekka-Veriton-M661:~$ ^C
  74. pekka@pekka-Veriton-M661:~$ df -hT
  75. Tied.järj.  Tyyppi    Size  Used Avail Use% Liitospiste
  76. /dev/sdd5     ext4     84G   31G   50G  39% /
  77. udev      devtmpfs    3,9G  4,0K  3,9G   1% /dev
  78. tmpfs        tmpfs    1,6G  812K  1,6G   1% /run
  79. none         tmpfs    5,0M     0  5,0M   0% /run/lock
  80. none         tmpfs    3,9G  872K  3,9G   1% /run/shm
  81. /dev/sde1     vfat     16G  7,8G  7,4G  52% /media/HP v195b
  82. pekka@pekka-Veriton-M661:~$
RAW Paste Data
Pastebin PRO WINTER Special!
Get 40% OFF Pastebin PRO accounts!
Top