加入收藏 | 设为首页 | 会员中心 | 我要投稿 财气旺网 - 财气网 (https://www.caiqiwang.com/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 服务器 > 搭建环境 > Linux > 正文

宝塔linux面板 磁盘 挂载脚本

发布时间:2022-12-07 11:29:53 所属栏目:Linux 来源:
导读:  +———————————————————————-

  | Auto mount partition d
  +———————————————————————-
 
  | Auto mount partition disk to $setup_path
 
  +———————————————————————-
 
  “
 
  #数据盘自动分区
 
  fdiskP(){
 
  for i in `cat /proc/partitions|grep -v name|grep -v ram|awk ‘{print $4}’|grep -v ‘^$’|grep -v ‘[0-9]$’|grep -v ‘vda’|grep -v ‘xvda’|grep -v ‘sda’|grep -e ‘vd’ -e ‘sd’ -e ‘xvd’`;
 
  do
 
  #判断指定目录是否被挂载
 
  isR=`df -P|grep $setup_path`
 
  if [ “$isR” != “” ];then
 
  echo “Error: The $setup_path directory has been mounted.”
 
  return;
 
  fi
 
  isM=`df -P|grep ‘/dev/${i}1’`
 
  if [ “$isM” != “” ];then
 
  echo “/dev/${i}1 has been mounted.”
 
  continue;
 
  fi
 
  #判断是否存在未分区磁盘
 
  isP=`fdisk -l /dev/$i |grep -v ‘bytes’|grep “$i[1-9]*”`
 
  if [ “$isP” = “” ];then
 
  #开始分区
 
  fdisk -S 56 /dev/$i > /etc/fstab
 
  mount -a
 
  df -h
 
  fi
 
  else
 
  #判断是否存在Windows磁盘分区
 
  isN=`fdisk -l /dev/$i|grep -v ‘bytes’|grep -v “NTFS”|grep -v “FAT32″`
 
  if [ “$isN” = “” ];then
 
  echo ‘Warning: The Windows partition was detected. For your data security, Mount manually.’;
 
  return;
 
  fi
 
  #挂载已有分区
 
  checkR=`df -P|grep “/dev/$i”`
 
  if [ “$checkR” = “” ];then
 
  mkdir $setup_path
 
  sed -i “/\/dev\/${i}1/d” /etc/fstab
 
  echo “/dev/${i}1 $setup_path ext4 defaults 0 0” >> /etc/fstab
 
  mount -a
 
  df -h
 
  fi
 
  #清理不可写分区
 
  echo ‘True’ > $setup_path/checkD.pl
 
  if [ ! -f $setup_path/checkD.pl ];then
 
  sed -i “/\/dev\/${i}1/d” /etc/fstab
 
  mount -a
 
  df -h
 
  else
 
  rm -f $setup_path/checkD.pl
 
  fi
 
  fi
 
  done
 
  }
 
  stop_service(){
 
  /etc/init.d/bt stop
 
  if [ -f “/etc/init.d/nginx” ]; then
 
  /etc/init.d/nginx stop > /dev/null 2>&1
 
  fi
 
  if [ -f “/etc/init.d/httpd” ]; then
 
  /etc/init.d/httpd stop > /dev/null 2>&1
 
  fi
 
  if [ -f “/etc/init.d/mysqld” ]; then
 
  /etc/init.d/mysqld stop > /dev/null 2>&1
 
  fi
 
  if [ -f “/etc/init.d/pure-ftpd” ]; then
 
  /etc/init.d/pure-ftpd stop > /dev/null 2>&1
 
  fi
 
  if [ -f “/etc/init.d/tomcat” ]; then
 
  /etc/init.d/tomcat stop > /dev/null 2>&1
 
  fi
 
  if [ -f “/etc/init.d/redis” ]; then
 
  /etc/init.d/redis stop > /dev/null 2>&1
 
  fi
 
  if [ -f “/etc/init.d/memcached” ]; then
 
  /etc/init.d/memcached stop > /dev/null 2>&1
 
  fi
 
  if [ -f “/www/server/panel/data/502Task.pl” ]; then
 
  rm -f /www/server/panel/data/502Task.pl
 
  if [ -f “/etc/init.d/php-fpm-52” ]; then
 
  /etc/init.d/php-fpm-52 stop > /dev/null 2>&1
 
  fi
 
  if [ -f “/etc/init.d/php-fpm-53” ]; then
 
  /etc/init.d/php-fpm-53 stop > /dev/null 2>&1
 
  fi
 
  if [ -f “/etc/init.d/php-fpm-54” ]; then
 
  /etc/init.d/php-fpm-54 stop > /dev/null 2>&1
 
  fi
 
  if [ -f “/etc/init.d/php-fpm-55” ]; then
 
  /etc/init.d/php-fpm-55 stop > /dev/null 2>&1
 
  fi
 
  if [ -f “/etc/init.d/php-fpm-56” ]; then
 
  /etc/init.d/php-fpm-56 stop > /dev/null 2>&1
 
  fi
 
  if [ -f “/etc/init.d/php-fpm-70” ]; then
 
  /etc/init.d/php-fpm-70 stop > /dev/null 2>&1
 
  fi
 
  if [ -f “/etc/init.d/php-fpm-71” ]; then
 
  /etc/init.d/php-fpm-71 stop > /dev/null 2>&1
 
  fi
 
  fi
 
  }
 
  start_service()
 
  {
 
  /etc/init.d/bt start
 
  if [ -f “/etc/init.d/nginx” ]; then
 
  /etc/init.d/nginx start > /dev/null 2>&1
 
  fi
 
  if [ -f “/etc/init.d/httpd” ]; then
 
  /etc/init.d/httpd start > /dev/null 2>&1
 
  fi
 
  if [ -f “/etc/init.d/mysqld” ]; then
 
  /etc/init.d/mysqld start > /dev/null 2>&1
 
  fi
 
  if [ -f “/etc/init.d/pure-ftpd” ]; then
 
  /etc/init.d/pure-ftpd start > /dev/null 2>&1
 
  fi
 
  if [ -f “/etc/init.d/tomcat” ]; then
 
  /etc/init.d/tomcat start > /dev/null 2>&1
 
  fi
 
  if [ -f “/etc/init.d/redis” ]; then
 
  /etc/init.d/redis start > /dev/null 2>&1
 
  fi
 
  if [ -f “/etc/init.d/memcached” ]; then
 
  /etc/init.d/memcached start > /dev/null 2>&1
 
  fi
 
  if [ -f “/etc/init.d/php-fpm-52” ]; then
 
  /etc/init.d/php-fpm-52 start > /dev/null 2>&1
 
  fi
 
  if [ -f “/etc/init.d/php-fpm-53” ]; then
 
  /etc/init.d/php-fpm-53 start > /dev/null 2>&1
 
  fi
 
  if [ -f “/etc/init.d/php-fpm-54” ]; then
 
  /etc/init.d/php-fpm-54 start > /dev/null 2>&1
 
  fi
 
  if [ -f “/etc/init.d/php-fpm-55” ]; then
 
  /etc/init.d/php-fpm-55 start > /dev/null 2>&1
 
  fi
 
  if [ -f “/etc/init.d/php-fpm-56” ]; then
 
  /etc/init.d/php-fpm-56 start > /dev/null 2>&1
 
  fi
 
  if [ -f “/etc/init.d/php-fpm-70” ]; then
 
  /etc/init.d/php-fpm-70 start > /dev/null 2>&1
 
  fi
 
  if [ -f “/etc/init.d/php-fpm-71” ]; then
 
  /etc/init.d/php-fpm-71 start > /dev/null 2>&1
 
  fi
 
  echo “True” > /www/server/panel/data/502Task.pl
 
  }
 
  while [ “$go” != ‘y’ ] && [ “$go” != ‘n’ ]
 
  do
 
  read -p “Do you want to try to mount the data disk to the $setup_path directory?(y/n): ” go;
 
  done
 
  if [ “$go” = ‘n’ ];then
 
  echo -e “Bye-bye”
 
  exit;
 
  fi
 
  if [ -f “/etc/init.d/bt” ] && [ -f “/www/server/panel/main.pyc” ]; then
 
  disk=`cat /proc/partitions|grep -v name|grep -v ram|awk ‘{print $4}’|grep -v ‘^$’|grep -v ‘[0-9]$’|grep -v ‘vda’|grep -v ‘xvda’|grep -v ‘sda’|grep -e ‘vd’ -e ‘sd’ -e ‘xvd’`
 
  diskFree=`cat /proc/partitions |grep ${disk}|awk ‘{print $3}’`
 
  wwwUse=`du -sh -k /www|awk ‘{print $1}’`
 
  if [ “${diskFree}” -lt “${wwwUse}” ]; then
 
  echo -e “Sorry,your data disk is too small,can’t coxpy to the ”
 
  echo -e “对不起,你的数据盘太小,无法迁移www目录数据到此数据盘”
 
  exit;
 
  else
 
  echo -e “”
 
  echo -e “stop bt-service”
 
  echo -e “停止宝塔服务”
 
  echo -e “”
 
  sleep 3
 
  stop_service
 
  echo -e “”
 
  mv /www /bt-backup
 
  echo -e “disk partition…”
 
  echo -e “磁盘分区…”
 
  sleep 2
 
  echo -e “”
 
  fdiskP
 
  echo -e “”
 
  echo -e “move disk…”
 
  echo -e “迁移数据中…”
 
  \cp -r -p -a /bt-backup/* /www
 
  echo -e “”
 
  echo -e “Done”
 
  echo -e “迁移完成”
 
  echo -e “”
 
  echo -e “start bt-service”
 
  echo -e “启动宝塔服务”
 
  echo -e “”
 
  start_service
 
  fi
 
  else
 
  fdiskP
 
  echo -e “”
 
  echo -e “Done”
 
  echo -e “挂载成功”
 
  fi
 
  本条目发布于2018年8月21日。属于工具、常见问题、知识库分类linux面板,被贴了 宝塔linux面板、宝塔磁盘挂载、宝塔磁盘挂载脚本、宝塔面板 标签。
 

(编辑:财气旺网 - 财气网)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!