SAMBA PDC
smb.conf
[global] encrypt passwords = yes passdb backend = smbpasswd:/var/lib/samba/private/smbpasswd os level = 65 #lo net 指令才能連上 [netlogon] |
chk_profiles.sh
#!/bin/bash
|
windows 7
必須更改reg及下載一官方提供的hotfix
反正就是一整個好玩!!!(  ̄ c ̄)y▂ξ
SAMBA PDC
smb.conf
[global] encrypt passwords = yes passdb backend = smbpasswd:/var/lib/samba/private/smbpasswd os level = 65 #lo net 指令才能連上 [netlogon] |
chk_profiles.sh
#!/bin/bash
|
windows 7
必須更改reg及下載一官方提供的hotfix
利用兩張網卡讓ubuntu做簡易router
知道A,B,D點
A:10.200.14.94 (學校WAN IP)
D:10.200.14.89
B:163.17.210.254
1.開啟ip forwarding的功能
更改 /etc/sysctl.conf
net.ipv4.ip_forward=1 |
編好後,下
sysctl -p |
檢查以下值
cat /proc/sys/net/ipv4/ip_forward
2.編輯 /etc/network/interfaces
|
重新啟動網卡設定
/etc/init.d/networking restart
backup config files by tftp
#!/usr/bin/expect -f set timeout 60 spawn ssh admin@fgt-ipaddress expect “password: $” set send_slow {1 0.05} send -s “password\r” send_user “password\r” send -s ” config global\n” send -s “execute backup full-config tftp filename.txt tftp-ipaddress\n” send -s “exit\n” interact |
http://www.firewall1.nu/?p=28
http://phpsrv.nutn.edu.tw/~silent/archives/113
http://plog.tcc.edu.tw/post/128/2034
※ 檔案上傳至linux tftp時,目錄必須有此檔名存在,並且可寫入。
cron stops in the middle of the script
http://www.linuxquestions.org/questions/linux-newbie-8/cron-stops-in-the-middle-of-the-script-325487/
put... >> /dev/null 2>&1 ...at the end of each crontab listing. |
以輸入參數的方式帶入 Set args = WScript.Arguments 檢查是否有輸入參數
|
http://technet.microsoft.com/en-us/library/ee156604.aspx
這個問題實在很有趣,以前很少把自己的硬盤塞到滿過
想不到現在為了我的數據,竟然可以塞到20G,只好向另一顆500G求救 Orz
原來ftpd在使用chroot後,就不允許symbolic links
詳解
http://pureftpd.sourceforge.net/FAQ
Making a symbolic link won't work, because when you are chrooted, it means
that everything outside a base directory (your user's home directory) won't
be reachable, even though a symbolic link.
But all modern operating systems can mount local directories to several
locations. To have an exact duplicate of your /var/incoming directory
available in /home/john/incoming and /home/joe/incoming, use one of these
commands:
* Linux : mount --bind /var/incoming /home/john/incoming
mount --bind /var/incoming /home/joe/incoming
* BSD : mount_null /var/incoming /home/john/incoming
mount_null /var/incoming /home/joe/incoming
Unzipping
to uncompress the file foo.tar.gz you could use one of the following commands:
gunzip -c foo.tar.gz | tar xvf -
or alternatively:
gunzip < foo.tar.gz | tar xvf -
tar cvf - foodir | gzip > foo.tar.gz
out of memory ?
Linux
找到 weka.jar後,指令如下
java -Xmx512m -classpath /some/where/weka.jar weka.gui.explorer.Explorer
加入新的模組
例如加入libsvm.jar
java -Xmx512m -classpath /some/where/weka.jar:/path/libsvm.jar weka.gui.explorer.Explorer
Windows
在Runweka.ini底下改
maxheap 即可
apache2+php5
sudo apt-get install apache2 php5 libapache2-mod-php5 |
sudo /etc/init.d/apache2 restart cd /var/www sudo touch index.php |
把index.html刪除
index.php的內容如下
<?php |
連線測試吧!
切割成多個視窗
你裝了google toolbar 了嗎? 其中的PageRank可以隨時透露你正在瀏灠網頁的PR值喔!
利用網路磁碟机做到作業繳交系統
條件一、使用者各自有自己私有的家目錄,這部份利用home directory就能達到
條件二、在公開的使用目錄下,能看到其它人的,但無修改或刪除他人的文件夾的權限
條件三、admin可以任意觀看users上傳的作業,不管是私有的或是公開的
一整個月的wma檔,怎麼轉成mp3檔呢? 在Linux上/FreeBSD上,就是這麼方便,軟体免費,方法免費。真是太幸福了~
samba底下,大家擁資料夾自重,反而檔案不能直接交付對方,只能被動等人來拿,又太沒效率了,改成大家都有一個像temp的暫存區,可以暫時讓其它人放置文件
用途:校園自動定時廣播,打掃時間、放學時間、午餐刷牙...等。
ptt網友的問題, 多年前好像也曾遇過 :p
find . -name *.txt | xargs -i cp {} /tmp/{}.`date +%Y-%m-%d`
man find
man xargs
manual的範例
find /tmp -name core -type f -print | xargs /bin/rm -f
找到/tmp下,檔案名稱為core, 並刪除掉
find . -type f -exec file '{}' \;
在目前所在的目錄,對每個檔案,執行file 指令
注意,這裡的雙大括號是以單引號包起來
find . -perm 權限相關...
有更多的問題!
google it!
列出某個檔中有想找的關鍵字
grep -il "關鍵字" *.txt
子目錄一起搜尋 find . -type f -name \*.txt -exec grep -il "國民電腦" {} \; |
嫌你的提示符號太冗長了嗎?
喜歡DIY、一切從無到有嗎? ubuntu也能從最小安裝起,喜歡什麼就自己加什麼喔!