我想在模式之后的第 3 行插入一行。z
示例:在每次匹配后插入单词3 行a
从
a
b1
c1
d1
a
b2
c2
d2
...
至
a
b1
c1
z
d1
a
b2
c2
z
d2
...
从nl
手册:
...
-f, --footer-numbering=STYLE
use STYLE for numbering footer lines
-h, --header-numbering=STYLE
use STYLE for numbering header lines
...
你能提供一个使用-f
and-h
选项的例子吗?什么被认为是页脚或页眉?
我录制了
ffmpeg -f alsa -ac 2 -i plughw:0,0 /tmp/audio.mp4
然后我移动/tmp/audio.mp4
到另一个目录 ( /root/audio.mp4
) 并没有停止ffmpeg
导致.mp4
文件损坏:
ffplay /root/audio.mp4
[...]
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x7f3524000b80] moov atom not found
audio.mp4: Invalid data found when processing input
如何恢复和读取我的.mp4
文件?
尽管PermitRootLogin
在我的 sshd_config 中选项设置为“yes”,但我无法连接到 ssh。
ssh localhost
root@localhost's password:
Permission denied, please try again.
这是我的完整版sshd_config
:
PasswordAuthentication yes
ChallengeResponseAuthentication no
UsePAM yes
X11Forwarding yes
PrintMotd no
AcceptEnv LANG LC_*
Subsystem sftp /usr/lib/openssh/sftp-server
PermitRootLogin yes
AllowUsers otheruser
是什么阻止了 ssh 连接作为 root 以及如何修复它?
我无法使用 pip 安装 gpg:
# pip install gpg
Collecting gpg
Downloading
Complete output from command python setup.py egg_info:
Could not find gpgme-config. Please install the libgpgme development package.
----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-QzenGe/gpg/
试图安装libgpgme
或libgpgme-dev
导致
# pip install libgpgme
Collecting libgpgme
Could not find a version that satisfies the requirement libgpgme (from versions: )
No matching distribution found for libgpgme
尽管我的发行版没有版本,我如何安装 gpg?
PS:
我在 Kali 4.6.0 上运行:
# uname -a
Linux hostname 4.6.0-kali1-amd64 #1 SMP Debian 4.6.4-1kali1 (2016-07-21) x86_64 GNU/Linux