반응형 공부113 [linux] NFS wrong fs type, bad option, bad superblock.... mount: wrong fs type, bad option, bad superblock on 192.168.52.79:/pds/, missing codepage or helper program, or other error (for several filesystems (e.g. nfs, cifs) you might need a /sbin/mount. helper program) In some cases useful info is found in syslog - try dmesg | tail or so. --> yum install nfs-utils 2022. 3. 10. [linux] 명령어 모음(작성중) find ./ -name '*.log' -mtime +2 -delete> 3일치 남겨 두고 삭제 한다. (0일,1일,2일) firewall-cmd --permanent --zone=public --remove-service=dhcpv6-clientfirewall-cmd --permanent --zone=public --remove-service=sshfirewall-cmd --reload> Centos7 설치 시 기본 설정되어있는 방화벽 정책 삭제. firewall-cmd --permanent --zone=public --add-port=8080/tcp> 포트만 추가 firewall-cmd --permanent --zone=public --add-rich-rule="rule family="ipv4" s.. 2022. 3. 3. [linux] 네트워크 설정 시 connect: 네트워크가 접근 불가능합니다? CentOS7을 default로 설치하고 간단하게 네트워크를 static 설정하며 고정 IP할당을 하였으나 ping 명령어시 connect: Network is unreachable 라는 오류가 나왔다. 당황 하지말고 ip route add default 해주면 해결. 2022. 2. 17. [linux] 특정 날짜 확인 후 삭제. 특정 날짜 목록 확인 : ll --time-style full-iso | awk '{print $6" "$9}' | grep 2020 삭제 : ll --time-style full-iso | awk '{print $6" "$9}' | grep 2020 | xargs rm -f 2022. 2. 7. 이전 1 ··· 8 9 10 11 12 13 14 ··· 29 다음 반응형