Welcome, Guest |
You have to register before you can post on our site.
|
Forum Statistics |
» Members: 5,208
» Latest member: slotqris
» Forum threads: 4,029
» Forum posts: 16,404
Full Statistics
|
Online Users |
There are currently 174 online users. » 0 Member(s) | 171 Guest(s) Applebot, Bing, Google
|
Latest Threads |
How to install Archboot i...
Forum: Network Problems
Last Post: Meup
2025-05-13, 01:41 PM
» Replies: 0
» Views: 131
|
clear logs in smoothwall
Forum: Security and Firewalls
Last Post: amanda63
2024-03-10, 03:27 PM
» Replies: 8
» Views: 75,205
|
I cannot install RedHat 8...
Forum: Redhat
Last Post: hybrid
2023-11-11, 01:01 PM
» Replies: 1
» Views: 31,443
|
How things are done, usin...
Forum: Xorg Problems
Last Post: ross
2023-09-04, 09:03 AM
» Replies: 0
» Views: 1,666
|
Im back.....
Forum: Hello
Last Post: anyweb
2021-01-17, 11:36 AM
» Replies: 1
» Views: 5,076
|
add mp3 plugin to xmms in...
Forum: Fedora
Last Post: anyweb
2021-01-17, 11:30 AM
» Replies: 11
» Views: 40,683
|
Configuring VSFTPd Server
Forum: FTP Server
Last Post: Johnbaca
2020-10-14, 10:25 AM
» Replies: 32
» Views: 104,586
|
Wolf won't play sound!
Forum: Game Problems
Last Post: Guest
2020-10-03, 05:51 PM
» Replies: 1
» Views: 45,153
|
Using git + python
Forum: How Do I?
Last Post: Clueless puppy
2020-08-21, 04:37 PM
» Replies: 0
» Views: 35,539
|
what does your nick mean ...
Forum: Hello
Last Post: volt
2020-08-06, 03:25 PM
» Replies: 28
» Views: 40,308
|
|
|
Dell to Expand Linux Factory Installed Options |
Posted by: anyweb - 2007-03-29, 06:45 AM - Forum: Linux News
- No Replies
|
 |
Quote:Since launching Dell IdeaStorm a little more than a month ago, one idea has risen to and stayed at the top: better support for Linux. We have heard you and appreciate the direct feedback. On March 13, we responded by launching a Linux survey asking for your feedback on what you need for a better Linux experience. Thank you to the more than 100,000 people who took the survey. Here are some of the highlights from the survey:
* More than 70% of survey respondents said they would use a Dell system with a Linux operating system for both home and office use.
* Survey respondents indicated they want a selection of notebook and desktop offerings.
* Majority of survey respondents said that existing community-based support forums would meet their technical support needs for a tested and validated Linux operating system on a Dell system.
* Survey respondents indicated that improved hardware support for Linux is as important as the distribution(s) offered.
more info > [/url][url=http://www.dell.com/content/topics/global....;l=en&s=gen]http://www.dell.com/content/topics/global....;l=en&s=gen
via digg
|
|
|
Third draft of GPLv3 out |
Posted by: hybrid - 2007-03-28, 04:32 PM - Forum: Linux News
- No Replies
|
 |
Quote:The Free Software Foundation (FSF) today released the third discussion draft for version 3 of the most widely used free software license, the GNU General Public License (GNU GPL).
Today's draft incorporates the feedback received from the general public, official discussion committees, and two international conferences held in India and Japan. Many significant changes have been made since the previous draft, released in July 2006. In recognition of this fact, the FSF now plans to publish one additional draft before the final text of GPL version 3.
Read more
|
|
|
How I Got Bind9 Working On Debian Etch |
Posted by: DustyBin - 2007-03-27, 04:48 PM - Forum: DNS and DHCP
- No Replies
|
 |
TARGET MACHINE
apt-get install bind9
edit /etc/bind/named.conf.local
Code: zone "yourdomain.net" {
type master;
file "/etc/bind/zones/yourdomain.net.db";
};
zone "0.168.192.in-addr.arpa" {
type master;
file "/etc/bind/zones/rev.0.168.192.in-addr.arpa";
};
mkdir /etc/bind/zones
edit /etc/bind/zones/yourdomain.net.db
Code: yourdomain.net. IN SOA ns1.yourdomain.net. admin.yourdomain.net. (
0000000001
28800
3600
604800
38400
)
yourdomain.net. IN NS ns1.yourdomain.net.
yourdomain.net. IN MX 10 yourdomain.net.
www IN A **serverIP**
mta IN A **serverIP**
ns1 IN A **serverIP**
edit /etc/bind/zones/rev.0.168.192.in-addr.arpa
The number before IN PTR yourdomain.net. is the machine address of the DNS server. in my case, it's 3, as my IP address is 192.168.0.3.
Code: @ IN SOA ns1.yourdomain.net. admin.yourdomain.net. (
0000000001;
28800;
604800;
604800;
86400
)
IN NS ns1.yourdomain.net.
3 IN PTR yourdomain.net.
CONFIGURING THE NETWORK INTERFACES
edit etc/network/interfaces
my particular LAN has static local addresses assigned by my router. I removed anything to do with DHCP so it wont overwrite /etc/resolv.conf and entered the relevant details so it looked like this but remember to change your details accordingly for your setup.
Code: # The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
allow-hotplug eth0
auto eth0
iface eth0 inet static
address 192.168.0.2
gateway 192.168.0.1
netmask 255.255.255.0
network 192.168.0.0
broadcast 192.168.0.255
Remove network-manager so this also doesnt overwrite the /etc/resolv.conf
apt-get remove --purge network-manager
edit /etc/resolv.conf
Code: nameserver 127.0.0.1
Restart the network interfaces and check to make sure /etc/resolv.conf hasnt changed!
/etc/init.d/networking restart
now try pinging www.yourdomain.net
If all went well you could repeat 'CONFIGURING THE NETWORK INTERFACES' for other machines on your LAN so it uses bind9 as the name server but remember to point /etc/resolv.conf at the machine running bind9!
CHROOTING BIND9
It is VERY IMPORTANT to be running Bind9 as secure as possible. Heres how you chroot Bind9 on Debian Etch.
magikman from #linux-noob / efnet kindly showed me how to do this.
edit /etc/default/bind9
Code: OPTIONS="-u bind -t /var/lib/named"
mkdir -p /var/lib/named/etc
mkdir /var/lib/named/dev
mkdir -p /var/lib/named/var/cache/bind
mkdir -p /var/lib/named/var/run/bind/run
mv /etc/bind /var/lib/named/etc
ln -s /var/lib/named/etc/bind /etc/bind
mknod /var/lib/named/dev/null c 1 3
mknod /var/lib/named/dev/random c 1 8
chmod 666 /var/lib/named/dev/null /var/lib/named/dev/random
chown -R bind:bind /var/lib/named/var/*
chown -R bind:bind /var/lib/named/etc/bind
edit /etc/init.d/sysklogd
Code: SYSLOGD="-a /var/lib/named/dev/log"
/etc/init.d/sysklogd restart
/etc/init.d/bind9 restart
Now you will running Bind9 chrooted :-)
|
|
|
Linux, open source software pay off for PayPal |
Posted by: anyweb - 2007-03-27, 09:21 AM - Forum: Linux News
- No Replies
|
 |
Quote:When Scott Thompson left Visa to take the CTO role at PayPal in 2005, the Web company's data centre surprised him. "Wait a minute," he recalls saying, "they run a payment system on Linux?"
"I was pretty familiar with payment systems and global trading systems, but I just scratched my head when I came here," Thompson says. With his history of working on IBM mainframes and large Sun Solaris systems, the PayPal approach to computing seemed alien, especially for a company whose core mission was dealing with money.
PayPal runs thousands of Linux-based, single-rack-unit servers, which host the company's Web-presentation layer, middleware and user interface. Thompson says he quickly saw the economic, operational and development advantages of open source and Linux technology. He now sees no other way to do it.
more info > [/url][url=http://www.linuxworld.com.au/index.php/id;...853;fp;4;fpid;4]http://www.linuxworld.com.au/index.php/id;...853;fp;4;fpid;4
via digg
|
|
|
Yankee Group: Novell Gaining at Red Hat's Expense |
Posted by: anyweb - 2007-03-27, 07:45 AM - Forum: Linux News
- No Replies
|
 |
Quote:"Whatever the reasons behind the formation of the Microsoft-Novell technology partnership announced last year, it's helping Novell SuSE Linux gain at Red Hat's expense, according to a research study due out next month. The Yankee Group 2007 Global Server Hardware and Server OS Survey says that Novell's SuSE Linux is 'mounting a serious threat to Red Hat's heretofore unassailable dominance in the Linux market'."
more info > [/url][url=http://blogs.zdnet.com/microsoft/?p=345]http://blogs.zdnet.com/microsoft/?p=345
via osnews.com
|
|
|
VLC: Beyond the Basics |
Posted by: anyweb - 2007-03-27, 07:44 AM - Forum: Linux News
- No Replies
|
 |
Quote:Linux.com takes a look at one of our favorite media players, VLC. They write "VideoLAN's VLC is a cross-platform media player with a simple interface that doesn't require a degree in rocket science to operate. That doesn't mean, however, that VLC is a simplistic application: it has a few tricks up its sleeve that can significantly extend its functionality and enhance your user experience. Here are a couple of VLC's nifty features you might want to try."
more info > [/url][url=http://applications.linux.com/applications...32.shtml?tid=39]http://applications.linux.com/applications...32.shtml?tid=39
via osnews.com
|
|
|
De Icaza Pleads for Cooperation Between Mono, .Net |
Posted by: anyweb - 2007-03-27, 07:43 AM - Forum: Linux News
- No Replies
|
 |
Quote:In a recent interview with the online edition of the Austrian daily Newspaper Der Standard, Mono project-lead Miguel de Icaza pleads for a cooperation between Mono and Microsoft's .Net: "I think that the deal should include a technical Mono/.NET collaboration, and even go as far as Microsoft recommending Mono for all of their developers looking at migration."
more info > [/url][url=http://derstandard.at/?url=/?id=2818611]http://derstandard.at/?url=/?id=2818611
via osnews.com
|
|
|
Freespire 2.0 Alpha 2 Released |
Posted by: anyweb - 2007-03-27, 07:42 AM - Forum: Linux News
- No Replies
|
 |
Quote:Freespire version 2.0 Alpha2U (1.2.49) is now available for download. This is the second alpha build based on Ubuntu that might not be good for the health of a production machine. Expect improvements as future builds are released. Some of the release notes: automatic boot menu management does not always work, do not install if you are not experienced at repairing GRUB configurations and MBRs; no upgrade path available from Freespire 1.0 or previous versions of Freespire 2.0 alphas; NVIDIA and ATI drivers are not automatically installed; Jack has been removed - any applications which do not use ALSA may not work properly."
more info > [/url][url=http://distrowatch.com/?newsid=04129]http://distrowatch.com/?newsid=04129
via > osnews.com
|
|
|
Preview: Ubuntu 7.04 Beta |
Posted by: anyweb - 2007-03-27, 07:41 AM - Forum: Linux News
- Replies (2)
|
 |
Quote:"The Ubuntu developers are moving very quickly to bring you the absolute latest and greatest software the Open Source Community has to offer. This is the Ubuntu 7.04 Beta and it comes packed with a whole host of excellent new features including the released GNOME 2.18, the 2.6.20 kernel and much more. Ubuntu 7.04 is the most user-friendly Ubuntu to date and includes a ground-breaking Windows migration assistant, excellent wireless networking support and improved multimedia support."
more > [/url][url=http://onlyubuntu.blogspot.com/2007/03/ubu...ta-preview.html]http://onlyubuntu.blogspot.com/2007/03/ubu...ta-preview.html
via osnews.com
|
|
|
|