Mint - 19.2 - 共通事項 - sshd・rcs・vim・ftpd

クラウディア 
1. 概要
2. sshd
3. rcs
4. vim
5. ftpd

1. 概要

 この手のものは、「apt」コマンドでインストールするのが、手っ取り早いのです。  以下、すべて、root ユーザで。

2. sshd

 インストール。

apt install openssh-server
 「Ubuntu」の系列なので、インストールすると同時に、有効化されています。

3. rcs

 インストール。

apt install rcs

4. vim

 インストール。

apt install vim
 「vim」の設定は、次ページで。

5. ftpd

 インストール。

apt install vsftpd
 設定を変更します。

vi /etc/vsftpd.conf

# Run standalone?  vsftpd can run either from an inetd or as a standalone
# daemon started from an initscript.
listen=NO
#
# This directive enables listening on IPv6 sockets. By default, listening
# on the IPv6 "any" address (::) will accept connections from both IPv6
# and IPv4 clients. It is not necessary to listen on *both* IPv4 and IPv6
# sockets. If you want that (perhaps because you want to listen on specific
# addresses) then you must run two copies of vsftpd with two configuration
# files.
listen_ipv6=YES
#
# Allow anonymous FTP? (Disabled by default).
anonymous_enable=NO
#
# Uncomment this to allow local users to log in.
local_enable=YES
#
# Uncomment this to enable any form of FTP write command.
#write_enable=YES
 を下記へ変更します。

# Run standalone?  vsftpd can run either from an inetd or as a standalone
# daemon started from an initscript.
listen=YES
#
# This directive enables listening on IPv6 sockets. By default, listening
# on the IPv6 "any" address (::) will accept connections from both IPv6
# and IPv4 clients. It is not necessary to listen on *both* IPv4 and IPv6
# sockets. If you want that (perhaps because you want to listen on specific
# addresses) then you must run two copies of vsftpd with two configuration
# files.
#listen_ipv6=YES
#
# Allow anonymous FTP? (Disabled by default).
anonymous_enable=NO
#
# Uncomment this to allow local users to log in.
local_enable=YES
#
# Uncomment this to enable any form of FTP write command.
write_enable=YES
 14行目、IPv4 で接続します。  22行目、IPv6 で接続しません。  31行目、アップロード可にします。  変更したら、再起動。

systemctl restart vsftpd
ハイスピードプラン