четверг, 7 июля 2022 г.

Centos Добавить CA Global Sign

Первый сертификат с этой страницы
 https://support.globalsign.com/ca-certificates/intermediate-certificates/organizationssl-intermediate-certificates (https://secure.globalsign.com/cacert/gsrsaovsslca2018.crt) 

 To add: 
 Install the ca-certificates package: 
yum install ca-certificates 
Enable the dynamic CA configuration feature: 
update-ca-trust force-enable 
Add it as a new file to /etc/pki/ca-trust/source/anchors/: 
cp foo.crt /etc/pki/ca-trust/source/anchors/ 
Use command: 
update-ca-trust extract

среда, 1 августа 2018 г.

Создание архивированного образа карты

Pretty good and simple way to deal with this is simply pipe it via gzip, something like this:
# dd if=/dev/sdb | gzip > backup.img.gz
This way your image will be compressed and most likely unused space will be squeezed to almost nothing.
You would use this to restore such image back:
# cat backup.img.gz | gunzip | dd of=/dev/sdb

Centos Добавить CA Global Sign

Первый сертификат с этой страницы  https://support.globalsign.com/ca-certificates/intermediate-certificates/organizationssl-intermediate-cer...