replace

  1. D

    Spending $17 million to replace git

    I have always considered git to be a pain in the rear. We used it cause others used it and we had to interface to them. I think "them" used it for the same reason--other people used it, not because they liked it. If git was that good, why are people going to spend $17 million to replace git
  2. A

    ZFS Replace failed disk in ZFS Mirror

    Hi All, Hope someone can guide me. I created a zpool called data with 4 pairs of mirrored disks (8 disks in total) mirror-0 to mirror-3 A disk in mirror-0 failed I have been able to remove it from the mirror-0 and replace the disk. This now shows as ada0 in zpool status with no mirror-0 showing...
  3. S

    ZFS zpool, replace two device with one

    I have real zpool with files, but want to test firstly. I created simple zpool with files: # zpool status -v pool: ztst state: ONLINE scan: resilvered 19.5K in 0h0m with 0 errors on Thu Mar 14 14:44:20 2019 config: NAME STATE READ WRITE CKSUM ztst...
  4. aragats

    Solved sed: negation of a range is broken?

    I would expect the same output of the following two commands, but the first one looks wrong to me: % echo abc^ABC.123 | sed 's/[^A-z0-9]/_/g' abc^ABC_123 % echo abc^ABC.123 | sed 's/[^[:alnum:]]/_/g' abc_ABC_123By the way, gsed does the same. Am I missing something?..
Back
Top