Difference between revisions of "Ubuntu Customization"

From Free Knowledge Base- The DUCK Project: information for everyone
Jump to: navigation, search
(Secure Shell Support for Remote Login)
Line 2: Line 2:
 
As root or using sudo do the following
 
As root or using sudo do the following
 
  apt-get install openssh-server openssh-client  
 
  apt-get install openssh-server openssh-client  
  /etc/init.d/ssh start
+
  service ssh start
 +
 
 +
== Add new user to system ==
 +
As root or using sudo do the following
 +
useradd -c "Nicole Ploof" -m -s /bin/bash nicolep
 +
passwd nicolep
 +
passwd -u nicolep
 +
The first line creates a new user account on the system, using the next available UID for users and creates a home directory /home/nicolep with the default shell bash assigned.  The next line prompts you to set a password for user nicolep and the last line ensures the login is unlocked.  Substitute nicolep for the username of your choice as well as -c comments in quotes for the first and last name of your choice.
  
 
== Numlock On by Default ==
 
== Numlock On by Default ==

Revision as of 16:40, 1 March 2014

Secure Shell Support for Remote Login

As root or using sudo do the following

apt-get install openssh-server openssh-client 
service ssh start

Add new user to system

As root or using sudo do the following

useradd -c "Nicole Ploof" -m -s /bin/bash nicolep
passwd nicolep
passwd -u nicolep

The first line creates a new user account on the system, using the next available UID for users and creates a home directory /home/nicolep with the default shell bash assigned. The next line prompts you to set a password for user nicolep and the last line ensures the login is unlocked. Substitute nicolep for the username of your choice as well as -c comments in quotes for the first and last name of your choice.

Numlock On by Default

Double Click to Launch

 

Contributeduck176.gif
Note: This page is notably incomplete. You can help. Please contribute by registering your email address and adding your knowledge to this page. The D.U.C.K. wiki was created to be a free informative place that allows an open exchange of accurate information.
Learn more...