给自己看的linux 初级笔记

执行 ifconfig 没有显示 eth0 的信息
解决: ifup eth0
      如果出现 no configuration for eth0
      就执行 yast>network device >network setting  >edit修改网卡信息

如何挂载U盘内容:
mount -t vfat /dev/sdb1 /mnt/usb   (SCSI接口)

如何查看系统是多少位操作系统
getconf LONG_BIT

如何开启某个端口
iptables -I INPUT -p tcp  --dport 端口 -j ACCEPT

如何重新挂载动态函数库
ldconfig

如何查看某些软件需要什么依赖函数
ldd php
#####################iptables######################
拒绝所有,再开通某个ip.
iptables -A INPUT -i eth0 -j DROP
iptables -I INPUT -i eth0 -s 192.168.0.1 -j ACCEPT
设置只允许某个ip登录22端口
iptables -A INPUT -j DROP
iptables -I INPUT -p tcp --dport 22 -s 192.168.0.1 -j ACCEPT
修改iptable政策
iptables -P INPUT DROP
查看 linux的发行版 cat /etc/issue

你可能感兴趣的:(linux,职场,笔记,休闲)