Skip to content
Snippets Groups Projects
Commit c16b7c71 authored by Antonio Falabella's avatar Antonio Falabella
Browse files

backup

parent 52ddf038
No related branches found
No related tags found
No related merge requests found
......@@ -24,7 +24,7 @@ check spurious partitions with `lsblk` and then remove them with
```
dmsetup remove <partition hash>
for line in $(lsblk | grep block | awk '{print $1;}'); do id=${line:2} && dmsetup remove $id; done
for i in `cat ~/disks.txt`;do id=$(lsblk $i | grep ceph | awk '{print $1;}') && id_c=${id:2} && dmsetup remove $id_c ;done
```
Zap the the disk with `gdisk`
......@@ -40,9 +40,8 @@ y
```
### Pools
```
ceph pool list
ceph pool status
ceph osd pool delete --yes-i-really-really-mean-it
ceph osd pool ls
ceph osd pool delete <pool> <pool> --yes-i-really-really-mean-it
```
### OSD PG recreate
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment