Today's News

18th Mar 2007
17th Mar 2007
16th Mar 2007

Get Linux in South Africa Pretoria on DVD or CD, SUSE, OpenSuse, Fedora, Mandriva, Knoppix, Mandrake, Debian, DamnSmall, DSL, Gentoo, Slackware, SimplyMepis, Monoppix, FreeBSD, Trustix, Comodo, Smoothwall, Gibraltar, IPCop, OpenCD, Ubuntu, Kubuntu, Redhat, CentOS, Whitebox, PCLinuxOS, Xandros, Vector, Scientific, OpenOffice, Vector, Foresight, Asterisk
 
News Alert


Linux and Open Source News for 17th March 2007

FreeBSD Download

previous    Distro Watch    next


  popularitypopularitypopularitypopularitypopularitypopularitypopularitypopularitypopularity

Source: LinuxTracker.org

Category: SaxonOS Size: 533.94 MB Status: 12 seeders and 22 leechers Added: 2007-03-17 10:41:35


  popularity

Source: LinuxTracker.org

Category: Open Source Software Size: 10.26 MB Status: 1 seeders and 1 leechers Added: 2007-03-17 09:44:00


  popularitypopularitypopularitypopularitypopularity

Source: LinuxTracker.org

Category: Open Source Software Size: 11.67 MB Status: 3 seeders and no leecher Added: 2007-03-17 09:40:50


  popularitypopularitypopularitypopularitypopularitypopularity

Source: LinuxTracker.org

Category: PC-BSD Size: 719.27 MB Status: 1 seeders and 4 leechers Added: 2007-03-17 07:58:49


  popularitypopularitypopularitypopularitypopularitypopularity

Source: saxenos

Michael Stibane has announced the release of SaxenOS 2.0: "SaxenOS 2.0 is released. The SaxenOS 2 ISO image is now down to a 534 MB and needs about 1.7 GB space on the target partition plus the space for home directories and temporary and log files - so .



previous    Linux Today News Service    next


  popularity

Source: Linux Today

This announcement marks the official launch of the third web site being added to Libervis Network, MobiLiberty.com, a project of promoting Free Software and Free Standards in the world of mobile devices


Source: Linux Today

With and without this controversial, recently minted partner, Novell will issue announcements around SUSE Linux in areas that include products, training, and new customer wins, say company sources


  popularity

Source: Linux Today

Despite the relentless march of Linux, major vendors believe commercial Unix releases aren't ready for the scrapheap yet


  popularity

Source: Linux Today

With the arrival of the high priced Windows Vista Support Alert subscriber 'Briard' decides to put 12 Linux distros to the test


Source: Linux Today

A month ago, I started down a path that I hoped would lead me to a great prize: an explanation from the authors of how the General Public License Version 3.0 was shaping up


Source: Linux Today

In a way they already have done in a small way, they have given Novell approximately a quater's worth of net profit in return for what appears to be a cut of all Open Enterprise and SUSE Linux sales


  popularitypopularitypopularitypopularitypopularitypopularity

Source: Linux Today

Who's Public Enemy No. 2 in the Linux community? Who was it in 2005? It only takes a little to change the minds of the open source community.



previous    News for nerds, stuff that matters    next


  popularity

Source: Slashdot: Linux

Provataki writes "It seems that Linux on the desktop is getting there, with Ubuntu. Eugenia of OSNews fame wrote a glorifying preview about Ubuntu's next version, dubbed Feisty Fawn. The review talks up the new features, like the restricted drivers/codecs management, easier package management, and good laptop support. The review also lists some of the distro's flaws in the current beta. A good read for those who are curious about what's next for Linux on the desktop. The piece concludes: ' Ubuntu is a distro that obviously has paid attention to detail and has found a good middle ground between hard core Linux users and new users from the Windows/OSX land.'"



previous    The O'Reilly Network ONLamp Articles and Weblogs    next


  popularity

Source: ONLamp.com

Steve Loughran’s How to Own an OSS Project, part 1 and especially How to Own an OSS Project, part 2 bring up the always-relevant issues of security, transparency, and trust. In particular, the second entry asks a most insightful question: how can you trust the documentation?

It doesn’t help when the documentation suggests outdated practices which are, at best, dangerous and, at worst, completely wrong. (I’ve patched a few of these in Perl 5, myself.) Add to that active malice, such as a recent
dangerous answer to a novice question in comp.lang.lisp, or running obfuscated code outside of a locked-down sandbox, and it’s almost a wonder there aren’t more security problems related to source code posted on the Internet.


  popularity

Source: ONLamp.com

Thinking of trying the Drupal open source content management system? It’s a powerful platform, but the learning curve can be steep, even if you’re already comfortable with its underlying technologies: PHP, MySQL and CSS. As the volunteer webmaster for the Monterey County (California) Democrats, I’ve gotten deeper into this stuff than I ever anticipated, and believe me, I know that learning curve well. Here’s a list of some of the top gotchas. Some of them are just plain good web development practice, but they become especially important with Drupal, and even more so if you’re using the CiviCRM contact relationship management module.

Create a test site first, then deploy on your live site. Even experienced users find themselves with a site that has suddenly gone crazy or dead after an update, and you want to be fixing the problem on the test site, not the live one.
Backup up your site files and MySQL DB regularly! Especially before any significant changes, such as an update (within a major software release) or an upgrade (from one major release to another). Drupal provides automated update/upgrade tools, but you can’t always be sure they’ll work with your configuration. And if they don’t, you could be in serious trouble if you have no backup, as your DB might get corrupted. And remember to log in as the admin user (user 1) before doing the backup. It’ll make it easier to get back in control if you have to restore the site.
If you work on a Mac, remember that you may need to convert Mac carriage returns to Unix newlines before uploading a file. For example, if you dump a DB file to your Mac (as you might during a backup), restoring it may fail if you neglect to replace the carriage return (you can use this shell command in the Mac Terminal: tr ‘\r’ ‘\n’ UnixFileName.xxx)
Pay careful attention if you make any changes to settings.php or civicrm.settings.php (if you’re using CiviCRM). These files identify where your DB is and how to log into it, among other important details. Making a typo here is a common source of sites turning into blank screens.
Caches, cookies and session files are often sources of strange behavior. After updates and upgrades, or on occasion when the site is acting oddly, you may need to empty (not drop) your DB’s cache and/or session tables (you can use PHPMyAdmin, provided by many web hosts). You may also find that clearing your browser’s cookies and emptying its cache will fix some misbehaviors (such as not being able to log into your site).
When moving or copying your site files, keep track of the invisible file .htaccess. A missing .htaccess file (as can happen if you do a “cp *” shell command) will break the site.
Check that all your Drupal access permissions are in order. For example, if anonymous users don’t have access to nodes, they won’t be able to see any content.
When upgrading, make sure to disable all 3rd party modules first, and then re-enable them after the upgrade - checking that you have the latest, compatible version of each. Modules are a leading source of weirdness during upgrades.
If you upgrade CiviCRM, make sure you remove all previous CiviCRM files from the site’s modules directory (back them up first!). CiviCRM will search throughout that branch of the directory tree, and all kinds of confusion will result if old files are hanging around.
And pay careful attention to compatibility among your versions of Drupal, Drupal’s themes, 3rd party Drupal modules, CiviCRM, PHP, MySQL and Apache. Before upgrading, make a compatibility matrix to make sure everything you need will still work after the upgrade.



Updated: Sun Mar 18 23:55:01 2007


OrderWeb Software CC
Contact Us