diff --git a/docs/eportal-api/README.md b/docs/eportal-api/README.md index 5c0b87363..67b5ed261 100644 --- a/docs/eportal-api/README.md +++ b/docs/eportal-api/README.md @@ -597,7 +597,7 @@ Puppet provides the framework to run tasks on target systems. The following is a Unregister KernelCare agent through API call: -```bash +``` #!/bin/bash EPORTAL_API_USERNAME= @@ -616,7 +616,7 @@ curl -kL -u "${EPORTAL_API_PASSWORD}"':'"${EPORTAL_API_PASSWORD}" -X POST "${EPO Example (unregister_server.sh): -```bash +``` #!/bin/bash EPORTAL_API_USERNAME=admin diff --git a/docs/extended-lifecycle-support-for-languages/README.md b/docs/extended-lifecycle-support-for-languages/README.md index 37af6ace4..c304bb598 100644 --- a/docs/extended-lifecycle-support-for-languages/README.md +++ b/docs/extended-lifecycle-support-for-languages/README.md @@ -138,13 +138,13 @@ rsync://repo.cloudlinux.com/PHP_ELS/ Example of creating a local mirror for all supported OS versions: -```bash +``` rsync -avSHP --delete rsync://repo.cloudlinux.com/PHP_ELS/ . ``` Example of creating a local mirror for a specific OS version: -```bash +``` rsync -avSHP --delete rsync://repo.cloudlinux.com/PHP_ELS/el6/ . ``` @@ -193,19 +193,19 @@ Currently, we provide OVAL data for the following OS versions: 1. Install OpenSCAP * for rpm systems: - ```bash + ``` yum install openscap openscap-utils scap-security-guide -y ``` * for deb systems: - ```bash + ``` apt-get install libopenscap8 -y ``` 2. Download OVAL stream: -```bash +``` wget https://repo.cloudlinux.com/php-els/centos6-els-php-oval.xml ``` 3. Run scanning: -```bash +``` oscap oval eval --results result.xml --report report.xml centos6-els-php-oval.xml ``` @@ -221,7 +221,7 @@ When you deploy an updated version of PHP through PHP ELS, using your system’s **The *bin* files:** -```javascript +``` [root@localhost ~]# ll /opt/alt/phpXY/usr/bin/ bytekit hphpa pear pecl phar.phar phpcb php-config phpcpd phploc phpunit-skelgen dbunit lsphp peardev phar php php-cgi phpcov phpize phpunit ppw @@ -230,7 +230,7 @@ dbunit lsphp peardev phar php ***Modules* and *pecl* extensions:** -```javascript +``` ls /opt/alt/phpXY/usr/lib64/php/modules/ ZendGuardLoader.so imagick.so oci8.so stem.so amqp.so imap.so odbc.so stomp.so @@ -268,14 +268,14 @@ igbinary.so oauth.so stats.so **Running code on a specific version through the CLI:** -```javascript +``` [root@localhost ~]# /opt/alt/phpXY/usr/bin/php helloworld.php Hello, World! ``` **Location of *ini* config files:** -```javascript +``` [root@localhost ~]# ls /opt/alt/phpXY/etc/php.d.all/ 40-leveldb.ini mailparse.ini redis.ini 40-snuffleupagus.ini mbstring.ini rrd.ini @@ -314,13 +314,13 @@ lzf.ini raphf.ini **Location of *default.ini*:** -```javascript +``` ls /opt/alt/phpXY/etc/php.d/default.ini ``` **Listing enabled modules on a specific version:** -```javascript +``` [root@localhost ~]# /opt/alt/php73/usr/bin/php -m [PHP Modules] bz2 @@ -357,7 +357,7 @@ zlib **Enabling a module through the CLI:** -```javascript +``` [root@localhost ~]# /opt/alt/php73/usr/bin/php -d "extension=igbinary.so" -m [PHP Modules] bz2 @@ -403,17 +403,17 @@ Extended Lifecycle Support (ELS) for Python from TuxCare provides security fixes 1. Download an installer script: -```bash +``` wget https://repo.cloudlinux.com/python-els/install-python-els-repo.sh ``` 2. Run the installer script with keys. The installation script registers the server in the CLN with the key, adds a PGP key and adds repository to the server. -```bash +``` sh install-python-els-repo.sh --license-key XXX-XXXXXXXXXXXX ``` 3. Verify that the installation was successful. To ensure the installation has been completed successfully, run the following command. It should return the info about an available package. If information about the package will be available, it would mean that installation was successful. After that, updates will be available for installation from the repository using the usual yum upgrade command. -```bash +``` yum info python2 Available Packages @@ -431,7 +431,7 @@ Description  : Python 2 is an old version of the language that is incompatible              : with the 3.x line of releases. ``` 4. To install python, it's necessary to enable the CodeReady Builder(CRB) repository, which contains the `gdbm` package. -```bash +``` yum install python2 --enablerepo crb ``` Once installed, you can use python2 in the usual way. @@ -451,13 +451,13 @@ To obtain the access to the local mirroring, provide your External IP address to To create a local mirror of the repository with security updates via `rsync`, use the following: -```bash +``` rsync://repo.cloudlinux.com/PYTHON_ELS/ ``` Example of creating a local mirror for all supported OS versions: -```bash +``` rsync -avSHP --delete rsync://repo.cloudlinux.com/PYTHON_ELS/ . ``` @@ -475,14 +475,14 @@ AlmaLinux 9: [https://repo.cloudlinux.com/python-els/almalinux9-els-python-oval. #### How to use OVAL 1. Install OpenSCAP: -```bash +``` yum install openscap openscap-utils scap-security-guide -y ``` 2. Download OVAL stream: -```bash +``` wget https://repo.cloudlinux.com/python-els/almalinux9-els-python-oval.xml ``` 3. Run scanning: -```bash +``` oscap oval eval --results result.xml --report report.xml almalinux9-els-python-oval.xml ``` diff --git a/docs/jp/eportal-api/README.md b/docs/jp/eportal-api/README.md index fa80538a7..01450e8be 100644 --- a/docs/jp/eportal-api/README.md +++ b/docs/jp/eportal-api/README.md @@ -256,7 +256,7 @@ Puppetは、対象のシステムでタスクを実行するためのフレー API呼び出しを介してKernelCareエージェントを登録解除します。 -```bash +``` #!/bin/bash EPORTAL_API_USERNAME= @@ -275,7 +275,7 @@ curl -kL -u "${EPORTAL_API_PASSWORD}"':'"${EPORTAL_API_PASSWORD}" -X POST "${EPO 例(unregister_server.sh): -```bash +``` #!/bin/bash EPORTAL_API_USERNAME=admin diff --git a/docs/jp/eportal/README.md b/docs/jp/eportal/README.md index 83536c861..b48741229 100644 --- a/docs/jp/eportal/README.md +++ b/docs/jp/eportal/README.md @@ -464,7 +464,7 @@ ePortalサーバーをKernelCareパッチサーバーに接続して、パッチ ePortalのテストインスタンスと本番インスタンスの違いを見てみましょう。 -```bash +``` $ comm -23 \ <(ssh eportal-test "ls /usr/share/kcare-eportal/arch/K*.tar.bz2" | sort -h) \ <(ssh eportal-prod "ls /usr/share/kcare-eportal/arch/K*.tar.bz2" | sort -h) | tee patchsets.diff @@ -472,14 +472,14 @@ $ comm -23 \ 本番環境にパッチセットをアップロードします。 -```bash +``` $ cat patchsets.diff | xargs -Phav {} rsync -iv eportal-test:{} /tmp/ $ rsync -Phav /tmp/K*.tar.bz2 eportal-prod:/tmp/ ``` パッチセットファイル名をパラメーターとして、展開ツールを実行します。 -```bash +``` $ ssh eportal-prod 'ls /tmp/K*.tar.bz2 | sort -h | xargs -n1 kc.eportal kcare deploy' 2021-12-02 01:25:06,555 - eportal.patches - INFO - K04082020_1 was enabled in main ... diff --git a/docs/jp/extended-lifecycle-support-for-languages/README.md b/docs/jp/extended-lifecycle-support-for-languages/README.md index f32788120..b731565bc 100644 --- a/docs/jp/extended-lifecycle-support-for-languages/README.md +++ b/docs/jp/extended-lifecycle-support-for-languages/README.md @@ -139,13 +139,13 @@ rsync://repo.cloudlinux.com/PHP_ELS/ サポートされているすべてのOSバージョンのローカルミラーを作成する例: -```bash +``` rsync -avSHP --delete rsync://repo.cloudlinux.com/PHP_ELS/ . ``` 特定のOSバージョンのローカルミラーを作成する例: -```bash +``` rsync -avSHP --delete rsync://repo.cloudlinux.com/PHP_ELS/el6/ . ``` @@ -188,19 +188,19 @@ OSを指定するには、推奨オプションのいずれかを使用してく 1. OpenSCAPをインストールします。 * rpmシステムの場合 - ```bash + ``` yum install openscap openscap-utils scap-security-guide -y ``` * debシステムの場合 - ```bash + ``` apt-get install libopenscap8 -y ``` 2. OVALストリームをダウンロードします。 -```bash +``` wget https://repo.cloudlinux.com/php-els/centos6-els-php-oval.xml ``` 3. スキャンを実行します。 -```bash +``` oscap oval eval --results result.xml --report report.xml centos6-els-php-oval.xml ``` @@ -299,7 +299,7 @@ oscap oval eval --results result.xml --report report.xml centos6-els-php-oval.xm ***bin*ファイル:** -```javascript +``` [root@localhost ~]# ll /opt/alt/phpXY/usr/bin/ bytekit hphpa pear pecl phar.phar phpcb php-config phpcpd phploc phpunit-skelgen dbunit lsphp peardev phar php php-cgi phpcov phpize phpunit ppw @@ -308,7 +308,7 @@ dbunit lsphp peardev phar php ***Modules*と*pecl*拡張モジュール:** -```javascript +``` ls /opt/alt/phpXY/usr/lib64/php/modules/ ZendGuardLoader.so imagick.so oci8.so stem.so amqp.so imap.so odbc.so stomp.so @@ -346,14 +346,14 @@ igbinary.so oauth.so stats.so **CLIを介した、特定のバージョンへのコードの実行:** -```javascript +``` [root@localhost ~]# /opt/alt/phpXY/usr/bin/php helloworld.php Hello, World! ``` ***ini*構成ファイルの場所:** -```javascript +``` [root@localhost ~]# ls /opt/alt/phpXY/etc/php.d.all/ 40-leveldb.ini mailparse.ini redis.ini 40-snuffleupagus.ini mbstring.ini rrd.ini @@ -392,13 +392,13 @@ lzf.ini raphf.ini ***default.ini*の場所:** -```javascript +``` ls /opt/alt/phpXY/etc/php.d/default.ini ``` **特定のバージョンで有効なモジュールのリスト表示:** -```javascript +``` [root@localhost ~]# /opt/alt/php73/usr/bin/php -m [PHP Modules] bz2 @@ -435,7 +435,7 @@ zlib **CLIを介したモジュールの有効化:** -```javascript +``` [root@localhost ~]# /opt/alt/php73/usr/bin/php -d "extension=igbinary.so" -m [PHP Modules] bz2 @@ -481,18 +481,18 @@ TuxCareは、Python向け延長ライフサイクルサポート(ELS)によ 1. インストールスクリプトをダウンロードします。 -```bash +``` wget https://repo.cloudlinux.com/python-els/install-python-els-repo.sh ``` 2. キーを使用して、インストールスクリプトを実行します。インストールスクリプトを実行すると、そのキーと共にCLNにサーバーが登録され、PGPキーが追加され、リポジトリがサーバーに追加されます。 -```bash +``` sh install-python-els-repo.sh --license-key XXX-XXXXXXXXXXXX ``` 3. インストールが成功したことを確認します。 インストールが正常に完了したことを確認するには、以下のコマンドを実行します。コマンドを実行すると、利用可能なパッケージに関する情報が返されるはずです。パッケージに関する情報が利用可能な場合は、インストールが成功したことになります。それ以降は、通常のyum upgradeコマンドを使用して、リポジトリから更新をインストールできます。 -```bash +``` yum info python2 Available Packages @@ -510,7 +510,7 @@ Description  : Python 2 is an old version of the language that is incompatible              : with the 3.x line of releases. ``` 4. Pythonをインストールするには、CodeReady Builder(CRB) リポジトリを有効にする必要があります。このリポジトリには、`gdbm`パッケージが含まれています。 -```bash +``` yum install python2 --enablerepo crb ``` インストールしたら、通常の方法でpython2を使用できます。 @@ -529,13 +529,13 @@ ELSアップデート用にPythonのローカルミラーを作成する機能 `rsync`経由でセキュリティアップデートのリポジトリのローカルミラーを作成するには、以下のコマンドを使用します。 -```bash +``` rsync://repo.cloudlinux.com/PYTHON_ELS/ ``` サポートされているすべてのOSバージョンのローカルミラーを作成する例: -```bash +``` rsync -avSHP --delete rsync://repo.cloudlinux.com/PYTHON_ELS/ . ``` @@ -552,14 +552,14 @@ AlmaLinux 9: [https://repo.cloudlinux.com/python-els/almalinux9-els-python-oval. #### OVALの使用方法 1. OpenSCAPをインストールします。 -```bash +``` yum install openscap openscap-utils scap-security-guide -y ``` 2. OVALストリームをダウンロードします。 -```bash +``` wget https://repo.cloudlinux.com/python-els/almalinux9-els-python-oval.xml ``` 3. スキャンを実行します。 -```bash +``` oscap oval eval --results result.xml --report report.xml almalinux9-els-python-oval.xml ``` \ No newline at end of file diff --git a/docs/jp/live-patching-services/README.md b/docs/jp/live-patching-services/README.md index 68f3cc405..add9b6651 100644 --- a/docs/jp/live-patching-services/README.md +++ b/docs/jp/live-patching-services/README.md @@ -480,7 +480,7 @@ curl -o /usr/libexec/kcare/kernelcare_pub.der https://patches.kernelcare.com/ker 1. rootユーザーで`mokutil`を使用して、この新しいMOKをUEFIファームウェアに追加します。 -```bash +``` $ mokutil --import /usr/libexec/kcare/kernelcare_pub.der input password: input password again: @@ -519,7 +519,7 @@ $ mokutil --list-enrolled | egrep -i 'SHA1|Issuer' 登録済みのキーが表示されない場合がありますが、以下のコマンドで確認できます。 -```bash +``` $ dmesg | grep -i 'cloud linux' [ 0.722149] EFI: Loaded cert 'Cloud Linux Software, Inc: Kernel Module Signing Key: 12ff0613c0f80cfba3b2f8eba71ebc27c5a76170' linked to '.system_keyring' ```