linux 技巧如何在没有 vim 的情况下覆盖 debain 源配置文件
· 阅读需 4 分钟
apt-get update 很慢
比如现在遇到情况是我通过以下命令想装个 curl
或者 telnet
之类的工具
apt-get update && apt-get install -y curl
这时,如果你的默认源是官方的,在国内可能是比较慢的,比如我的服务器在阿里云上的话,那么阿里云的源肯定是比较快的。
比如现在遇到情况是我通过以下命令想装个 curl
或者 telnet
之类的工具
apt-get update && apt-get install -y curl
这时,如果你的默认源是官方的,在国内可能是比较慢的,比如我的服务器在阿里云上的话,那么阿里云的源肯定是比较快的。
反引号位 (`) 位于键盘的 Tab 键的上方、1 键的左方。注意与单引号 (') 位于 Enter 键的左方的区别。 在 Linux 中起着命令替换的作用。命令替换是指 shell 能够将一个命令的标准输出插在一个命令行中任何位置。
如下,shell 会执行反引号中的 date 命令,把结果插入到 echo 命令显示的内容中。
[root@localhost sh] $ echo The date is \`date\`
The date is 2011年 03月 14日 星期一 21:15:43 CST
单引号、 双引号用于用户把带有空格的字符串赋值给变量事的分界符。
[root@localhost sh] $ str="Today is Monday"
[root@localhost sh] $ echo $str
Today is Monday
如果没有单引号或双引号,shell 会把空格后的字符串解释为命令。
[root@localhost sh] $ str=Today is Monday
bash: is: command not found
单引号和双引号的区别。单引号告诉 shell 忽略所有特殊字符,而双引号忽略大多数,但不包括 $、\、`。
[root@localhost sh] $ testvalue=100
[root@localhost sh] $ echo 'The testvalue is $testvalue'
The testvalue is $testvalue
[root@localhost sh] $ echo "The testvalue is $testvalue"
The testvalue is 100
我在使用 gitlab 时,使用 shell runner 时,将对应的变量放在了一个单引号的命令中,但是其中的变量始终不替换,后来换成双引号就好了,所以查了一下 linux 下单引号双引号的区别。
先查看下自己机器上的 OpenSSL 版本。
openssl version
cd /usr/local/src/
wget http://www.openssl.org/source/openssl-1.0.1g.tar.gz
tar -zxvf openssl-1.0.1g.tar.gz
cd openssl-1.0.1g
./config shared zlib
make && make install
mv /usr/bin/openssl /usr/bin/openssl.old
mv /usr/include/openssl /usr/include/openssl.old
ln -s /usr/local/ssl/bin/openssl /usr/bin/openssl
ln -s /usr/local/ssl/include/openssl /usr/include/openssl
echo "/usr/local/ssl/lib" >> /etc/ld.so.conf
ldconfig -v
我们再来看看 OpenSSL 版本信息.
1 2 3
openssl version
如果是 1.0.1g,说明你安装正确了