Advertisement
Guest User

Untitled

a guest
Oct 3rd, 2014
14
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.89 KB | None | 0 0
  1. root@ubuntu:/# cat /proc/mdstat
  2. Personalities : [linear] [multipath] [raid0] [raid1] [raid6] [raid5] [raid4] [raid10]
  3. md0 : active raid1 sdc3[1]
  4. 2921734976 blocks super 1.2 [2/1] [_U]
  5.  
  6. unused devices: <none>
  7.  
  8.  
  9. root@ubuntu:/# mdadm --detail --scan
  10. ARRAY /dev/md/0 metadata=1.2 name=lager:0 UUID=da7e00d9:09fe00a5:0f2e0157:b0b13381
  11.  
  12.  
  13. root@ubuntu:/# mdadm -D /dev/md0
  14. /dev/md0:
  15. Version : 1.2
  16. Creation Time : Wed Feb 26 16:26:34 2014
  17. Raid Level : raid1
  18. Array Size : 2921734976 (2786.38 GiB 2991.86 GB)
  19. Used Dev Size : 2921734976 (2786.38 GiB 2991.86 GB)
  20. Raid Devices : 2
  21. Total Devices : 1
  22. Persistence : Superblock is persistent
  23.  
  24. Update Time : Fri Oct 3 15:04:23 2014
  25. State : clean, degraded
  26. Active Devices : 1
  27. Working Devices : 1
  28. Failed Devices : 0
  29. Spare Devices : 0
  30.  
  31. Name : lager:0 (local to host lager)
  32. UUID : da7e00d9:09fe00a5:0f2e0157:b0b13381
  33. Events : 6329863
  34.  
  35. Number Major Minor RaidDevice State
  36. 0 0 0 0 removed
  37. 1 8 35 1 active sync /dev/sdc3
  38.  
  39. root@ubuntu:/# df -h
  40. Filesystem Size Used Avail Use% Mounted on
  41. /dev/md0 2.7T 300G 2.3T 12% /
  42. udev 3.9G 4.0K 3.9G 1% /dev
  43. tmpfs 1.6G 328K 1.6G 1% /run
  44. none 5.0M 0 5.0M 0% /run/lock
  45. none 3.9G 0 3.9G 0% /run/shm
  46.  
  47. root@ubuntu:/# cat /etc/fstab
  48. # /etc/fstab: static file system information.
  49. #
  50. # Use 'blkid' to print the universally unique identifier for a
  51. # device; this may be used with UUID= as a more robust way to name devices
  52. # that works even if disks are added and removed. See fstab(5).
  53. #
  54. # <file system> <mount point> <type> <options> <dump> <pass>
  55. proc /proc proc nodev,noexec,nosuid 0 0
  56. # / was on /dev/md127 during installation
  57. UUID=baf6a940-e5dc-4f41-902e-b817e828727b / ext4 errors=remount-ro 0 1
  58. # swap was on /dev/sda3 during installation
  59. UUID=ee93ca04-4da0-408d-b99f-6e85955a247f none swap sw 0 0
  60. # swap was on /dev/sdb2 during installation
  61. UUID=9249175b-7c3f-4a60-bedb-7bf9e3b0d893 none swap sw 0 0
  62. /dev/sda1 /home/meganerd/backup ext4 rw 0 0
  63.  
  64. root@ubuntu:/# sudo blkid
  65. /dev/sda1: UUID="b9dca62c-9303-4ad5-b5d1-e1c54e268d48" TYPE="ext4"
  66. /dev/sdb2: UUID="da7e00d9-09fe-00a5-0f2e-0157b0b13381" UUID_SUB="150654f5-f991-077c-585d-34962d76e91f" LABEL="lager:0" TYPE="linux_raid_member"
  67. /dev/sdb3: UUID="ee93ca04-4da0-408d-b99f-6e85955a247f" TYPE="swap"
  68. /dev/sdc2: UUID="9249175b-7c3f-4a60-bedb-7bf9e3b0d893" TYPE="swap"
  69. /dev/sdc3: UUID="da7e00d9-09fe-00a5-0f2e-0157b0b13381" UUID_SUB="f608953f-5ddb-923c-cc3d-f8d7f6d59348" LABEL="lager:0" TYPE="linux_raid_member"
  70. /dev/md0: UUID="baf6a940-e5dc-4f41-902e-b817e828727b" TYPE="ext4"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement