反正就是一整個好玩!!!(  ̄ c ̄)y▂ξ

目前分類:網管MISC (25)

瀏覽方式: 標題列表 簡短摘要

SAMBA PDC

smb.conf


[global]

  netbios name = smbserver
  workgroup = smb

  encrypt passwords = yes

  passdb backend = smbpasswd:/var/lib/samba/private/smbpasswd

  os level = 65
  wins support = yes
  preferred master = yes
  domain master = yes
  local master = yes
  security = user
  domain logons = yes
  logon path = \\%N\profiles\%U\%a
  logon drive = H:
  logon home = \\smb\%U\winprofile
  logon script = logon.vbs

 add machine script = /usr/sbin/useradd -c machines -d /var/lib/nobody -u 999 -g 1005 -s /bin/false %m$
  socket options = IPTOS_LOWDELAY TCP_NODELAY
  enable privileges = yes

#lo net 指令才能連上
  interfaces = lo eth0 192.168.1.130
  hosts allow = 192.168.1. 120.0.0.1
  bind interfaces only = Yes
  client ntlmv2 auth = yes
  lanman auth = yes
  ntlm auth = Yes
  name resolve order = bcast host lmhosts wins


[netlogon]
  path = /var/lib/samba/netlogon/
  guest ok = yes
  read only = yes

[profiles]
  path = /var/lib/samba/profiles
  read only = no
  create mask = 0600
  directory mask = 0700
  browseable = no
  inherit permissions = yes
  root preexec = /etc/samba/chk_profiles.sh %u %g

[homes]
  comment = Home directories
  browseable = no
  writable = yes
  valid users = %S
  create mode = 0664
  directory mode = 0775


#password backends

 

#add machine script

 

 

chk_profiles.sh

#!/bin/bash

usr=$1
grp=$2

PROFILE=/var/lib/samba/profiles/$usr;
if [ ! -e $PROFILE ]; then
 mkdir -pm700 $PROFILE; chown $usr:$grp $PROFILE;
fi


 

 

 

windows 7

必須更改reg及下載一官方提供的hotfix

http://wiki.samba.org/index.php/Windows7

igogo 發表在 痞客邦 留言(0) 人氣()

利用兩張網卡讓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


#d point
auto eth0
iface eth0 inet static
        address 10.200.14.94
        netmask 255.255.255.248
        gateway 10.200.14.89


#b point
auto eth1
iface eth1 inet static
        netmask 255.255.255.128
        network 163.17.210.129
        broadcast 163.17.210.255
        address 163.17.210.254




重新啟動網卡設定

/etc/init.d/networking restart

igogo 發表在 痞客邦 留言(0) 人氣()

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時,目錄必須有此檔名存在,並且可寫入。

igogo 發表在 痞客邦 留言(0) 人氣()

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.

igogo 發表在 痞客邦 留言(0) 人氣()

以輸入參數的方式帶入

Set args = WScript.Arguments
WScript.Echo (args.Item(0) & args.Item(1)) 

 檢查是否有輸入參數

if WScript.Arguments.Count = 0 then 
    WScript.Echo "Missing parameters" 
end if 

 

http://stackoverflow.com/questions/2806713/can-i-pass-an-argument-to-a-vbscript-vbs-file-launched-with-cscript

http://technet.microsoft.com/en-us/library/ee156604.aspx

igogo 發表在 痞客邦 留言(0) 人氣()

這個問題實在很有趣,以前很少把自己的硬盤塞到滿過

想不到現在為了我的數據,竟然可以塞到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


 

igogo 發表在 痞客邦 留言(0) 人氣()

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 -

 

Zipping

 

tar cvf - foodir | gzip > foo.tar.gz

 

igogo 發表在 痞客邦 留言(0) 人氣()

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 即可

igogo 發表在 痞客邦 留言(0) 人氣()

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
echo "hello";
?>

連線測試吧!

 

igogo 發表在 痞客邦 留言(0) 人氣()

切割成多個視窗

dvtm.jpg

igogo 發表在 痞客邦 留言(0) 人氣()

你裝了google toolbar 了嗎? 其中的PageRank可以隨時透露你正在瀏灠網頁的PR值喔!

igogo 發表在 痞客邦 留言(0) 人氣()

利用網路磁碟机做到作業繳交系統

條件一、使用者各自有自己私有的家目錄,這部份利用home  directory就能達到

條件二、在公開的使用目錄下,能看到其它人的,但無修改或刪除他人的文件夾的權限

條件三、admin可以任意觀看users上傳的作業,不管是私有的或是公開的

igogo 發表在 痞客邦 留言(0) 人氣()

一整個月的wma檔,怎麼轉成mp3檔呢? 在Linux上/FreeBSD上,就是這麼方便,軟体免費,方法免費。真是太幸福了~

igogo 發表在 痞客邦 留言(1) 人氣()

samba底下,大家擁資料夾自重,反而檔案不能直接交付對方,只能被動等人來拿,又太沒效率了,改成大家都有一個像temp的暫存區,可以暫時讓其它人放置文件

igogo 發表在 痞客邦 留言(0) 人氣()

用途:校園自動定時廣播,打掃時間、放學時間、午餐刷牙...等。

igogo 發表在 痞客邦 留言(0) 人氣()

 

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 "國民電腦" {} \;

igogo 發表在 痞客邦 留言(2) 人氣()

安裝好ubuntu後,就先來個簡單的ftpd 安裝吧 ^^

igogo 發表在 痞客邦 留言(0) 人氣()

 

MIS人員最關切的焦點之一,就是disk usage

igogo 發表在 痞客邦 留言(1) 人氣()

嫌你的提示符號太冗長了嗎?

igogo 發表在 痞客邦 留言(1) 人氣()

喜歡DIY、一切從無到有嗎? ubuntu也能從最小安裝起,喜歡什麼就自己加什麼喔!

igogo 發表在 痞客邦 留言(0) 人氣()

1 2