[STEP] Limitation of the amount of the file which can be opened by Linux program

Step One: In system level, set the limitation of the amount of the files which can be opened by the user who running the Linux Program

# vi /etc/security/limites.conf

Add these lines:

......
rmt  -       nofile  1024
rmt  -       nproc   1024

(Add: Setting the rmt user can open 8192 files and 8192 processes in this Linux as an example here)

Step Two: In program level, check the setting of the amount of the files which can be opened by Linux program

# /bin/systemctl show 'rmt-server-mirror.service' | sort
......
LimitNOFILE=524288
......

(Add: The amount of opening the file by program rmt-server-mirror.service is limited at 8096 as an example here)

[步骤] 网络的设置 (在不插网线的情况) (openSUSE & SLES 版)

正文:

方法一:通过 ip 命令实现

1.1 添加 IP 地址

1.1.1 添加 IP 地址
# ip a add 192.168.0.11/24 dev eth0

或者:

# ip a add 192.168.0.11/255.255.255.0 dev eth0

(补充:这里以给 eth0 网卡配置 IP 地址 192.168.0.11/24 为例)

1.1.2 让刚刚添加的 IP 地址生效
# ip link set dev eth0 up

(补充:这里以让 eth0 网卡上的配置生效为例)

1.2 添加网关

# ip route add default via 192.168.0.1

(补充:这里以添加 IP 地址为 192.168.0.1 的网关为例)

1.3 添加路由

# ip route add 10.0.0.0/24 via 192.168.0.254

(补充:这里以添加指向网段 10.0.0.0/24 的流量通过 IP 地址 192.168.0.254 的路由为例)

1.4 删除已有的网络设置

1.4.1 删除已配置的 IP 地址
# ip a del 192.168.0.11 dev eth0

(补充:这里以删除 eth0 网卡上的 IP 地址 192.168.0.11 为例)

1.4.2 删除已配置的网关
# ip route del default via 192.168.0.1

(补充:这以删除已配置的网关 IP 地址 192.168.0.1 为例)

1.4.3 删除已配置的路由
# ip route del 10.0.0.0/24 dev eth0

或者:

# ip route del 192.168.0.254

(补充:这里以删除在 eth0 网卡上指向网段 10.0.0.0/24 的路由或者通过 IP 地址 192.168.0.254 的路由为例)

方法二:通过网卡配置文件实现

2.1 判断 Link detected 参数是 no

# /usr/sbin/ethtool eth0

确保输出结果如下:

......
Link detected: no

否则需要在网卡配置文件中添加以下内容:

......
LINK_REQUIRED='no'

2.2 修改网卡配置文件

# vi /etc/sysconfig/network/ifcfg-eth0

添加以下内容:

BOOTPROTO='static'
IPADDR='192.168.0.10/24'
STARTMODE='auto'


补充:这里以设置
1) 使用静态 IP 地址
2) IP 地址是 192.168.1.5
3) 子网掩码是 24
4) 开机自启
为例

2.3 设置网卡 IP 地址

# vim /etc/sysconfig/network/routes

将全部内容修改如下:

default 192.168.0.1

(补充:这里以设置 192.168.0.1 为网关 IP 地址为例)

步骤四:重新启动网络服务

# service network restart

参考文献:

https://www.suse.com/support/kb/doc/?id=000019764
https://www.suse.com/support/kb/doc/?id=000019454

[排错] 解决虚拟机使用命令 nmcli connection up enp1s0 时报错 Error: Connection activation failed: No suitable device found for this connection (device eth0 not available because profile is not compatible with device (mismatching interface name)). (给网卡配置的静态 IP 地址无法生效)

报错代码:

# nmcli connection up enp1s0 
Error: Connection activation failed: No suitable device found for this connection (device eth0 not available because profile is not compatible with device (mismatching interface name)).

解决方法:

步骤一:在虚拟机管理器上刷新虚拟机网卡的 MAC 地址或者删除原网卡添加一个新网卡

(步骤略)

步骤二:删除 NetworkManager 上所有的网卡配置

2.1 显示目前 NetworkManager 所有的网卡配置

# nmcli connection show

2.2 删除 NetworkManager 上所有的网卡配置

# nmcli connection delete enp1s0
# nmcli connection delete Wired\ connection\ 1 

(补充:这里以删除网卡配置 enp1s0 和 Wired\ connection\ 1 为例)

2.3 确保目前 NetworkManager 没有网卡配置

# nmcli connection show

(注意:确保这条命令输入后没有输出结果)

步骤三:添加新的 NetworkManager 网卡配置

3.1 显示目前的网卡硬件

# nmcli device show

(注意:这里需要记住网卡硬件的名称,因为下个步骤需要使用)

3.2 添加新的 NetworkManager 网卡配置

# nmcli connection add con-name eth0 ifname eth0 type ethernet

(补充:这里以给 eth0 网卡添加个名为 eth0 的 NetworkManager 网卡配置为例)

(注意:这里的 ifname 后面的名称,必须和上个步骤输出命令后显示的网卡硬件名称一致)

3.3 让刚刚添加的 NetworkManager 网卡配置生效

# nmcli device connect eth0

(补充:这里以启动 eth0 网卡为例)

(注意:这里的 eth0 是在上个步骤中使用 con-name 参数配置的网卡配置名)

步骤四:给 NetworkManager 网卡配置设置 IP 地址

4.1 给 NetworkManager 网卡配置设置 IP 地址

# nmcli connection modify eth0 ipv4.method manual ipv4.addresses 192.168.100.8/24 ipv4.gateway 192.168.100.1 autoconnect yes ipv4.dns 1.1.1.1

(补充:这里以给 eth0 网卡添加静态 IP 地址 192.168.100.8/24,网关 IP 地址 192.168.100.1,DNS 1.1.1.1 并开机自启为例)

(注意:这里的 eth0 是在前面的步骤中使用 con-name 参数配置的网卡配置名)

4.2 让刚刚配置的 IP 地址生效

# nmcli connection up eth0 

(补充:这里以让 eth0 网卡上配置的 IP 地址生效为例)

(注意:这里的 eth0 是在前面的步骤中使用 con-name 参数配置的网卡配置名)

[步骤] openSUSE & SLES 中文输出法的添加 (KDE Plasma 5 版)

正文:

步骤一:安装 fcitx5 输入法

# zypper install fcitx5

(注意:在安装 fcitx5 之前必须要先删除 fcitx,该步骤会在安装过程中自动进行,需要在这个过程中允许厂商变更)

步骤二:添加 fcitx5 输入法

System Setttings –> Regional Settings –> Input Method –> + Add Input Method… –> 添加需要的输入法 (例如:Pinyin) –> Apply

步骤三:使用 fcitx5 输入法

3.1 点击需要输入中文的语言框,将光标放在里面

3.2 点击右下角键盘标志,让标志从键盘变为 “拼” 字

3.3 此时可以输入中文了

3.4 此时可以按 “Shift” 键来回切换输入法

参考文献:

https://zh.opensuse.org/Fcitx5