| Welcome, Guest |
You have to register before you can post on our site.
|
| Forum Statistics |
» Members: 5,244
» Latest member: dangyc
» Forum threads: 4,031
» Forum posts: 16,406
Full Statistics
|
| Online Users |
There are currently 5878 online users. » 0 Member(s) | 5875 Guest(s) Applebot, Baidu, Bing
|
| Latest Threads |
how to allow only steam t...
Forum: Xorg Problems
Last Post: moquber
2026-03-17, 09:40 PM
» Replies: 0
» Views: 383
|
Wi-Fi works for a few min...
Forum: Network Problems
Last Post: kabifff
2025-12-15, 12:57 AM
» Replies: 0
» Views: 795
|
How to install Archboot i...
Forum: Network Problems
Last Post: Meup
2025-05-13, 01:41 PM
» Replies: 0
» Views: 4,102
|
clear logs in smoothwall
Forum: Security and Firewalls
Last Post: amanda63
2024-03-10, 03:27 PM
» Replies: 8
» Views: 125,608
|
I cannot install RedHat 8...
Forum: Redhat
Last Post: hybrid
2023-11-11, 01:01 PM
» Replies: 1
» Views: 75,639
|
How things are done, usin...
Forum: Xorg Problems
Last Post: ross
2023-09-04, 09:03 AM
» Replies: 0
» Views: 5,477
|
Im back.....
Forum: Hello
Last Post: anyweb
2021-01-17, 11:36 AM
» Replies: 1
» Views: 9,339
|
add mp3 plugin to xmms in...
Forum: Fedora
Last Post: anyweb
2021-01-17, 11:30 AM
» Replies: 11
» Views: 47,854
|
Configuring VSFTPd Server
Forum: FTP Server
Last Post: Johnbaca
2020-10-14, 10:25 AM
» Replies: 32
» Views: 167,371
|
Wolf won't play sound!
Forum: Game Problems
Last Post: Guest
2020-10-03, 05:51 PM
» Replies: 1
» Views: 98,445
|
|
|
| Red Hat Enterprise Linux 5.2 Beta Available |
|
Posted by: anyweb - 2008-03-12, 07:51 PM - Forum: Linux News
- No Replies
|
 |
Sure Red Hat Enterprise Linux 5 is a stable distribution, but that doesn't mean that it doesn't change and improve - even inside of release cycles. Case in point is Red Hat Enterprise Linux 5.2 now available as a Beta. The 5.2 release is the second incremental release since RHEL 5 was released in March of 2007 (RHEL 5.1 Beta appeared in August of 2007). With the 5.2 release Red Hat is adding virtualization enhancements including the ability to handle a 64 CPU system. Additionally the critical 'libvirt' technology which helps to manage the virtualization instances now gets remote management support.
via osnews.com
|
|
|
| GCC 4.3.0 Released |
|
Posted by: anyweb - 2008-03-12, 07:49 PM - Forum: Linux News
- Replies (1)
|
 |
The GNU project has released version 4.3.0 of the GNU Compiler Collection. "The GNU project and the GCC developers are pleased to announce the release of GCC 4.3.0. This release is a major release, containing new features (as well as many other improvements) relative to GCC 4.2.x."
via osnews.com
|
|
|
| First Look at GNOME 2.22.0 |
|
Posted by: anyweb - 2008-03-12, 07:47 PM - Forum: Linux News
- No Replies
|
 |
GNOME 2.22 isn't officially released yet, but here's a first look already. "Every six months, the GNOME team prepares a new and revolutionary release of the ever popular GNOME desktop environment. Today, we are proud to introduce you to the latest and greatest features of an 100% FREE and open source desktop. Whether you are on a Solaris machine or the latest Ubuntu distribution, GNOME is there and with every new release it makes your life... Simply Beautiful! Let's have a look at the new features of GNOME 2.22."
via osnews.com
more info > http://news.softpedia.com/news/GNOME-2-22-...top-80584.shtml
|
|
|
| Eric Sandeen on the ext4 Implementation in Fedora 9 |
|
Posted by: anyweb - 2008-03-11, 07:40 AM - Forum: Fedora 9
- No Replies
|
 |
"One major feature present in Fedora 9 will be the ext4 implementation. The new filesystem will not be the default for the distribution, but will be available for users and systems administrators to enable. New functionality includes larger capacities and online defragmentation, for better performance and more reliability. To find out more, we talked with Eric Sandeen, Fedora project member and filesystem developer at Red Hat."
more info > http://fedoraproject.org/wiki/Interviews/EricSandeen
via osnews.com
|
|
|
| How do I remove Automatix2? |
|
Posted by: jacatone - 2008-03-05, 10:57 PM - Forum: Just Starting Linux
- Replies (1)
|
 |
I installed Automatix2 because it seemed to have a lot of software Adept didn't have in Kubuntu 7.04. But the programs seems problematic. When I trying removing it with: "sudo aptitude remove automatix2", I get a "can't get a lock, are you root" answer. Anyone know how to remove this thing? Thanks.
|
|
|
| How do I install a .bin file |
|
Posted by: jacatone - 2008-03-05, 08:44 AM - Forum: How Do I?
- Replies (2)
|
 |
I downloaded the Java for Linux file and it's a .bin file. How would I install it? Please give me the commands with the following file name included:
jre-6u3-linux-i586.bin
Many thanks.
|
|
|
| how to add GD support to PHP when compiling it... |
|
Posted by: anyweb - 2008-03-04, 05:32 PM - Forum: LAMP
- Replies (8)
|
 |
ok i've just recompiled apache/mysql/php
and while recompiling php i wanted to add GD support
to add GD support for png and jpeg i used the following configure switches for php, making sure to first
Code: yum install libpng and libjpeg
don't forget to make clean as below (it resolved my problem from multiple compiles)
Code: make clean
./configure \--with-apxs=/usr/local/apache/bin/apxs \--with-mysql=/usr/local/mysql \--with-gd \--with-jpeg-dir \--with-png-dir
make
make install
the configuration flags \--with-gd \--with-jpeg-dir=/usr \--with-png-dir=/usr add our GD support for Zenphoto (image gallery software, example here)
for troubleshooting php errors make sure to log them to your apache error_log
to do that, edit your php.ini file
vi /usr/local/lib/php.ini
find
Quote:; Log errors into a log file (server-specific log, stderr, or error_log (below)); As stated above, you're strongly advised to use error logging in place of
; error displaying on production web sites.
log_errors = Off
change to
Quote:; Log errors into a log file (server-specific log, stderr, or error_log (below)); As stated above, you're strongly advised to use error logging in place of
; error displaying on production web sites.
log_errors = on
restart apache and the php errors such as this will give you an idea of what is wrong in the first place
Quote:[Tue Mar 4 17:43:43 2008] [error] PHP Fatal error: Call to undefined function imagecreatefromjpeg() in /usr/local/apache/websites/niallbrady/photos/zp-core/functions-image.php on line 59
|
|
|
| Atheros AR5bxb61 wont activate in fedora |
|
Posted by: Draven - 2008-03-04, 03:58 AM - Forum: Wireless
- Replies (6)
|
 |
Hello I am new to Linux and I have been searching this for a week now. I have a new Toshiba Satellite with the Atheros AR5bxb61 mini pci-e card in it. in the network device control it shows ath0 but when i try to activate it it say's "device does not seem to be present delaying initialization." I am a noob to linux and desperately want to understand and power use linux to it's max, but i am starting to get frustrated cause BT3 live cd & USB both can use my wireless better than windows. can someone help me understand this please.
Thanks
|
|
|
|