- 2008 : 01 02 03 04 05 06 07 08 09 10 11 12
- 2007 : 01 02 03 04 05 06 07 08 09 10 11 12
- 2006 : 01 02 03 04 05 06 07 08 09 10 11 12
- 2005 : 01 02 03 04 05 06 07 08 09 10 11 12
- 2004 : 01 02 03 04 05 06 07 08 09 10 11 12
- 2003 : 01 02 03 04 05 06 07 08 09 10 11 12
- 2002 : 01 02 03 04 05 06 07 08 09 10 11 12
2005-06-28 Tue
Samba 3.0 で Acrive Directory
- Reference
@IT:Samba 3.0の全貌 改訂版[後編](1/3) - Active Directoryへの参加
http://www.atmarkit.co.jp/flinux/special/samba3b/samba04.html
wget で Proxyを利用する
- $HOME/.wgetrcに以下を記述
http_proxy = http://proxy.example.com:8080/
ftp_proxy = http://proxy.example.com:8080/
APTでProxy,Proxy認証を利用する
- /etc/apt/apt.conf.d/70debconf に追記
- Proxyを利用
Acquire::http::Proxy "http://proxy.example.com:8080/";
Acquire::ftp::Proxy "ftp://proxy.example.com:8080/";
又は
Acquire {
Retries "0";
http {
Proxy "http://proxy.example.com:8080/";
}
ftp {
Proxy "ftp://proxy.example.com:8080/";
}
// comment
}
- Proxy認証を利用
Acquire::http::Proxy "http://username:password@proxy.example.com:8080/";
Acquire::ftp::Proxy "ftp://username:password@proxy.example.com:8080/";
又は
Acquire {
Retries "0";
http {
Proxy "http://username:password@proxy.example.jp:8080/";
}
ftp {
Proxy "ftp://username:password@proxy.example.jp:8080/";
}
// comment
}
- Reference
Linux/apt.conf - discypus
http://discypus.jp/wiki/?Linux%2Fapt.conf
- 2008 : 01 02 03 04 05 06 07 08 09 10 11 12
- 2007 : 01 02 03 04 05 06 07 08 09 10 11 12
- 2006 : 01 02 03 04 05 06 07 08 09 10 11 12
- 2005 : 01 02 03 04 05 06 07 08 09 10 11 12
- 2004 : 01 02 03 04 05 06 07 08 09 10 11 12
- 2003 : 01 02 03 04 05 06 07 08 09 10 11 12
- 2002 : 01 02 03 04 05 06 07 08 09 10 11 12