
RHEL系统下创建大于2T的磁盘分区
今天同事对联想NAS存储设备进行操作时,出现下面这种情况。现象如图所示:gptWARNING:The size of this disk is 21.7 TB (21653731934208 bytes). DOS partition table format can not be used on drives for volumes larger than 2.2 TB (21990232550

今天同事对联想NAS存储设备进行操作时,出现下面这种情况。现象如图所示:gptWARNING:The size of this disk is 21.7 TB (21653731934208 bytes). DOS partition table format can not be used on drives for volumes larger than 2.2 TB (21990232550

vsftpd安装配置一、安装,使用yum命令安装# yum install vsftpd二、 全局配置#vi /etc/vsftpd/vsftpd.conf //打开配置文件anonymous_enable=YES //启用匿名用户local_enable=YES //允许本地用户登录FTPwrite_enable=YES //允许写,上传local_umask=022 //设置反掩码为022an