使用奇怪的指令编辑 sudo 权限

使用奇怪的指令编辑 sudo 权限

您好,我正在使用 Ubuntu,并尝试安装 Chromium OS。他们建议使用 Ubuntu,但在使用他们的快速入门指南我跑了“先决条件”步骤 3 中的这些命令

cd /tmp
cat > ./sudo_editor <<EOF
#!/bin/sh
echo Defaults \!tty_tickets > \$1          # Entering your password in one shell affects all shells
echo Defaults timestamp_timeout=180 >> \$1 # Time between re-requesting your password, in minutes
EOF
chmod +x ./sudo_editor
sudo EDITOR=./sudo_editor visudo -f /etc/sudoers.d/relax_requirements

输入此命令时:

sudo EDITOR=./sudo_editor visudo -f /etc/sudoers.d/relax_requirements

错误是

fatal: unable to auto-detect email address (got 'myname@example.(none)')

我应该怎么办?

相关内容