To make good use of the old, broken device… I decided to set up a server to accumulate experience. Considering the portability of the things I will be setting up, using Docker in containers is convenient for migration and usage.
Installation
The environment system uses Manjaro, since this is what I am most familiar with. And ArchWiki can provide help for many strange problems. Installing Docker is very simple:
1 | sudo pacman -S docker |
To speed up image (images) downloads, set up a domestic mirror source (registry mirror) for Docker Hub. The configuration file is /etc/docker/daemon.json
. After configuring, execute sudo systemctl restart docker
:
1 | { |
Image Creation and Internal Operations
Prepare to install R and the sscClust
package in a container. The company’s server is CentOS6, so pull the corresponding image:
1 | docker pull centos:6 |
However, after pulling the above image, it could not start normally. According to here, this might be an issue with the official image. So I switched to pulling centos:7
, which worked fine after changing versions.
1 | docker run -dti IMAGE_ID /bin/bash |
After logging in, install vim and set up basic environment variables. Then start installing R.
1 | yum -y install epel-release |
Install some system software packages required for R package installation.
1 | yum install -y openssl-devel libcurl-devel libxml2-devel gsl-devel |
After entering R, start installing sscClust
(installing R will automatically install a lot of dependencies; installing this package will have even more dependencies…)
1 | options("repos" = c(CRAN="https://mirrors.ustc.edu.cn/CRAN/")) |
If there are no special network issues, sscClust
should install smoothly. Finally, save the changes made to the Docker container as an image. After saving, it will display a series of sha256 values. Use docker images
to see the saved images.
1 | docker commit CONTAINER_ID r/sscclust |