当前位置: 首页 > news >正文

自动化运维-检测Linux服务器CPU、内存、负载、IO读写、机房带宽和服务器类型等信息脚本

前言:以上脚本为今年8月1号发布的,当时是没有任何问题,但现在脚本里网络速度测试py文件获取不了了,测速这块功能目前无法实现,后面我会抽时间来研究,大家如果有建议也可以分享下。在这里插入图片描述

脚本内容:

#!/usr/bin/env bash
#
#
#
#RED='\033[0;31m'
GREEN='\033[0;32m'
YELLOW='\033[0;33m'
SKYBLUE='\033[0;36m'
PLAIN='\033[0m'about() {echo ""echo " ========================================================= "echo " \                 Superbench.sh  Script                 / "echo " \       Basic system info, I/O test and speedtest       / "echo " \                   v1.1.7 (7 Apr 2024)                 / "echo " \                   Created by Oldking                  / "echo " ========================================================= "echo ""echo " Intro: https://www.oldking.net/350.html"echo " Copyright (C) 2024 Oldking oooldking@gmail.com"echo ""
}cancel() {echo ""next;echo " Abort ..."echo " Cleanup ..."cleanup;echo " Done"exit
}trap cancel SIGINTbenchinit() {if [ -f /etc/redhat-release ]; thenrelease="centos"elif cat /etc/issue | grep -Eqi "debian"; thenrelease="debian"elif cat /etc/issue | grep -Eqi "ubuntu"; thenrelease="ubuntu"elif cat /etc/issue | grep -Eqi "centos|red hat|redhat"; thenrelease="centos"elif cat /proc/version | grep -Eqi "debian"; thenrelease="debian"elif cat /proc/version | grep -Eqi "ubuntu"; thenrelease="ubuntu"elif cat /proc/version | grep -Eqi "centos|red hat|redhat"; thenrelease="centos"fi[[ $EUID -ne 0 ]] && echo -e "${RED}Error:${PLAIN} This script must be run as root!" && exit 1if  [ ! -e '/usr/bin/python' ]; thenecho " Installing Python ..."if [ "${release}" == "centos" ]; thenyum update > /dev/null 2>&1yum -y install python > /dev/null 2>&1elseapt-get update > /dev/null 2>&1apt-get -y install python > /dev/null 2>&1fifiif  [ ! -e '/usr/bin/curl' ]; thenecho " Installing Curl ..."if [ "${release}" == "centos" ]; thenyum update > /dev/null 2>&1yum -y install curl > /dev/null 2>&1elseapt-get update > /dev/null 2>&1apt-get -y install curl > /dev/null 2>&1fifiif  [ ! -e '/usr/bin/wget' ]; thenecho " Installing Wget ..."if [ "${release}" == "centos" ]; thenyum update > /dev/null 2>&1yum -y install wget > /dev/null 2>&1elseapt-get update > /dev/null 2>&1apt-get -y install wget > /dev/null 2>&1fifiif  [ ! -e './speedtest-cli/speedtest' ]; thenecho " Installing Speedtest-cli ..."wget --no-check-certificate -qO speedtest.tgz https://cdn.jsdelivr.net/gh/oooldking/script@1.1.7/speedtest_cli/ookla-speedtest-1.0.0-$(uname -m)-linux.tgz > /dev/null 2>&1fimkdir -p speedtest-cli && tar zxvf speedtest.tgz -C ./speedtest-cli/ > /dev/null 2>&1 && chmod a+rx ./speedtest-cli/speedtestif  [ ! -e 'tools.py' ]; thenecho " Installing tools.py ..."wget --no-check-certificate https://cdn.jsdelivr.net/gh/oooldking/script@1.1.7/tools.py > /dev/null 2>&1fichmod a+rx tools.pyif  [ ! -e 'fast_com.py' ]; thenecho " Installing Fast.com-cli ..."wget --no-check-certificate https://cdn.jsdelivr.net/gh/sanderjo/fast.com@master/fast_com.py > /dev/null 2>&1wget --no-check-certificate https://cdn.jsdelivr.net/gh/sanderjo/fast.com@master/fast_com_example_usage.py > /dev/null 2>&1fichmod a+rx fast_com.pychmod a+rx fast_com_example_usage.pysleep 5start=$(date +%s) 
}get_opsy() {[ -f /etc/redhat-release ] && awk '{print ($1,$3~/^[0-9]/?$3:$4)}' /etc/redhat-release && return[ -f /etc/os-release ] && awk -F'[= "]' '/PRETTY_NAME/{print $3,$4,$5}' /etc/os-release && return[ -f /etc/lsb-release ] && awk -F'[="]+' '/DESCRIPTION/{print $2}' /etc/lsb-release && return
}next() {printf "%-70s\n" "-" | sed 's/\s/-/g' | tee -a $log
}speed_test(){if [[ $1 == '' ]]; thenspeedtest-cli/speedtest -p no --accept-license > $speedLog 2>&1is_upload=$(cat $speedLog | grep 'Upload')result_speed=$(cat $speedLog | awk -F ' ' '/Result/{print $3}')if [[ ${is_upload} ]]; thenlocal REDownload=$(cat $speedLog | awk -F ' ' '/Download/{print $3}')local reupload=$(cat $speedLog | awk -F ' ' '/Upload/{print $3}')local relatency=$(cat $speedLog | awk -F ' ' '/Latency/{print $2}')temp=$(echo "$relatency" | awk -F '.' '{print $1}')if [[ ${temp} -gt 50 ]]; thenrelatency="(*)"${relatency}filocal nodeName=$2temp=$(echo "${REDownload}" | awk -F ' ' '{print $1}')if [[ $(awk -v num1=${temp} -v num2=0 'BEGIN{print(num1>num2)?"1":"0"}') -eq 1 ]]; thenprintf "${YELLOW}%-18s${GREEN}%-18s${RED}%-20s${SKYBLUE}%-12s${PLAIN}\n" " ${nodeName}" "${reupload} Mbit/s" "${REDownload} Mbit/s" "${relatency} ms" | tee -a $logfielselocal cerror="ERROR"fielsespeedtest-cli/speedtest -p no -s $1 --accept-license > $speedLog 2>&1is_upload=$(cat $speedLog | grep 'Upload')if [[ ${is_upload} ]]; thenlocal REDownload=$(cat $speedLog | awk -F ' ' '/Download/{print $3}')local reupload=$(cat $speedLog | awk -F ' ' '/Upload/{print $3}')local relatency=$(cat $speedLog | awk -F ' ' '/Latency/{print $2}')local nodeName=$2temp=$(echo "${REDownload}" | awk -F ' ' '{print $1}')if [[ $(awk -v num1=${temp} -v num2=0 'BEGIN{print(num1>num2)?"1":"0"}') -eq 1 ]]; thenprintf "${YELLOW}%-18s${GREEN}%-18s${RED}%-20s${SKYBLUE}%-12s${PLAIN}\n" " ${nodeName}" "${reupload} Mbit/s" "${REDownload} Mbit/s" "${relatency} ms" | tee -a $logfielselocal cerror="ERROR"fifi
}print_speedtest() {printf "%-18s%-18s%-20s%-12s\n" " Node Name" "Upload Speed" "Download Speed" "Latency" | tee -a $logspeed_test '' 'Speedtest.net'speed_fast_comspeed_test '27377' 'Beijing 5G   CT'speed_test '26352' 'Nanjing 5G   CT'speed_test '17145' 'Hefei 5G     CT'speed_test '27594' 'Guangzhou 5G CT'speed_test '27154' 'TianJin 5G   CU'speed_test '24447' 'Shanghai 5G  CU'speed_test '26678' 'Guangzhou 5G CU'speed_test '17184' 'Tianjin 5G   CM'speed_test '26850' 'Wuxi 5G      CM'speed_test '27249' 'Nanjing 5G   CM'speed_test '26404' 'Hefei 5G     CM'speed_test '28491' 'Changsha 5G  CM'rm -rf speedtest*
}print_speedtest_fast() {printf "%-18s%-18s%-20s%-12s\n" " Node Name" "Upload Speed" "Download Speed" "Latency" | tee -a $logspeed_test '' 'Speedtest.net'speed_fast_comspeed_test '27377' 'Beijing 5G   CT'speed_test '24447' 'ShangHai 5G  CU'speed_test '27249' 'Nanjing 5G   CM'rm -rf speedtest*
}speed_fast_com() {temp=$(python fast_com_example_usage.py 2>&1)is_down=$(echo "$temp" | grep 'Result') if [[ ${is_down} ]]; thentemp1=$(echo "$temp" | awk -F ':' '/Result/{print $2}')temp2=$(echo "$temp1" | awk -F ' ' '/Mbps/{print $1}')local REDownload="$temp2 Mbit/s"local reupload="0.00 Mbit/s"local relatency="-"local nodeName="Fast.com"printf "${YELLOW}%-18s${GREEN}%-18s${RED}%-20s${SKYBLUE}%-12s${PLAIN}\n" " ${nodeName}" "${reupload}" "${REDownload}" "${relatency}" | tee -a $logelselocal cerror="ERROR"firm -rf fast_com_example_usage.pyrm -rf fast_com.py}io_test() {(LANG=C dd if=/dev/zero of=test_file_$$ bs=512K count=$1 conv=fdatasync && rm -f test_file_$$ ) 2>&1 | awk -F, '{io=$NF} END { print io}' | sed 's/^[ \t]*//;s/[ \t]*$//'
}calc_disk() {local total_size=0local array=$@for size in ${array[@]}do[ "${size}" == "0" ] && size_t=0 || size_t=`echo ${size:0:${#size}-1}`[ "`echo ${size:(-1)}`" == "K" ] && size=0[ "`echo ${size:(-1)}`" == "M" ] && size=$( awk 'BEGIN{printf "%.1f", '$size_t' / 1024}' )[ "`echo ${size:(-1)}`" == "T" ] && size=$( awk 'BEGIN{printf "%.1f", '$size_t' * 1024}' )[ "`echo ${size:(-1)}`" == "G" ] && size=${size_t}total_size=$( awk 'BEGIN{printf "%.1f", '$total_size' + '$size'}' )doneecho ${total_size}
}power_time() {result=$(smartctl -a $(result=$(cat /proc/mounts) && echo $(echo "$result" | awk '/data=ordered/{print $1}') | awk '{print $1}') 2>&1) && power_time=$(echo "$result" | awk '/Power_On/{print $10}') && echo "$power_time"
}install_smart() {if  [ ! -e '/usr/sbin/smartctl' ]; thenecho "Installing Smartctl ..."if [ "${release}" == "centos" ]; thenyum update > /dev/null 2>&1yum -y install smartmontools > /dev/null 2>&1elseapt-get update > /dev/null 2>&1apt-get -y install smartmontools > /dev/null 2>&1fi      fi
}ip_info4(){ip_date=$(curl -4 -s http://api.ip.la/en?json)echo $ip_date > ip_json.jsonisp=$(python tools.py geoip isp)as_tmp=$(python tools.py geoip as)asn=$(echo $as_tmp | awk -F ' ' '{print $1}')org=$(python tools.py geoip org)if [ -z "ip_date" ]; thenecho $ip_dateecho "hala"country=$(python tools.py ipip country_name)city=$(python tools.py ipip city)countryCode=$(python tools.py ipip country_code)region=$(python tools.py ipip province)elsecountry=$(python tools.py geoip country)city=$(python tools.py geoip city)countryCode=$(python tools.py geoip countryCode)region=$(python tools.py geoip regionName)	fiif [ -z "$city" ]; thencity=${region}fiecho -e " ASN & ISP            : ${SKYBLUE}$asn, $isp${PLAIN}" | tee -a $logecho -e " Organization         : ${YELLOW}$org${PLAIN}" | tee -a $logecho -e " Location             : ${SKYBLUE}$city, ${YELLOW}$country / $countryCode${PLAIN}" | tee -a $logecho -e " Region               : ${SKYBLUE}$region${PLAIN}" | tee -a $logrm -rf tools.pyrm -rf ip_json.json
}virt_check(){if hash ifconfig 2>/dev/null; theneth=$(ifconfig)fivirtualx=$(dmesg) 2>/dev/nullif  [ $(which dmidecode) ]; thensys_manu=$(dmidecode -s system-manufacturer) 2>/dev/nullsys_product=$(dmidecode -s system-product-name) 2>/dev/nullsys_ver=$(dmidecode -s system-version) 2>/dev/nullelsesys_manu=""sys_product=""sys_ver=""fiif grep docker /proc/1/cgroup -qa; thenvirtual="Docker"elif grep lxc /proc/1/cgroup -qa; thenvirtual="Lxc"elif grep -qa container=lxc /proc/1/environ; thenvirtual="Lxc"elif [[ -f /proc/user_beancounters ]]; thenvirtual="OpenVZ"elif [[ "$virtualx" == *kvm-clock* ]]; thenvirtual="KVM"elif [[ "$cname" == *KVM* ]]; thenvirtual="KVM"elif [[ "$cname" == *QEMU* ]]; thenvirtual="KVM"elif [[ "$virtualx" == *"VMware Virtual Platform"* ]]; thenvirtual="VMware"elif [[ "$virtualx" == *"Parallels Software International"* ]]; thenvirtual="Parallels"elif [[ "$virtualx" == *VirtualBox* ]]; thenvirtual="VirtualBox"elif [[ -e /proc/xen ]]; thenvirtual="Xen"elif [[ "$sys_manu" == *"Microsoft Corporation"* ]]; thenif [[ "$sys_product" == *"Virtual Machine"* ]]; thenif [[ "$sys_ver" == *"7.0"* || "$sys_ver" == *"Hyper-V" ]]; thenvirtual="Hyper-V"elsevirtual="Microsoft Virtual Machine"fifielsevirtual="Dedicated"fi
}power_time_check(){echo -ne " Power time of disk   : "install_smartptime=$(power_time)echo -e "${SKYBLUE}$ptime Hours${PLAIN}"
}freedisk() {freespace=$( df -m . | awk 'NR==2 {print $4}' )if [[ $freespace == "" ]]; then$freespace=$( df -m . | awk 'NR==3 {print $3}' )fiif [[ $freespace -gt 1024 ]]; thenprintf "%s" $((1024*2))elif [[ $freespace -gt 512 ]]; thenprintf "%s" $((512*2))elif [[ $freespace -gt 256 ]]; thenprintf "%s" $((256*2))elif [[ $freespace -gt 128 ]]; thenprintf "%s" $((128*2))elseprintf "1"fi
}print_io() {if [[ $1 == "fast" ]]; thenwritemb=$((128*2))elsewritemb=$(freedisk)fiwritemb_size="$(( writemb / 2 ))MB"if [[ $writemb_size == "1024MB" ]]; thenwritemb_size="1.0GB"fiif [[ $writemb != "1" ]]; thenecho -n " I/O Speed( $writemb_size )   : " | tee -a $logio1=$( io_test $writemb )echo -e "${YELLOW}$io1${PLAIN}" | tee -a $logecho -n " I/O Speed( $writemb_size )   : " | tee -a $logio2=$( io_test $writemb )echo -e "${YELLOW}$io2${PLAIN}" | tee -a $logecho -n " I/O Speed( $writemb_size )   : " | tee -a $logio3=$( io_test $writemb )echo -e "${YELLOW}$io3${PLAIN}" | tee -a $logioraw1=$( echo $io1 | awk 'NR==1 {print $1}' )[ "`echo $io1 | awk 'NR==1 {print $2}'`" == "GB/s" ] && ioraw1=$( awk 'BEGIN{print '$ioraw1' * 1024}' )ioraw2=$( echo $io2 | awk 'NR==1 {print $1}' )[ "`echo $io2 | awk 'NR==1 {print $2}'`" == "GB/s" ] && ioraw2=$( awk 'BEGIN{print '$ioraw2' * 1024}' )ioraw3=$( echo $io3 | awk 'NR==1 {print $1}' )[ "`echo $io3 | awk 'NR==1 {print $2}'`" == "GB/s" ] && ioraw3=$( awk 'BEGIN{print '$ioraw3' * 1024}' )ioall=$( awk 'BEGIN{print '$ioraw1' + '$ioraw2' + '$ioraw3'}' )ioavg=$( awk 'BEGIN{printf "%.1f", '$ioall' / 3}' )echo -e " Average I/O Speed    : ${YELLOW}$ioavg MB/s${PLAIN}" | tee -a $logelseecho -e " ${RED}Not enough space!${PLAIN}"fi
}print_system_info() {echo -e " CPU Model            : ${SKYBLUE}$cname${PLAIN}" | tee -a $logecho -e " CPU Cores            : ${YELLOW}$cores Cores ${SKYBLUE}$freq MHz $arch${PLAIN}" | tee -a $logecho -e " CPU Cache            : ${SKYBLUE}$corescache ${PLAIN}" | tee -a $logecho -e " OS                   : ${SKYBLUE}$opsy ($lbit Bit) ${YELLOW}$virtual${PLAIN}" | tee -a $logecho -e " Kernel               : ${SKYBLUE}$kern${PLAIN}" | tee -a $logecho -e " Total Space          : ${SKYBLUE}$disk_used_size GB / ${YELLOW}$disk_total_size GB ${PLAIN}" | tee -a $logecho -e " Total RAM            : ${SKYBLUE}$uram MB / ${YELLOW}$tram MB ${SKYBLUE}($bram MB Buff)${PLAIN}" | tee -a $logecho -e " Total SWAP           : ${SKYBLUE}$uswap MB / $swap MB${PLAIN}" | tee -a $logecho -e " Uptime               : ${SKYBLUE}$up${PLAIN}" | tee -a $logecho -e " Load Average         : ${SKYBLUE}$load${PLAIN}" | tee -a $logecho -e " TCP CC               : ${YELLOW}$tcpctrl${PLAIN}" | tee -a $log
}print_end_time() {end=$(date +%s) time=$(( $end - $start ))if [[ $time -gt 60 ]]; thenmin=$(expr $time / 60)sec=$(expr $time % 60)echo -ne " Finished in  : ${min} min ${sec} sec" | tee -a $logelseecho -ne " Finished in  : ${time} sec" | tee -a $logfiprintf '\n' | tee -a $logbj_time=$(curl -s http://cgi.im.qq.com/cgi-bin/cgi_svrtime)if [[ $(echo $bj_time | grep "html") ]]; thenbj_time=$(date -u +%Y-%m-%d" "%H:%M:%S -d '+8 hours')fiecho " Timestamp    : $bj_time GMT+8" | tee -a $logecho " Results      : $log"
}get_system_info() {cname=$( awk -F: '/model name/ {name=$2} END {print name}' /proc/cpuinfo | sed 's/^[ \t]*//;s/[ \t]*$//' )cores=$( awk -F: '/model name/ {core++} END {print core}' /proc/cpuinfo )freq=$( awk -F: '/cpu MHz/ {freq=$2} END {print freq}' /proc/cpuinfo | sed 's/^[ \t]*//;s/[ \t]*$//' )corescache=$( awk -F: '/cache size/ {cache=$2} END {print cache}' /proc/cpuinfo | sed 's/^[ \t]*//;s/[ \t]*$//' )tram=$( free -m | awk '/Mem/ {print $2}' )uram=$( free -m | awk '/Mem/ {print $3}' )bram=$( free -m | awk '/Mem/ {print $6}' )swap=$( free -m | awk '/Swap/ {print $2}' )uswap=$( free -m | awk '/Swap/ {print $3}' )up=$( awk '{a=$1/86400;b=($1%86400)/3600;c=($1%3600)/60} {printf("%d days %d hour %d min\n",a,b,c)}' /proc/uptime )load=$( w | head -1 | awk -F'load average:' '{print $2}' | sed 's/^[ \t]*//;s/[ \t]*$//' )opsy=$( get_opsy )arch=$( uname -m )lbit=$( getconf LONG_BIT )kern=$( uname -r )disk_size1=$( LANG=C df -hPl | grep -wvE '\-|none|tmpfs|overlay|shm|udev|devtmpfs|by-uuid|chroot|Filesystem' | awk '{print $2}' )disk_size2=$( LANG=C df -hPl | grep -wvE '\-|none|tmpfs|overlay|shm|udev|devtmpfs|by-uuid|chroot|Filesystem' | awk '{print $3}' )disk_total_size=$( calc_disk ${disk_size1[@]} )disk_used_size=$( calc_disk ${disk_size2[@]} )tcpctrl=$( sysctl net.ipv4.tcp_congestion_control | awk -F ' ' '{print $3}' )virt_check
}print_intro() {printf ' Superbench.sh -- https://www.oldking.net/350.html\n' | tee -a $logprintf " Mode  : \e${GREEN}%s\e${PLAIN}    Version : \e${GREEN}%s${PLAIN}\n" $mode_name 1.1.7 | tee -a $logprintf ' Usage : wget -qO- sb.oldking.net | bash\n' | tee -a $log
}sharetest() {echo " Share result:" | tee -a $logecho " · $result_speed" | tee -a $loglog_preuploadcase $1 in'ubuntu')share_link="https://paste.ubuntu.com"$( curl -v --data-urlencode "content@$log_up" -d "poster=superbench.sh" -d "syntax=text" "https://paste.ubuntu.com" 2>&1 | \grep "Location" | awk '{print $3}' );;'haste' )share_link=$( curl -X POST -s -d "$(cat $log)" https://hastebin.com/documents | awk -F '"' '{print "https://hastebin.com/"$4}' );;'clbin' )share_link=$( curl -sF 'clbin=<-' https://clbin.com < $log );;'ptpb' )share_link=$( curl -sF c=@- https://ptpb.pw/?u=1 < $log );;esacecho " · $share_link" | tee -a $lognextecho ""rm -f $log_up}log_preupload() {log_up="$HOME/superbench_upload.log"true > $log_up$(cat superbench.log 2>&1 | sed -r "s/\x1B\[([0-9]{1,2}(;[0-9]{1,2})?)?[m|K]//g" > $log_up)
}cleanup() {rm -f test_file_*rm -rf speedtest*rm -f fast_com*rm -f tools.pyrm -f ip_json.json
}bench_all(){mode_name="Standard"about;benchinit;clearnext;print_intro;next;get_system_info;print_system_info;ip_info4;next;print_io;next;print_speedtest;next;print_end_time;next;cleanup;sharetest ubuntu;
}fast_bench(){mode_name="Fast"about;benchinit;clearnext;print_intro;next;get_system_info;print_system_info;ip_info4;next;print_io fast;next;print_speedtest_fast;next;print_end_time;next;cleanup;
}log="./superbench.log"
true > $log
speedLog="./speedtest.log"
true > $speedLogcase $1 in'info'|'-i'|'--i'|'-info'|'--info' )about;sleep 3;next;get_system_info;print_system_info;next;;'version'|'-v'|'--v'|'-version'|'--version')next;about;next;;'io'|'-io'|'--io'|'-drivespeed'|'--drivespeed' )next;print_io;next;;'speed'|'-speed'|'--speed'|'-speedtest'|'--speedtest'|'-speedcheck'|'--speedcheck' )about;benchinit;next;print_speedtest;next;cleanup;;'ip'|'-ip'|'--ip'|'geoip'|'-geoip'|'--geoip' )about;benchinit;next;ip_info4;next;cleanup;;'bench'|'-a'|'--a'|'-all'|'--all'|'-bench'|'--bench' )bench_all;;'about'|'-about'|'--about' )about;;'fast'|'-f'|'--f'|'-fast'|'--fast' )fast_bench;;'share'|'-s'|'--s'|'-share'|'--share' )bench_all;is_share="share"if [[ $2 == "" ]]; thensharetest ubuntu;elsesharetest $2;fi;;'debug'|'-d'|'--d'|'-debug'|'--debug' )get_ip_whois_org_name;;
*)bench_all;;
esacif [[  ! $is_share == "share" ]]; thencase $2 in'share'|'-s'|'--s'|'-share'|'--share' )if [[ $3 == '' ]]; thensharetest ubuntu;elsesharetest $3;fi;;esac
fi

脚本执行结果:

相关文章:

自动化运维-检测Linux服务器CPU、内存、负载、IO读写、机房带宽和服务器类型等信息脚本

前言&#xff1a;以上脚本为今年8月1号发布的&#xff0c;当时是没有任何问题&#xff0c;但现在脚本里网络速度测试py文件获取不了了&#xff0c;测速这块功能目前无法实现&#xff0c;后面我会抽时间来研究&#xff0c;大家如果有建议也可以分享下。 脚本内容&#xff1a; #…...

ubuntu24.04设置开机自启动Eureka

ubuntu24.04设置开机自启动Eureka 之前我们是在/root/.bashrc的文件中增加了一条命令 nohup java -jar /usr/software/eurekaServer-auth-prd-03.jar > /usr/software/log.log 2>&1 &但上面这条命令只有在登录root的用户时&#xff0c;才会执行&#xff0c;如果…...

从视频帧生成点云数据、使用PointNet++模型提取特征,并将特征保存下来的完整实现。

文件地址 https://github.com/yanx27/Pointnet_Pointnet2_pytorch?spm5176.28103460.0.0.21a95d27ollfze Pointnet_Pointnet2_pytorch\log\classification\pointnet2_ssg_wo_normals文件夹改名为Pointnet_Pointnet2_pytorch\log\classification\pointnet2_cls_ssg "E:…...

工化企业内部能源能耗过大 落实能源管理

一、精准监测与数据分析 实时准确的数据采集 企业能耗管理系统能够对企业内各种能源&#xff08;如电、水、气、热等&#xff09;的使用情况进行实时监测。通过安装在能源供应线路和设备上的智能传感器&#xff0c;可以精确地采集能源消耗的各项数据&#xff0c;包括瞬时流量、…...

LSTM 和 LSTMCell

1. LSTM 和 LSTMCell 的简介 LSTM (Long Short-Term Memory): 一种特殊的 RNN&#xff08;循环神经网络&#xff09;&#xff0c;用于解决普通 RNN 中 梯度消失 或 梯度爆炸 的问题。能够捕获 长期依赖关系&#xff0c;适合处理序列数据&#xff08;如自然语言、时间序列等&…...

python成长技能之正则表达式

文章目录 一、认识正则表达式二、使用正则表达式匹配单一字符三、正则表达式之重复出现数量匹配四、使用正则表达式匹配字符集五、正则表达式之边界匹配六、正则表达式之组七、正则表达式之贪婪与非贪婪 一、认识正则表达式 什么是正则表达式 正则表达式&#xff08;英语&…...

解决docker报Error response from daemon Get httpsregistry-1.docker.iov2错误

解决docker报Error response from daemon: Get "https://registry-1.docker.io/v2/"错误 报错详情 首先先看一下问题报错效果,我想要拉去nacos-serve&#xff1a;1.1.4的镜像&#xff0c;报如下错误&#xff0c;从报错信息可以看到&#xff0c;用于网络的愿意&…...

【论文分享】利用多源大数据衡量街道步行环境的老年友好性:以中国上海为例

本次给大家带来一篇SCI论文的全文翻译&#xff01;该论文考虑了绿化程度、可步行性、安全性、形象性、封闭性和复杂性这六个指标&#xff0c;提出了一种基于多源地理空间大数据的新型定量评价模型&#xff0c;用于从老年人和专家的角度评估街道步行环境的老年友好程度&#xff…...

说说软件工程中的“协程”

在软件工程中&#xff0c;协程&#xff08;coroutine&#xff09;是一种程序运行的方式&#xff0c;可以理解成“协作的线程”或“协作的函数”。以下是对协程的详细解释&#xff1a; 一、协程的基本概念 定义&#xff1a;协程是一组序列化的子过程&#xff0c;用户能像指挥家…...

使用IDE实现java端远程调试功能

使用IDE实现java端远程调试功能 1. 整体描述2. 前期准备3. 具体操作3.1 修改启动命令3.2 IDE配置3.3 打断点3.4 运行Debug 4. 总结 1. 整体描述 在做项目时&#xff0c;有些时候&#xff0c;需要和第三方进行调式&#xff0c;但是第三方不在一起&#xff0c;需要进行远程调试&…...

javaScript交互案例2

1、京东侧边导航条 需求&#xff1a; 原先侧边栏是绝对定位当页面滚动到一定位置&#xff0c;侧边栏改为固定定位页面继续滚动&#xff0c;会让返回顶部显示出来 思路&#xff1a; 需要用到页面滚动事件scroll&#xff0c;因为是页面滚动&#xff0c;所以事件源是document滚动…...

JavaScript 浏览器对象模型 BOM

浏览器对象模型&#xff08;Browser Object Model&#xff0c;BOM&#xff09;是指一组与浏览器进行交互的 JavaScript 对象。它允许 JavaScript 与浏览器的组件进行交互&#xff0c;比如窗口、文档、历史记录等。BOM 不同于 DOM&#xff08;文档对象模型&#xff09;&#xff…...

基于MATLAB的激光雷达与相机联合标定原理及实现方法——以标定板为例

1.为什么要进行激光雷达和相机的联合标定&#xff1f; 激光雷达和相机的联合标定是为了将两种传感器的数据统一到同一坐标系中&#xff0c;从而实现更准确的环境感知。激光雷达提供精准的三维距离信息&#xff0c;而相机捕捉丰富的纹理和颜色&#xff0c;通过联合标定可以结合两…...

React(一)

文章目录 项目地址一、创建第一个react项目二、JSX语法2.1 生成列表2.2 大括号识别JS的表达式2.3 列表循环array2.4 条件判断以及假值显示2.5 复杂条件渲染2.6 事件处理2.7 添加CSS样式2.8 添加图片2.9 使用Fregments返回多个根标签2.10多条件渲染2.11 导出子组件2.12 给子组件…...

Liunx-Ubuntu22.04.1系统下配置Anaconda+pycharm+pytorch-gpu环境配置

这里写自定义目录标题 Liunx-Ubuntu22.04.1系统下配置Anacondapycharmpytorch-gpu环境配置一、Anaconda3配置1.Anaconda安装2.Anaconda更新3.Anaconda删除 二、pycharm配置1.pycharm安装 三、pytorch配置 Liunx-Ubuntu22.04.1系统下配置Anacondapycharmpytorch-gpu环境配置 一…...

Postman之数据提取

Postman之数据提取 1. 提取请求头\request中的数据2. 提取响应消息\response中的数据3. 通过正在表达式提取4. 提取cookies数据 本文主要讲解利用pm对象对数据进行提取操作&#xff0c;虽然postman工具的页面上也提供了一部分的例子&#xff0c;但是实际使用时不是很全面&#…...

selenium元素定位校验以及遇到的元素操作问题记录

页面元素定位方法及校验 使用比较多的是通过id、class和xpath来对元素进行定位。在定位前可以现在浏览器验证是否可以找到指定的元素。这样就不用每添加一个元素定位都运行代码来检查定位方式表达式是否正确。 使用XPATH定位 在浏览器F12&#xff0c;找到元素&#xff0c;在元…...

在AndroidStudio中新建项目时遇到的Gradle下载慢问题,配置错的按我的来,镜像地址不知道哪个网页找的,最主要下载要快

android-studio-2024.2.1.11-windows Android 移动应用开发者工具 – Android 开发者 | Android Developers https://r4---sn-j5o76n7z.gvt1-cn.com/edgedl/android/studio/install/2024.2.1.11/android-studio-2024.2.1.11-windows.exe?cms_redirectyes&met1731775…...

用mv命令替换rm命令

# 用mv命令替换rm命令 主要内容来源自以上博文 rm命令穷凶极恶&#xff0c;以下为替换命令的方式&#xff0c;必做 步骤 修改vim ~/.bashrc加入以下代码 mkdir -p ~/.trash #在家目录下创建一个.trash文件夹(隐藏文件&#xff0c;ls -a 查看) alias rmdel #使用别名…...

电解车间铜业机器人剥片技术是现代铜冶炼过程中自动化和智能化的重要体现

电解车间铜业机器人剥片技术是现代铜冶炼过程中自动化和智能化的重要体现 电解车间铜业机器人剥片技术是现代铜冶炼过程中自动化和智能化的重要体现&#xff0c;它主要应用于铜电解精炼的最后阶段&#xff0c;即从阴极板上剥离出纯铜的过程。以下是该技术的几个关键点&#xff…...

【qt】控件2

1.frameGeometry和Geometry区别 frameGeometry是开始从红圈开始算&#xff0c;Geometry从黑圈算 程序证明&#xff1a;使用一个按键&#xff0c;当按键按下,qdebug打印各自左上角的坐标&#xff08;相当于屏幕左上角&#xff09;&#xff0c;以及窗口大小 Widget::Widget(QWid…...

Frida反调试对抗系列(四)百度加固

本文只是交流技术&#xff0c;如有侵权请联系我删除。 知识星球&#xff1a;https://t.zsxq.com/kNlj4 前言&#xff1a; 上一篇文章我们提到 我们使用github开源魔改好的frida server 但是仍然有一些厂商的server不能通过&#xff0c;那么这篇文章针对百度加固 进行快速通…...

Redis 安全

Redis 安全 Redis是一个开源的&#xff0c;高性能的键值存储系统&#xff0c;它通常被用作数据库&#xff0c;缓存和消息代理。由于其高性能和简单的API&#xff0c;Redis在全球范围内被广泛使用。然而&#xff0c;与其他数据库系统一样&#xff0c;Redis的安全性也是至关重要…...

上交大与上海人工智能研究所联合推出医学多语言模型,模型数据代码开源

今天为大家介绍的是来自上海交通大学的王延峰与谢伟迪团队的一篇论文。开源的多语言医学语言模型的发展可以惠及来自不同地区、语言多样化的广泛受众。 来源丨 DrugAI、 机器人的脑电波 论文&#xff1a;https://www.nature.com/articles/s41467-024-52417-z MMedC&#xff1…...

网络安全:我们的安全防线

在数字化时代&#xff0c;网络安全已成为国家安全、经济发展和社会稳定的重要组成部分。网络安全不仅仅是技术问题&#xff0c;更是一个涉及政治、经济、文化、社会等多个层面的综合性问题。从宏观到微观&#xff0c;网络安全的重要性不言而喻。 宏观层面&#xff1a;国家安全与…...

理解 Python 中的 __getitem__ 方法:在自定义类中启用索引和切片操作

理解 Python 中的 __getitem__ 方法&#xff1a;在自定义类中启用索引和切片操作 在Python中&#xff0c;__getitem__是一个特殊方法&#xff0c;属于数据模型方法之一&#xff0c;它使得Python对象能够支持下标访问和切片操作。这个方法提供了一种机制&#xff0c;允许类的实…...

【数据结构】【线性表】【练习】反转链表

申明 该题源自力扣题库19&#xff0c;文章内容&#xff08;代码&#xff0c;图表等&#xff09;均原创&#xff0c;侵删&#xff01; 题目 给你单链表的头指针head以及两个整数left和right&#xff0c;其中left<right&#xff0c;请你反转从位置left到right的链表节点&…...

vue2+3 —— Day5/6

自定义指令 自定义指令 需求&#xff1a;当页面加载时&#xff0c;让元素获取焦点&#xff08;一进页面&#xff0c;输入框就获取焦点&#xff09; 常规操作&#xff1a;操作dom “dom元素.focus()” 获取dom元素还要用ref 和 $refs <input ref"inp" type&quo…...

汽车资讯新视角:Spring Boot技术革新

2相关技术 2.1 MYSQL数据库 MySQL是一个真正的多用户、多线程SQL数据库服务器。 是基于SQL的客户/服务器模式的关系数据库管理系统&#xff0c;它的有点有有功能强大、使用简单、管理方便、安全可靠性高、运行速度快、多线程、跨平台性、完全网络化、稳定性等&#xff0c;非常…...

关于win11电脑连接wifi的同时,开启热点供其它设备连接

背景&#xff1a; 我想要捕获手机流量&#xff0c;需要让手机连接上电脑的热点。那么问题来了&#xff0c;我是笔记本电脑&#xff0c;只能连接wifi上网&#xff0c;此时我的笔记本电脑还能开启热点供手机连接吗&#xff1f;可以。 上述内容&#xff0c;涉及到3台设备&#x…...