Blogging All About BSDs
  • About
  • Blog Submission
  • Contact

Nominations for Google-O’Reilly...

Apr 22, 2009 ~ Written by Murray Stokely
Nominations for Google-O’Reilly Open Source Awards Nominations for the 5th Annual Google-O\'Reilly Open Source Awards are now being accepted. As in previous years the awards are open ended so nominations should also include the name of the award / achievement in addition to a nominated recipient (e.g. Best Lifetime Contributor, Community Builder, Tool Builder, Overall Hacker, etc..). Nomina [...]
~ read more ~

Nominations for Google-O’Reilly...

Apr 22, 2009 ~ Written by Murray Stokely
Nominations for Google-O’Reilly Open Source Awards Nominations for the 5th Annual Google-O\'Reilly Open Source Awards are now being accepted. As in previous years the awards are open ended so nominations should also include the name of the award / achievement in addition to a nominated recipient (e.g. Best Lifetime Contributor, Community Builder, Tool Builder, Overall Hacker, etc..). Nomina [...]
~ read more ~

GNU find – execute command afte...

Apr 22, 2009 ~ Written by PsyberMonkey
GNU find – execute command after find results Normally we use the "find" command to search for some files and post process it using the pipe ("|"). But do you know find can process the results without using pipe? Here it is :Read more »
~ read more ~

FreeBSD : web cluster – Frontend ngin...

Apr 22, 2009 ~ Written by kevin foo (chfl4gs_)
FreeBSD : web cluster – Frontend nginx, backend apache with SSL Previously, I posted write-up on glusterfs on FreeBSD clusters. Here the installment on round-robin web proxy part. In my configuration, nginx is running as front-end and apache is the back-end. Both boxes have same configuration on nginx and apache. Nginx SSL cert and key should be the same as well (with same common name i.e. www.yourdomain [...]
~ read more ~

Update my old CardStatus page…

Apr 21, 2009 ~ Written by warner losh
Update my old CardStatus page… If anybody still cares about 16-bit PC Cards and 32-bit CardBus cards still, I\'ve updated the latest testing I\'ve done.You can find it here. I think it does more to show what a big pack-rat I am, but maybe someone will find it useful. It shows I\'m down to one or two ed cards that aren\'t working for (Read more...)
~ read more ~

how to check disk space utilization

Apr 21, 2009 ~ Written by PsyberMonkey
how to check disk space utilization Command : dfCommon parameters :-h = display sizes in human readable format, kb, mb & gb-i = display inode usage rather then disk usagee.g.df -hdf -hiSee Ya !!!
~ read more ~

mysql server – how to reduce di...

Apr 21, 2009 ~ Written by PsyberMonkey
mysql server – how to reduce disk space by moving mysql-bin.00000 One fine day, the server disk usage report that, the one of the partitions is almost full. After some searching, the database directory at /var/db/mysql/ (FreeBSD) or /var/lib/mysql/ (Linux) is occupying most disk space. Listing the directory only to found out that mysql-bin.0000* are the ones that is occupying the disk space. What are these [...]
~ read more ~

50th BSD Video Posted: All DCBSDCon &...

Apr 21, 2009 ~ Written by Murray Stokely
50th BSD Video Posted: All DCBSDCon ’09 Videos Live Jason Dixon has made available the last 4 videos from DCBSDCon 2009. The last video marks the 50th video uploaded to the BSDConferences YouTube channel. This channel was created less than 5 months ago and now has 924 subscribers from authenticated YouTube users, and the videos have been viewed over 76,000 times by users from around the worl [...]
~ read more ~

50th BSD Video Posted: All DCBSDCon &...

Apr 21, 2009 ~ Written by Murray Stokely
50th BSD Video Posted: All DCBSDCon ’09 Videos Live Jason Dixon has made available the last 4 videos from DCBSDCon 2009. The last video marks the 50th video uploaded to the BSDConferences YouTube channel. This channel was created less than 5 months ago and now has 924 subscribers from authenticated YouTube users, and the videos have been viewed over 76,000 times by users from around the worl [...]
~ read more ~

20 FreeBSD Summer of Code Students An...

Apr 21, 2009 ~ Written by Murray Stokely
20 FreeBSD Summer of Code Students Announced Leslie Hawthorne from Google today announced the students selected to participate in this year\'s Google Summer of Code. Among the 1,000 students from 70 countries participating in this program, 20 will be working on FreeBSD projects, 11 on NetBSD projects, and 5 on DragonFly BSD projects.Keep an eye on the FreeBSD wiki and mailing lists for [...]
~ read more ~

20 FreeBSD Summer of Code Students An...

Apr 21, 2009 ~ Written by Murray Stokely
20 FreeBSD Summer of Code Students Announced Leslie Hawthorne from Google today announced the students selected to participate in this year\'s Google Summer of Code. Among the 1,000 students from 70 countries participating in this program, 20 will be working on FreeBSD projects, 11 on NetBSD projects, and 5 on DragonFly BSD projects.Keep an eye on the FreeBSD wiki and mailing lists for [...]
~ read more ~

Videos from DCBSDCon Posted

Apr 19, 2009 ~ Written by Murray Stokely
Videos from DCBSDCon Posted Thanks to Jason Dixon and Will Backman, the first 8 videos from the first DCBSDCon are now available in the BSDConferences YouTube channel. The audio quality for these is better than many of the previous conference videos because Jason was able to sync the audio with a direct recording from the podium taken by Will. These videos were also [...]
~ read more ~

Videos from DCBSDCon Posted

Apr 19, 2009 ~ Written by Murray Stokely
Videos from DCBSDCon Posted Thanks to Jason Dixon and Will Backman, the first 8 videos from the first DCBSDCon are now available in the BSDConferences YouTube channel. The audio quality for these is better than many of the previous conference videos because Jason was able to sync the audio with a direct recording from the podium taken by Will. These videos were also [...]
~ read more ~

vim – case insensitive search a...

Apr 19, 2009 ~ Written by PsyberMonkey
vim – case insensitive search and occurrence or match operations A short tip. For searching in vim, enter the \"Command-line\" mode by type a colon (\":\") in \"Normal\" mode (Esc twice at any time) and type \"set ignorecase\" for case-insensitive search.e.g.:set ignorecaseAdditionally, for \"next\" occurrence or match, type \"n\" or \"N\" for \"previous\" occurred match.Ciao !!!
~ read more ~

FreeBSD networking – IP address...

Apr 18, 2009 ~ Written by PsyberMonkey
FreeBSD networking – IP address automatically assign aka DHCP This is another follow up post on DHCP aka Dynamic Host Configuration Protocol, which posted first in here and then here. FreeBSD are commonly used as a server. One might ask why does it needs to auto assign IP using DHCP ? Should not it running static IP so that the server are contacted by the host always (Read more...)
~ read more ~

vim – basics of search and repl...

Apr 17, 2009 ~ Written by PsyberMonkey
vim – basics of search and replace in substitute command mode When cleaning up some config file with hundreds of lines, browsing up and down just to find the key word can be eye dazzling, in the pungent way. :)The good thing about vim is, it is able to find any text you want using the "Search" command (/) in the "Normal" mode ( (Read more...)
~ read more ~

FreeBSD : nginx with php-cgi on unix ...

Apr 17, 2009 ~ Written by kevin foo (chfl4gs_)
UPDATE : Check out recent committed /usr/ports/www/spawn-fcgi/, it comes with a better spawn-fcgi rc.d script. Please use the script from the post. However, the spawn-fcgi.sh provided does not have option to run via unix socket. I have submitted the patch. Few days ago, I posted a write-up, FreeBSD : php-cgi spawn-fcgi rc.d script for nginx, [...]
~ read more ~

FreeBSD : Glusterfs with SSL (via stu...

Apr 15, 2009 ~ Written by kevin foo (chfl4gs_)
FreeBSD : Glusterfs with SSL (via stunnel) I have been working on parallel round-robin web clusters (is this the right term?) using 2 x FreeBSD 7.1 AMD64 boxes, nginx (patched with fair upstream), apache + php (backend), glusterfs, tinydns (sitting on another box, a name server, for round robin A record) and mysql multi-master replication. The setup is mainly making use of round-robi [...]
~ read more ~

3Com 3C1 works

Apr 13, 2009 ~ Written by warner losh
3Com 3C1 works Years ago, I bought a 3Com 3C1 CF card. This card was an early attempt by 3Com to minimize the power usage of the traditional 3C589 line of cards. These cards were important for the early palm-sized PDAs that were on the market. Through a number of different connections, I was able to get documentation on the 3c1. At the (Read more...)
~ read more ~

bash – how to print or display ...

Apr 10, 2009 ~ Written by PsyberMonkey
bash – how to print or display a new line or tab other then using echo Printing variables or text within bash script is good for debugging. It can trace which line or variables is having problem. echo is the commonly is used for such debugging purpose. But some times we need it to print tabs, new line & other escape strings in a one liner bash. One way to do it is using printf : (Read more...)
~ read more ~
Page 162 of 179« First«...510152025...158159160161162163164165166...175...»Last »

Pages

  • About
  • Contact
  • Blog Submission
  • Book review – Absolute OpenBSD 2nd Edition
  • Book review – DNSSEC Mastery

 Subscribe in a reader

Categories

  • aboutBSD.net
  • alp's notes
  • blog.netbsd.org
  • blog.pcbsd.org
  • BSDTalk
  • chfl4gs
  • Dan Langille's Other Diary
  • dan.langille.org
  • DragonFlyBSD Digest
  • Dru Lavigne – A Year in the Life of a BSD Guru
  • FreeBSD
  • FreeBSD Foundation
  • freebsd.stokely.org
  • meetBSD: meet the BSD systems
  • Murray's FreeBSD Notes
  • NetBSD
  • NetBSD Blog
  • nixCraft : FreeBSD
  • Official PC-BSD Blog
  • OpenBSD
  • OpenBSD Journal
  • PC-BSD
  • PsyberMonkey
  • Takizo
  • The FreeBSD Diary
  • Uncategorized
  • Warner's Random Hacking Blog
  • www.alp-notes.blogspot.com
  • www.bsdimp.blogspot.com
  • www.bsdtalk.blogspot.com
  • www.cyberciti.biz
  • www.freebsd.org
  • www.freebsddiary.org
  • www.freebsdfoundation.org
  • www.meetbsd.org
  • www.netbsd.org
  • www.pcbsd.org
  • www.scratching.psybermonkey.net
  • www.shiningsilence.com/dbsdlog
  • www.systems.takizo.com
  • www.undeadly.org

Pure Line theme by Theme4Press  •  Powered by WordPress Blogging All About BSDs