1
| ssh admin@192.168.50.100
|
1
| vi /etc/ssh/sshd_config
|
参考下面的修改,将#PermitRootLogin prohibit-password
那一行的注释取消,然后后面的值改为yes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
| "/etc/ssh/sshd_config" 127L, 3398C
# $OpenBSD: sshd_config,v 1.100 2016/08/15 12:32:04 naddy Exp $
# This is the sshd server system-wide configuration file. See
# sshd_config(5) for more information.
# This sshd was compiled with PATH=/usr/bin:/bin:/usr/sbin:/sbin
# The strategy used for options in the default sshd_config shipped with
# OpenSSH is to specify options with their default value where
# possible, but leave them commented. Uncommented options override the
# default value.
#Port 22
#AddressFamily any
#ListenAddress 0.0.0.0
#ListenAddress ::
#HostKey /etc/ssh/ssh_host_rsa_key
#HostKey /etc/ssh/ssh_host_dsa_key
#HostKey /etc/ssh/ssh_host_ecdsa_key
#HostKey /etc/ssh/ssh_host_ed25519_key
# Ciphers and keying
#RekeyLimit default none
# Logging
#SyslogFacility AUTH
#LogLevel INFO
# Authentication:
#LoginGraceTime 2m
PermitRootLogin yes
#StrictModes yes
#MaxAuthTries 6
#MaxSessions 10
#PubkeyAuthentication yes
# The default is to check both .ssh/authorized_keys and .ssh/authorized_keys2
# but this is overridden so installations will only check .ssh/authorized_keys
#AuthorizedKeysFile .ssh/authorized_keys
|
1
| ssh admin@192.168.50.100
|
1
| synouser --setpw root xxx
|
1
| ssh root@192.168.50.100
|
查看命令:
cat /etc/issue
:这个命令会输出当前系统的版本信息,包括发行版名称和版本号。
uname -a
:这个命令会输出当前系统的内核版本信息。
cat /proc/version
:这个命令会输出当前系统的版本信息,包括内核版本、gcc版本和发行版信息等。
uname -a 的执行结果是 Linux kiwinas 4.4.59+ #23739 SMP PREEMPT Tue Jul 3 19:51:03 CST 2018 x86_64 GNU/Linux synology_apollolake_918+
,具体含义为:
Linux
:操作系统的内核类型,这里表示当前系统使用的是 Linux 内核。
kiwinas
:系统的主机名,也就是机器的名称。
4.4.59+
:当前系统使用的 Linux 内核版本号。
#23739 SMP PREEMPT Tue Jul 3 19:51:03 CST 2018
:内核编译的时间和日期,以及所使用的编译选项。
x86_64
:系统的处理器架构类型,这里表示当前系统使用的是 64 位处理器架构。
GNU/Linux
:系统的操作系统名称,这里表示当前系统是一个基于 GNU 工具集的 Linux 操作系统。
synology_apollolake_918+
:这是群晖 NAS 所使用的芯片型号,Apollolake 代表芯片架构,918 + 代表机型号。
在群晖系统的命令中,需要使用 synopkg
命令来管理软件包。synopkg
命令是群晖自带的软件包管理工具,它可以用来安装、升级和删除软件包。以下是一些常用的 synopkg
命令:
synopkg list
:列出所有已安装的软件包。
synopkg install <package-name>
:安装指定的软件包。
synopkg remove <package-name>
:删除指定的软件包。
synopkg upgrade <package-name>
:升级指定的软件包。