Total739275 Week266 Yesterday161 Today105 1count/day on each IP Since 2006-06-06
«Prev || 1 | 2 | 3 | 4 |...| 10 | 11 | 12 || Next»

13 August 2010

DHCPにてアドレスを再取得する方法

FreeBSDにてコマンドラインからアドレスの再取得はdhclientにてできることがわかった
#dhclient em0
日本語マニュアル

08/13/10 20:02:38 - noboru - No comments FreeBSD , Network

25 July 2010

FreeBSD 7.2-RELEASE -> 7.3-RELEASE upgrade

サポート期限がきれていた
7.2RELEASE のシステムを7.3RELEASEにfreebsd-updateを使用して更新した
アップグレード開始
#freebsd-update -r 7.3-RELEASE upgrade
/etc/mail/mailer.confがコンフリクトしているとのことで修正した
あといくつか更新の確認があった
カーネルの更新
#freebsd-update -r 7.3-RELEASE install
リブートしてユーザーランの更新
#freebsd-update install
終了後リブートして完了した

参考
FreeBSD 7.2-RELEASEのサポート期限到来

07/25/10 10:51:44 - noboru - No comments FreeBSD

24 July 2010

FreeBSD 8.1-RELEASE が出ました

FreeBSD 8.1-RELEASE Announcement
FreeBSD 8.1-RELEASE Release Notes
いくつかの新しくなった点
 *zfsloader added
 *zpool version of ZFS subsystem updated to version 14
 *NFSv4 ACL support in UFS and ZFS; support added to cp(1), find(1), getfacl(1), mv(1), and setfacl(1) utilities
 *UltraSPARC IV/IV+, SPARC64 V support
 *SMP support in PowerPC G5
 *BIND 9.6.2-P2
 *sendmail updated to 8.14.4
 *OpenSSH updated to 5.4p1
 *GNOME 2.30.1, KDE 4.4.5

07/24/10 11:20:38 - noboru - No comments FreeBSD

13 July 2010

FreeBSD Security Advisory

SAが出ていました
http://security.freebsd.org/advisories/FreeBSD-SA-10:07.mbuf.asc
FreeBSD 7.2-RELEASEのパッチはなし

07/13/10 22:14:55 - noboru - No comments FreeBSD

03 July 2010

FreeBSD 7.2-RELEASEのサポート期限到来

FreeBSD Security Information
FreeBSD 7.2-RELEASEのサポート期限になったそうです
+--------------------------------------------------------------------+
| Branch | Release | Type | Release date | Estimated EoL |
|-----------+-----------+--------+-----------------+-----------------|
|RELENG_6 |n/a |n/a |n/a |November 30, 2010|
|-----------+-----------+--------+-----------------+-----------------|
|RELENG_6_4 |6.4-RELEASE|Extended|November 28, 2008|November 30, 2010|
|-----------+-----------+--------+-----------------+-----------------|
|RELENG_7 |n/a |n/a |n/a |last release + 2y|
|-----------+-----------+--------+-----------------+-----------------|
|RELENG_7_1 |7.1-RELEASE|Extended|January 4, 2009 |January 31, 2011 |
+-----------+-----------+--------+-----------------+-----------------|
|RELENG_7_3 |7.3-RELEASE|Extended|March 23, 2010 |March 31, 2012 |
|-----------+-----------+--------+-----------------+-----------------|
|RELENG_8 |n/a |n/a |n/a |last release + 2y|
|-----------+-----------+--------+-----------------+-----------------|
|RELENG_8_0 |8.0-RELEASE|Normal |November 25, 2009|November 30, 2010|
|-----------+-----------+--------+-----------------+-----------------|
|RELENG_8_1 |8.1-RELEASE|Extended|not yet |release + 2 years|
+--------------------------------------------------------------------+


07/03/10 18:00:00 - noboru - No comments FreeBSD

27 May 2010

FreeBSD Security Advisory

05/27/10 13:32:53 - noboru - No comments FreeBSD

24 March 2010

FreeBSD 7.3-Rが出ました

FreeBSD 7.3-RELEASE Announcement
FreeBSD 7.3-RELEASE Release Notes
いくつかの新しくなった点
*ZFS updated to version 13
*new boot loader gptzfsboot supports GPT and ZFS
*hwpmc(4) enhancements including support for Core2/i7 processor and pmcannotate(8)
*new mfiutil and mptutil tools for widely used RAID controllers
*NULL pointer vulnerability mitigation
*bind updated to 9.4-ESV
*Gnome updated to 2.28.2
*KDE updated to 4.3.5
*Perl updated to 5.10

03/24/10 09:50:39 - noboru - No comments FreeBSD

17 February 2010

Software design総集編(2000?2009)


10年分の記事がDVDで読めるとのこと,啓文堂で購入した
買ったのもあるが,ないのが多いので見たら買っていた
驚きの値段だった

02/17/10 21:45:14 - noboru - No comments 雑誌 , FreeBSD , Linux , Network

21 January 2010

Qpopper で APOP を利用する方法 - FreeBSD

portsからqpopperを導入する

初期設定
# /usr/local/bin/qpopauth -init
APOPパスワード設定
# /usr/local/bin/qpopauth -user username
通常POPへ戻すコマンド
# /usr/local/bin/qpopauth -delete username

参考ページ
Mail Serverの導入

01/21/10 13:46:27 - noboru - No comments Mail , FreeBSD

FreeBSD メール環境構築

portsからpostfix を入れてみた

#cd /usr/ports/mail/postfix
#make install
途中で聞かれた質問
You need user "postfix" added to group "mail".
Would you like me to add it [y]? y
Would you like to activate Postfix in /etc/mail/mailer.conf [n]? y

/etc/rc.confに以下を追加
sendmail_enabled="NONE"
postfix_enabled="YES"

main.cfを編集
myhostname = 自分のホスト名を設定
mydomain = 自分のドメイン名を設定
myorigin = $mydomain
mydestination = $myhostname, localhost.$mydomain, localhost, $mydomain 必要な設定を追加
mynetworks_style = host
alias_maps = hash:/etc/aliases
alias_database = hash:/etc/aliases
home_mailbox = Maildir/

以下のコマンドを実行(実行しないとエラーになったfatal: open database /etc/aliases.db: No such file or directory)
#newaliases

01/21/10 13:18:51 - noboru - No comments Mail , FreeBSD
«Prev || 1 | 2 | 3 | 4 |...| 10 | 11 | 12 || Next»

< 2024-05 >
SunMonTueWedThuFriSat
   1234
567891011
12131415161718
19202122232425
262728293031 




 Use OpenOffice.org
VALUE-DOMAIN.COM

最近のコメント