odroid-xu4:software:ubuntu_nas:01_basic_settings

This is an old revision of the document!


Basic Settings

Before you build, you should update your ODROID and set timezone, locale data.

Type the command lines below to update your ODROID.

target
$ sudo apt-get update && sudo apt-get dist-upgrade

And install latest kernel.

target
$ sudo apt-get install linux-image-xu3
$ reboot

Set timezone.

target
$ sudo dpkg-reconfigure tzdata

Set locale.

target
$ sudo locale-gen "en_US.UTF-8"
$ sudo update-locale LC_ALL=en_US.UTF-8 LANG=en_US.UTF-8
$ sudo dpkg-reconfigure locales
# Select "en_US.UTF-8" for all of the steps.

To take effect, you should re-connect your shell.

We strongly recommend you to create a user for SSH access or for doing something related to the ODROID.
And we also recommend you to create a group for the NAS services. For file sharing, specifying a group is very helpful.

To create a user and to grant super user permission, enter the command lines below:

target
# Enter prefer user name.
$ sudo adduser your-user-name
$ sudo usermod -G sudo your-user-name

To create a group, enter the command lines below:

target
# Enter prefer group name
$ sudo addgroup your-group-name

And to join a new user into a new group, enter the command lines below:

target
$ sudo usermod -a -G your-group-name your-user-name

After you're done, change root's password and disable SSH root login.

target
$ sudo passwd
 
$ sudo vi /etc/ssh/sshd_config
# Find "PermitRootLogin" and change it to "no".
$ sudo service sshd restart

Restart the shell and login again with your new account.

  • odroid-xu4/software/ubuntu_nas/01_basic_settings.1508308625.txt.gz
  • Last modified: 2017/10/18 15:07
  • by joshua