User`s manual
Table Of Contents
- 1. Introduction
- 2. Getting Started
- Starting Your UC-7400-CE Computer
- Resetting Your UC-7400-CE Computer
- Operating UC-7400-CE Computer Via Serial Console
- Changing the Network Settings
- Operating Your UC-7400-CE Computer Via Telnet Client
- User/Group Management
- Adjusting System Time and RTC Time
- Starting and Stopping Services
- Troubleshooting Network Connectivity
- Simple Network Management Protocol (SNMP)
- 3. Web-based Management System
- 4. Application Development
- 5. Programming Examples
- A. Operating Programmable Function Keys and LCM
- B. Firmware Upgrade Procedure
- C. Service Information

UC-7400-CE User’s Manual Getting Started
2-4
User/Group Management
User Group: You should assign specific services, such as ftp and telnet, to defined user groups
such that these services are accessible only by the users within the permissible user group. Three
user groups, namely “ftpd”, “telnetd”, and “httpd”, are already created by default for your
convenience.
Adding a Group: Use the command useradd –g <groupName> to create a user group.
\> useradd –g yyyy
group yyyy has been added.
Deleting a Group: To remove a group, use the command userdel –g <groupName>.
\> userdel –g yyyy
group yyyy has been removed.
Adding a User: Use the command useradd <newUserID> to add a user for accessing the system.
The user’s password, by default, is the same as the user name.
\> useradd xxxx
user xxxx has been added.
In addition, you can permit this user to access a particular service by typing -g followed by the
user group name of the service, i.e., useradd –g <groupName> <newUserID>. For example,
\> useradd –g telnetd xxxx
user xxxx is existent
group telnetd is existent
user xxxx has been added to group yyyy
Deleting a User: Use the command userdel <userID> to delete a user from the system. User
“admin” CANNOT be deleted.
\> userdel xxxx
user xxxx has been deleted
You can also just remove a user from a user group by using the command userdel –g
<groupName> <newUserID>. For example,
\> userdel –g yyyy xxxx
user xxxx has been removed from group yyyy
Changing the Password: Use the command “passwd <userID>” to change your login password.
Please type, The user’s password, by default, is the same as the user name.
\> passwd xxxx
Current password:
New password:
Retype new password:
Password has been changed