Account Management: Difference between revisions
		
		
		
		
		
		Jump to navigation
		Jump to search
		
				
		
		
	
No edit summary  | 
				No edit summary  | 
				||
| Line 1: | Line 1: | ||
As you know Telem-GW6 is Busybox Linux based system. So normal commands for managing user accounts and file permissions apply. Typical commands to know and use are: adduser, deluser, passwd, chmod, chown, cp, rm. Introduction to Busybox and its commands can be found from [http://linux.die.net/man/1/busybox]  | As you know Telem-GW6 is Busybox Linux based system. So normal commands for managing user accounts and file permissions apply. Typical commands to know and use are: adduser, deluser, passwd, chmod, chown, cp, rm. Introduction to Busybox and its commands can be found from [http://linux.die.net/man/1/busybox]  | ||
Small example script that deletes default accounts and adds new account called admin  | Small example script that deletes default accounts and adds new account called admin:  | ||
<syntaxhighlight lang="bash">  | <syntaxhighlight lang="bash">  | ||
#!/bin/sh  | #!/bin/sh  | ||
| Line 15: | Line 16: | ||
echo "Create user admin"  | echo "Create user admin"  | ||
adduser admin  | adduser admin  | ||
</syntaxhighlight>  | |||
It needs to be executed as root user.  | |||
Revision as of 13:51, 28 December 2011
As you know Telem-GW6 is Busybox Linux based system. So normal commands for managing user accounts and file permissions apply. Typical commands to know and use are: adduser, deluser, passwd, chmod, chown, cp, rm. Introduction to Busybox and its commands can be found from [1]
Small example script that deletes default accounts and adds new account called admin:
#!/bin/sh
echo "Remove user ftpuser and it's home directory"
deluser ftpuser
rm -r /home/ftpuser
echo "Remove user martem and it's home directory"
deluser martem
rm -r /home/martem
echo "Create user admin"
adduser admin
It needs to be executed as root user.