I was at the 4th/Harrison Whole Foods yesterday. At the checkout line, I was following a guy with a cart of San Pelligrino water (3 or 4 cases: $77!). The checkout person asked him "Do you want some help with that?", probably expecting, given that this dude is maybe 40, 6'3, looks quite in shape, for him to say "no", but instead, he says "yes", and we get the spectacle of a 5'2" woman pushing the cart for what seems to be a perfectly healthy guy. Perhaps he had some hidden incapacity, but if he had the strength to put the cases in his cart in the 1st place, he needs help pushing the cart into the elevator and unloading it into his car? Lazy, dude!
The problem with busybox is that it doesn't support a whole bunch of useful stuff that would help in this situation, such as sudo, and therefore the wheel solution proposed in other posts, in /etc/sudoers , can't be done. Likewise, usermod is not available, and even adduser -u 0 doesn't work because it complains that "UID 0 is already used". What you have to do is simple: adduser user vi /etc/passwd and modify the uid of user . /etc/passwd will look something like this: root:x:0:0:root:/home:/bin/sh daemon:x:1:1:daemon:/usr/sbin:/bin/sh sampleUser:x:1000:1000:Linux User,,,:/home/sampleUser:/bin/sh to give sampleUser root privileges, edit like this: sampleUser:x:0:0:Linux User,,,:/home/sampleUser:/bin/sh I.e. set sampleUser's uid = 0 Done.
Comments