pull down to refresh
sudo means: execute the following command as root. (it means "superuser do", because before sudo we only had su - "superuser", without the... do)
opti@server:~$ id -a
uid=1000(opti) gid=1000(opti) groups=1000(opti)
opti@server:~$ sudo id -a
uid=0(root) gid=0(root) groups=0(root)
but how? by using sudo
(sorry for dumb questions)