驱动下载链接: https://www.nvidia.com/Download/index.aspx?lang=en-us
注:
- 通过 apt install 总是失败,但下载
NVIDIA-Linux-x86_64-550.78.run
之后,chmod +x *.run
,然后运行安装就可以
from requests.adapters import HTTPAdapter, Retry | |
from requests import Session | |
retries = Retry( | |
total=5, backoff_factor=1, status_forcelist=[502, 503, 504] | |
) | |
session = Session() # reuse tcp connection | |
session.mount("http://", HTTPAdapter(max_retries=retries)) | |
session.mount("https://", HTTPAdapter(max_retries=retries)) |
驱动下载链接: https://www.nvidia.com/Download/index.aspx?lang=en-us
注:
NVIDIA-Linux-x86_64-550.78.run
之后,chmod +x *.run
,然后运行安装就可以package main | |
import ( | |
"bytes" | |
"context" | |
"crypto/ed25519" | |
"encoding/hex" | |
"encoding/json" | |
"flag" | |
"fmt" |
package main | |
import ( | |
"fmt" | |
"github.com/ethereum/go-ethereum/accounts" | |
"github.com/ethereum/go-ethereum/common/hexutil" | |
"github.com/ethereum/go-ethereum/crypto" | |
) |
package main | |
import ( | |
"crypto/tls" | |
"crypto/x509" | |
"fmt" | |
"io/ioutil" | |
"net/http" | |
) |
下面介绍 podman
、podman-compose
安装及使用。
文中只列出了 Ubuntu 20.04
系统的安装过程。
If you created your key pair using AWS, you can use the OpenSSL tools to generate a fingerprint as follows:
$ openssl pkcs8 -in path_to_private_key -inform PEM -outform DER -topk8 -nocrypt | openssl sha1 -c
If you created a key pair using a third-party tool and uploaded the public key to AWS, you can use the OpenSSL tools to generate the fingerprint as follows:
$ openssl rsa -in path_to_private_key -pubout -outform DER | openssl md5 -c