加值服務
住戶搜尋
心情貼
直播
感興趣
手機交友
還沒登入愛情公寓嗎?
還沒加入愛情公寓嗎?
馬上進入公寓和
10,537,296
個住戶交朋友~
最新留言
想聊天
對我感興趣
互相感興趣
想約會
逗一下
日記留言
紅包抽抽樂!小資變土豪!
素人也能成為明日之星!
移除此區廣告請加入VIP
檔案狀態:
住戶編號:
640238
狼雨 D.Angel
的日記本
快速選單
到我的日記本
看他的最新日記
加入我的收藏
瀏覽我的收藏
筆記本 - 記錄用
《前一篇
回他的日記本
後一篇》
雄雌眼迷離
切換閱讀模式
回應
給他日記貼紙
給他愛的鼓勵
檢舉
檢舉原因
此為詐騙帳號
此為廣告帳號
此為援交帳號
他未滿18歲
此為不雅及騷擾留言帳號
其他
篇名:
筆記用~ " ~
作者:
狼雨 D.Angel
日期: 2010.10.13 天氣:
心情:
history 查詢
mkdir 新目錄:建立新目錄
rm 檔名:刪除一個檔名 -rf
pwd 列出目前所在的工作目錄
chown 帳號 檔案:修改使用者欄位
chgrp 群組 檔案:修改群組欄位
chmod 權限 檔案:修改權限欄位
mv 舊檔名 新檔名:修改檔名欄位
touch 檔名:修改時間欄位
-------------------------------------------
adduser US
passwd Pass
us 切換使用者
groupadd 建立群組
usermod -G 族群 使用者 (加入群組)
帳號
ID PASS
student 2205
dicuser1 dicuser1
dicuser2 dicuser2
群組
dicgroup
--------------------------------------------
cat 檔名:直接看檔案的內容 加上 -n 加上行號
|more 檔名:可以一頁一頁翻動
less 檔名:可進入 less 的軟體,可使用『 /關鍵字 』查詢,離開按下『q』
vim 檔名 檔案狀態
---------------------------------------------
lasspstee -p 查詢程序識數字
|less (沿用上方)會反白
kill -1 PID -1重新讀取|-9強制結束|-15正常結束
---------------------------------------------
ifconfig IP/
route -n 看0.0.0.0
ping ip 查速度
setup 修改
ip 172.20.0.37/16
metmask 255.255.0.0
/etc/init.d/network restart 重新啟動
vim /etc/resolv.conf
設定(DNS) nameserver 168.95.1.1
---------------------------------------------
class1 0~127.X.X.X/8 255.0.0.0
class2 128~191.X.X.X/16 255.255.0.0
class3 191~255.X.X.X/24 255.255.255.0
---------------------------------------------
hosts mane
reboot 重新開機
-----------------------------
----------------|防火牆|---
--------------------↓-------
----------------|服務程式|-
--------------------↓-------
|filer4w2x1|←|SELinux|--
-----------------------------
Linux更新
-------------------------
ftp://ftp.ksu.edu.tw/pub/CentOS/ Ksu更新網站
cd /etc/yum.repos.d 資料目錄
vum CentOS-Base.repo 執行CentOS修正
yum clean all 清除之前更新
yum update 執行
---------------------------------------------------------------------------
LANG=C yum grouplist
getenforce
setenforce
vim /etc/selinux/config 更改寬容
restart 啟動
netstat -tlunp 查詢防火牆以開戶口
-----------------------------------
chkconfig nfslock off ↓
chkconfig hplip off ↓
chkconfig portmap off ↓
chkconfig avahi-daemon off ↓
chkconfig hplip off ↓
chkconfig cups off ↓
/etc/init.d/NAME stop ← ← ← ←
-----------------------------------
iptables-save 查詢防火牆
vim firewall.sh
--清除所有規則
iptables -F
iptables -X
iptables -Z
--建立
iptables -P INPUT DROP
iptables -P OUTPUT ACCEPT
iptables -P FORWARD ACCEPT
設定規則 -i介面卡 -s來源ip -d目標ip -p封包 --dpout目標口 --sport來源口 動作
iptables -A INPUT lo ip ip tcp 80 22 ACCEPT
etho Network Network uop DROP
icmp REJECT
----------------------------------------------------------------------
#!/bin/bash
# 1. clean rule
iptables -F
iptables -X
iptables -Z
# 2. policy
iptables -P INPUT DROP
iptables -P OUTPUT ACCEPT
iptables -P FORWARD ACCEPT
# 3. rule
iptables -A INPUT -i lo -j ACCEPT
iptables -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
iptables -A INPUT -i eth0 -s 192.168.1.0/255.255.255.0 -j ACCEPT
iptables -A INPUT -i eth0 -p tcp --dport 22 -j ACCEPT
iptables -A INPUT -i eth0 -p tcp --dport 21 -j ACCEPT
iptables -A INPUT -i eth0 -p tcp --dport 5902 -j ACCEPT
# 4. save
/etc/init.d/iptables save
-----------------------------------ftp
vim /etc/vsftpd/vsftpd.conf 修改ftp時間
#2010/10/28 09/16
use_localtime=YES
banner_file=/etc/vsftpd/high.txt (副檔名)
/var/ftp/pub/ ftp目錄路徑
/etc/init.d/vsftp.conf restart 重新執行ftp
----------------------------------ssh
ssh station37@192.168.1.254
exit
---------------------------------vnc
vim /etc/gdm/custom.conf 修改
『
[security]
AllowRemoteRoot=yes
[xdmcp]
Enable=true
』
gdm-restart 重起使用者
vim /etc/sysconfig/vncservers 設定開機時自動開啟vnc
chkconfig vncservers on
vncserver -query localhost :2
vncviewer 192.168.1.38:2
vim /etc/samba/smb.conf
workgroup=dic
security=user (要帳密)
=share (不用帳密)
[homes] 每個帳號的家
comment = Home Directories
browseable = no
writable = yes
; valid users = %S
; valid users = MYDOMAIN\%S
smbpasswd
smbclient -L //IP -U 帳號
mount -t cifs //192.168.42.61/smbuser /mnt -o username=smbuser,password=123456
umount /mnt
vim /etc/samba/smb.conf
[kusoyo]
comment = Public Stuff ;說一
path = /srv/kuso
public = yes
browseable = yes
writable = yes
; printable = no
write list = @kuso
mount -t cifs //192.168.42.36/kusoyo /mnt -o username=kuso1,password=123456
##MYSQL
grant all privileges on dicdatabase.* To dicuser@localhost identified by 'dicpassword'
tar -zxvf phpbb-3.0.5.tar.gz -C /var/www/html/
history 查詢
mkdir 新目錄:建立新目錄
rm 檔名:刪除一個檔名 -rf
pwd 列出目前所在的工作目錄
chown 帳號 檔案:修改使用者欄位
chgrp 檔名 群組 檔案:修改群組欄位
chmod 2770 權限 檔案:修改權限欄位
mv 舊檔名 新檔名:修改檔名欄位
touch 檔名:修改時間欄位
-------------------------------------------
adduser US
passwd Pass
us
groupadd 建立群組
usermod -G 群組 使用者 加入族群
帳號
ID PASS
student 2205
dicuser1 dicuser1
dicuser2 dicuser2
群組
dicgroup
--------------------------------------------
cat 檔名:直接看檔案的內容 加上 -n 加上行號
|more 檔名:可以一頁一頁翻動
less 檔名:可進入 less 的軟體,可使用『 /關鍵字 』查詢,離開按下『q』
vim 檔名 檔案狀態
---------------------------------------------
lasspstee -p 查詢程序識數字
|less (沿用上方)會反白
kill -1 PID -1重新讀取|-9強制結束|-15正常結束
---------------------------------------------
ifconfig IP/
route -n 看0.0.0.0
ping ip 查速度
setup 修改
ip 172.20.0.37/16
metmask 255.255.0.0
/etc/init.d/network restart network啟動
vim /etc/hosts IP對應主機名稱
192.168.1.? station37.dic.ksu
vim /etc/resolv.conf
設定(DNS) nameserver 168.95.1.1
vim /etc/hosts 修改hosts mane
reboot 重新開機
---------------------------
|防火牆|
↓
|服務程式|
↓
|filer4w2x1|←|SELinux|
-------------------------
Linux更新
-------------------------
ftp://ftp.ksu.edu.tw/pub/CentOS/ Ksu更新網站
cd /etc/yum.repos.d 資料目錄
vim CentOS-Base.repo 執行CentOS修正
yum clean all 清除之前更新
yum update 執行
-----------------------------------
LANG=C yum grouplist
getenforce
setenforce
vim /etc/selinux/config 更改寬容
restart 啟動
-----------------------------------服務
netstat -tulnp 查詢已開哪些服務
cd /etc/init.d/
grep 'sshd' *
/etc/init.d/nfslock stop
/etc/init.d/hplip stop
/etc/init.d/portmap stop
/etc/init.d/avahi-daemon stop
/etc/init.d/cups stop
chkconfig nfslock off #↓
chkconfig hplip off #↓
chkconfig portmap off #↓
chkconfig avahi-daemon off #↓
chkconfig cups off #↓
/etc/init.d/NAME stop ← ← ← ←
-----------------------------------防火牆
iptables -save 查詢防火牆
--清除所有規則
iptables -F
iptables -X
iptables -Z
--建立
iptables -P INPUT DROP
iptables -P OUTPUT ACCEPT
iptables -P FORWARD ACCEPT
設定規則 -i介面卡 -s來源ip -d目標ip -p封包 --dpout目標口 --sport來源口 動作
iptables -A INPUT lo ip ip tcp 80 22 ACCEPT
etho Network Network uop DROP
icmp REJECT
----------------------------------- firewall.sh
#!/bin/bash
# 1. clean rule
iptables -F
iptables -X
iptables -Z
# 2. policy
iptables -P INPUT DROP
iptables -P OUTPUT ACCEPT
iptables -P FORWARD ACCEPT
# 3. rule
iptables -A INPUT -i lo -j ACCEPT
iptables -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
iptables -A INPUT -i eth0 -s 192.168.0.0/255.255.255.0 -j ACCEPT
iptables -A INPUT -i eth0 -p tcp --dport 22 -j ACCEPT
iptables -A INPUT -i eth0 -p tcp --dport 21 -j ACCEPT
iptables -A INPUT -i eth0 -p tcp --dport 5902 -j ACCEPT
# 4. save
/etc/init.d/iptables save
-----------------------------------ftp
vim /etc/vsftpd/vsftpd.conf 修改ftp時間
#2010/10/28 09/16
use_localtime=YES
banner_file=/etc/vsftpd/high.txt (副檔名)
/etc/init.d/vsftp.conf restart 重新執行ftp
----------------------------------ssh
ssh station37@192.168.1.254
exit
---------------------------------vnc
vim /etc/gdm/custom.conf 修改
『
[security]
AllowRemoteRoot=yes
[xdmcp]
Enable=true
』
gdm-restart 重起使用者
vim /etc/sysconfig/vncservers 設定開機時自動開啟vnc
vncserver -query localhost :2
vncviewer 192.168.1.38:2
--------------------------samba //smb
smbpasswd -a kuso1 建立新使用者密碼
smbclient -L //192.168.42.37 -U kuso1 登入kuso
--------------------------SQL
安裝
yum install hpptd php php-mysql mysql-server httpd-server
/etc/init.d/mysqld restart 啟動mysql
chkconfig mysqld on
vim /etc/httpd/conf/httpd.conf #747
mysql -u root
show databases; 查詢資料庫
grant all privileges on dicdatabase.* To dicuser@localhost identified by 'dicpassword';
create database dicdatabase;
scp root@http://192.168.0.254/:/root/php* ~
tar -zxvf phpbb-3.0.5.tar.gz -C /var/www/html/ 解壓縮到www/html
yum install php-gd
chmod 777 /var/www/html/phpBB3/
\rm /var/www/html/phpBB3/install/ -r
--------------------------DNS
hostname
vim /etc/sysconfig/network-scripts/ifcfg-eth0
PEERDNS=no
vim /etc/resolv.conf
nameserver 192.168.42.61
-------------------------postfix - mail
yum install postfix
yum remove sendmail
vim /etc/postfix/main.cf
->70 myhostname = ststion37.dic.ksu
->107 inet_interfaces = all
->258 mynetworks = 127.0.0.0/8, 192.168.42.0/24
/etc/init.d/postfix restart
chkconfig postfix on
netstat -ntulp | grep 25
yum install dovecot
vim /etc/dovecot.conf
->20 protocols = pop3
/etc/init.d/dovecot restart
chkconfig dovecot on
netstat -ntulp | grep 110
tail /var/log/maillog
-------------------------hpptd
vim /var/www/html/index.html
mkdir /home/mysmb1/www
chmod 755 /home/mysmb1
vim /etc/httpd/conf/httpd.conf
UserDir www P.355
/etc/init.d/httpd restart
標籤:
瀏覽次數:
66
人氣指數:
66
累積鼓勵:
0
切換閱讀模式
回應
給他日記貼紙
給他愛的鼓勵
檢舉
檢舉原因
此為詐騙帳號
此為廣告帳號
此為援交帳號
他未滿18歲
此為不雅及騷擾留言帳號
其他
給本文愛的鼓勵:
最新愛的鼓勵
給本文貼紙:
得到的貼紙
得到的貼紙:
給本文貼紙
本日記尚未得到貼紙
筆記本 - 記錄用
《前一篇
回他的日記本
後一篇》
雄雌眼迷離