我有AWS实例,但我无法以root身份登录,只能使用我的帐户登录。我可以使用什么命令编辑root文件?
答案 0 :(得分:1)
如果需要以root身份运行命令,则必须在命令前添加sudo
。像,
sudo <command>
答案 1 :(得分:0)
最好的方法是使用sudo和你拥有的用户,比如ec2-user,ubuntu,centos等。
from sklearn.feature_extraction.text import CountVectorizer
docs = [['This', 'is', 'the', 'first', 'document'],
['This', 'is', 'the', 'second', 'document']]
count_vect = CountVectorizer(tokenizer=lambda text: text)
X_train_counts = count_vect.fit_transform(docs)
答案 2 :(得分:0)
如上所述,最好使用sudo或
$ sudo su root
但是,如果您真的想以root身份登录,请打开
$ /etc/ssh/sshd_config
并将PermitRootLogin设置为true
然后您可以以root用户身份登录该实例。
(还要重启ssh守护进程,# systemctl reload sshd
)