Welcome, Guest |
You have to register before you can post on our site.
|
Online Users |
There are currently 167 online users. » 0 Member(s) | 163 Guest(s) Applebot, Bing, Google, Yandex
|
Latest Threads |
How to install Archboot i...
Forum: Network Problems
Last Post: Meup
2025-05-13, 01:41 PM
» Replies: 0
» Views: 564
|
clear logs in smoothwall
Forum: Security and Firewalls
Last Post: amanda63
2024-03-10, 03:27 PM
» Replies: 8
» Views: 89,706
|
I cannot install RedHat 8...
Forum: Redhat
Last Post: hybrid
2023-11-11, 01:01 PM
» Replies: 1
» Views: 42,896
|
How things are done, usin...
Forum: Xorg Problems
Last Post: ross
2023-09-04, 09:03 AM
» Replies: 0
» Views: 1,958
|
Im back.....
Forum: Hello
Last Post: anyweb
2021-01-17, 11:36 AM
» Replies: 1
» Views: 5,457
|
add mp3 plugin to xmms in...
Forum: Fedora
Last Post: anyweb
2021-01-17, 11:30 AM
» Replies: 11
» Views: 41,595
|
Configuring VSFTPd Server
Forum: FTP Server
Last Post: Johnbaca
2020-10-14, 10:25 AM
» Replies: 32
» Views: 118,860
|
Wolf won't play sound!
Forum: Game Problems
Last Post: Guest
2020-10-03, 05:51 PM
» Replies: 1
» Views: 56,627
|
Using git + python
Forum: How Do I?
Last Post: Clueless puppy
2020-08-21, 04:37 PM
» Replies: 0
» Views: 46,537
|
what does your nick mean ...
Forum: Hello
Last Post: volt
2020-08-06, 03:25 PM
» Replies: 28
» Views: 42,224
|
|
|
Setting up a mod |
Posted by: dudiedood - 2006-01-10, 12:47 PM - Forum: LAMP
- Replies (1)
|
 |
Hi all
Wondered if anybody knew anthing about mod_mp3 0.40 ie the fact that it is stable and if in fact the streaming actually works. I have got access to new handlers on my host but not the first clue of how to deal with them.
I am completely new to all this stuff today and I don't want to spend too much time getting bogged down by one thing when I should be getting on with something else !! Any help would be appreciated.
setup -- Apache 1.3.34, Linux, php 4.4.1 , MySQL 4.41
|
|
|
smoothwall fixes 8 patch (update) is out |
Posted by: anyweb - 2006-01-09, 02:49 PM - Forum: Security and Firewalls
- Replies (1)
|
 |
[/url][url=http://www.smoothwall.org/updates/]http://www.smoothwall.org/updates/
Quote:Available updates:There are updates available for your system. It is strongly urged that you install them as soon as possible.
ID Title Description Released
008 fixes8 update This update contains updated versions of OpenSSH (version 3.9p1), OpenSSL (0.9.7i), TCPDump (3.8.3) and Apache (1.3.34). This update also contains a kernel update to version 2.4.32.
i tried to download it myself but i got an error on sourceforge
Quote:Could not read file.
Go back. /home/ftp/pub/sourceforge//s/sm/smoothwall/2.0-fixes8.tar.gz
|
|
|
running a 'no-cd' crack under wine/cedega |
Posted by: dspln - 2006-01-08, 05:56 PM - Forum: Games in Linux
- No Replies
|
 |
I tried installing SpaceRangers2 DVD using cedega, but it will not start, I assume because of the StarForce dvd protection.
I found a no-cd crack for it on the interweb, but I am concerned about viruses.
Is running a potential-virus under cedega/wine less risky than in windows?
Anyone know where I can find a list of md5/sha1 for virus free cracks (rangers.exe in this case).
|
|
|
nfs sharing a usb drive? |
Posted by: dspln - 2006-01-08, 12:52 AM - Forum: Samba and NFS
- No Replies
|
 |
ComputerA has a usb drive /dev/sdc1 - either fat32 or ntfs.
I mount it as
/dev/sdc1 on /ext/c1 type ntfs (rw,nosuid,nodev,umask=000)
all user on ComputerA can access it.
My /etc/exports has:
/ext 192.168.0.0/24(async,no_subtree_check,rw)
ComputerB has mounted:
ComputerA:/ext on /ext type nfs (rw,nosuid,nodev,addr=192.168.0.7)
no one on B can see files in /ext/c1 - it is like nfs isn't aware that a drive is mounted on 'c1'.
How do I provide nfs access to these usb/firewire drives?
The man page for exports mentions the nohide option, which makes it work for one client - but this did not work for me.
I guess I'll try a share for each drive
I figured nfs would abstract the file system types out of it. Maybe samba is a better choice?
|
|
|
Windows Batch Scripts |
Posted by: hybrid - 2006-01-06, 05:45 PM - Forum: How Do I?
- Replies (2)
|
 |
OK, here's a bit of background on what I'm trying to do. I need to show someone a PHP/MySQL powered website (built and tested in Linux) without uploading to a server. The only system I can get to is a laptop running Windows XP Pro, and I don't want to boot a live Linux distro.
I have installed Apache/PHP/MySQL on this laptop and they are talking to each other OK. What I want to build is a short batch script that will start MySQL, and then Apache and then launch a browser to view automatically without fumbling around in the CLI. I am running Apache *not* as a service. Here is my code so far:
Code: @echo off
echo Now starting test server, please wait...
echo.
echo.
echo.
rem pause
echo Starting database server...
echo.
net start mysql
rem pause
echo.
echo Starting web server...
echo.
"C:\Program Files\Apache Group\Apache2\bin\apache.exe"
pause
echo.
echo Now loading Internet Explorer to show the page...
rem pause
echo.
"C:\Program Files\Internet Explorer\iexplore.exe" "http://127.0.0.1:8080"
echo.
echo The server is now started, please go to your Internet Explorer window to view the page
echo.
echo.
echo.
echo ===========================================================
echo To stop the servers, please press any key.
echo (Apache must be stopped manually by closing the CMD window)
echo ===========================================================
pause>nul
echo.
echo Stopping database server...
echo.
net stop mysql
echo.
echo Done.
echo.
echo Press any key to quit.
pause>nul
The problem is, the line
Code: "C:\Program Files\Apache Group\Apache2\bin\apache.exe"
just causes the script to hang, as Apache is running in the same CMD window. Is there a way like Bourne Shell's & to run it in the background? I have tried using the start command, but it doesn't seem to start the server properly.
Output of the script:
![[Image: cmd.jpg]](http://i11.photobucket.com/albums/a198/strategyoracle/cmd.jpg)
Any help would be appreciated,
(PS - IE isn't my choice ;) )
|
|
|
forums upgraded from 2.1.3 to 2.1.4c |
Posted by: anyweb - 2006-01-06, 01:22 PM - Forum: Site News
- Replies (4)
|
 |
hi all
just to let you know the forums have been upgraded again from 2.1.3 to 2.1.4c
this includes many bug fixes as well as some minor enhancements
more info about the security patch here
[/url][url=http://forums.invisionpower.com/index.php?showtopic=204627]http://forums.invisionpower.com/index.php?showtopic=204627
cheers
anyweb
|
|
|
Problems Booting Suse on Old g3 iMac |
Posted by: transversed - 2006-01-05, 09:32 PM - Forum: SUSE
- No Replies
|
 |
I've just installed Suse 10 on a old blue and white iMac. I found out at the very end that the installer would not automatically load the bootloader and that I would have to do that myself. I found some wikis that tell me to make a lilo.conf file and place it in /ect, which I did. Then it told me to run /sbin/lilo, which i also did. However, upon booting I get the error "/pci@f2000000/mac-ic@17/ata-4@1f000/disk@0:2. linux: unknown or corrupt file system"
Any thoughts?
|
|
|
Help with an error message CPU..... |
Posted by: Addy - 2006-01-04, 05:14 PM - Forum: Fedora Core Release 4
- Replies (10)
|
 |
I have this error message come up on 3 servers...
Message from syslogd@machine3 at Sun Feb 27 17:15:46 2005 ...
machine3 kernel: CPU1: Temperature above threshold
Message from syslogd@machine3 at Sun Feb 27 17:15:46 2005 ...
machine3 kernel: CPU0: Temperature above threshold
Message from syslogd@machine3 at Sun Feb 27 17:15:46 2005 ...
machine3 kernel: CPU0: Running in modulated clock mode
Message from syslogd@machine3 at Sun Feb 27 17:15:46 2005 ...
machine3 kernel: CPU1: Running in modulated clock mode
I thought it was due to it getting hot, so i purchase a 1U Heatsink with fan, so its getting cool air to it.
Can anyone suggest anything for me.
It's 775 modo with a Intel P4 3 Ghz and 1 gig DDR ram. it has 5 blow fans, 2 suck fans, and a CPU fan.
Thanks
|
|
|
|