OSとversionは以下です。
cat /etc/redhat-release CentOS release 6.4 (Final)
現在、pythonのコードを実行したときに
GLIBC_2.16' not found
というエラーが出たため、これをアップデートしようと「yum update glibc」すると
yum update glibc Loaded plugins: aliases, changelog, downloadonly, fastestmirror, kabi, presto, refresh-packagekit, security, tmprepo, verify, versionlock Loading support for CentOS kernel ABI You need to be root to perform this command.
となったので、sudoで実行しようと思い
sudo update glibc [sudo] password for hamada: hamada is not in the sudoers file. This incident will be reported.
となりました。
自分をsudoersに追加しようと思い
visudo
をしたのですが
visudo: /etc/sudoers: Permission denied
とでてきてできません。
権限を変更するために
chmod 777 /etc/sudoers chmod: changing permissions of `/etc/sudoers': Operation not permitted
しようにもできないのですが、これは何が原因ですか。
Linux素人なのですが、教えていただけますか。