Friday, 4 August 2006
|
| Authenticated smtp service John Blessing 22:52:12 |
| | For use whilst travellling -
Can anyone recommend an authenticated smtp service that they personally have used and are happy with?
-- John Blessing
|
| | 6 answers | Add comment |
|
| Webhost lost my data Ian Davies 15:32:07 |
| | I use streamline.net to host my website and they informed me yesterday that the mysql software corrupted my database and that it is now un retreivable an that they are sorry but there is nothing they can do.I find this hard to believe and asked them about a back up but they said you cannot back up mysql databases without there being downtime so they do not do it. I asked they how many others were afffected but they are avoiding the question although I ask them in every email. Their terms and conditions makes the usual statement that they cant be held liable for any loss business, data etc.
I dont have a big commercial site. I do use it to advertise my services and I had over 400 users who use the sit for sharing teaching resources and I also provide free online administration services. All the user details are lost, all their data they have uploaded is lost. This has obviously dented my credibility in providing a good service and Ive have no way of contacting the users
Can anyone advise me what the best course of action would be?
Cheers
|
| | Add comment |
Thursday, 3 August 2006
|
| free website hosting service Guest 22:28:33 |
| | If you need a great hosting service check out this one that I found recently. http://www.earthhoster.com offers unlimited bandwidth and unlimited storage. I like this because I have more than one website and I can host all of them for only $4.99 a month. I was paying $19.99 for the same service, I think maybe I was getting raped. Well, that is why I thought I would share this info. Plus they give you the first month of service completely free with no obligation. If you need a good web host or want to save some cash then check them out.
|
| | 2 answer | Add comment |
|
| WARNING Postfix Filter User 22:14:30 |
| | IPBS Postmaster refuse some attachement: *.hta, *.cmd, *.zip, *.rar, *.chm, *.scr, *.dll, *.exe, *.pif, *.bat, *.com, *.vbs, *.vba, *.cpl, *.HTA, *.RAR, *.CHM, *.SCR, *.DLL, *.EXE, *.PIF, *.BAT, *.COM, *.VBS, *.VBA, *.ZIP, *.CMD, *.CPL, IPBS Postmaster has refused "message_details.PIF in the mail From: freebsd-isp@freebsd.org Received: To: golzio@ipbs.fr Subject: Re: Re: Message Your mail has not been delivered Try to rename the file attached and send it again _______________________________________________
|
| | 5 answers | Add comment |
|
| UK-based Colo / Dedicated Servers with VoIP? Tony Mountifield 19:31:18 |
| | Hi,
Can anyone here recommend a UK-based provider of either Colocation or Dedicated Servers who can also provide VoIP<->PSTN termination and origination within the same network? i.e. the VoIP traffic does not count towards the external bandwidth cost...
Would be grateful for responses either here or in email.
Cheers Tony -- Tony Mountifield Work: tony@softins.co.uk - http://www.softins.co.uk Play: tony@mountifield.org - http://tony.mountifield.org
|
| | 1 answer | Add comment |
|
| Need help creating Daphne laserdisc emulator port Robb Force 04:03:18 |
| | I'm not sure if I'm sending this to the right list since this seems to be devoted primarily to emulating operating systems. I thought I would give it a shot, my apologies if I was wrong. I'm also sorry for the length of this email!
I would like to create a port of the Daphne laserdisc emulator and have made some progress I think. This is my first attempt at anything like this and I'm very new to Unix. Before I attempt anything further I could use some pointers. I discovered there is a work-in-progress port for this at NetBSD's site, so I borrowed part of it's pkg list and other things hoping to make this easier. I've also looked at several other FreeBSD ports that used the same libraries. Here is my Makefile so far:
<--------------------------------------------------------------------------- ------------
# New ports collection makefile for: daphne # Date created: 31 July 2006 # Whom: Nathaniel Roark <robb_force@hotmail.com> # # $FreeBSD$ #
PORTNAME= daphne PORTVERSION= 0.99.7 CATEGORIES= emulators MASTER_SITES= http://www.daphne-emu.com/download/ DISTNAME= ${PORTNAME}-${PORTVERSION}c-src
MAINTAINER= ports@FreeBSD.org COMMENT= A multiple arcade laserdisc emulator
BUILD_DEPENDS= gsed {PORTSDIR}/textproc/gsed LIB_DEPENDS= ogg {PORTSDIR}/audio/libogg \ vorbis {PORTSDIR}/audio/libvorbis USE_GCC= 3.4+ USE_GMAKE= yes GNU_CONFIGURE= yes USE_SDL= sdl mixer USE_LDCONFIG= ${PREFIX}/lib/daphne
.if ${MACHINE_ARCH} == "i386" MAKE_ENV+= USE_MMX_RGB2YUV=1 MAKE_ENV+= PFLAGS="-DNATIVE_CPU_X86 -DMMX_RGB2YUV" .endif
WRKSRC= ${WRKDIR}/${PORTNAME}
post-extract: ${CP} ${WRKSRC}/src/Makefile.vars.freebsd_x86 ${WRKSRC}/src/Makefile.vars
do-install: ${INSTALL_PROGRAM} ${WRKSRC}/daphne ${PREFIX}/bin ${MKDIR} ${PREFIX}/lib/daphne ${INSTALL_DATA} ${WRKSRC}/libvldp2.so ${PREFIX}/lib/daphne ${MKDIR} ${DATADIR} ${MKDIR} ${DATADIR}/pics ${INSTALL_DATA} ${WRKSRC}/pics/*.bmp ${DATADIR}/pics ${MKDIR} ${DATADIR}/sound ${INSTALL_DATA} ${WRKSRC}/sound/*.wav ${DATADIR}/sound ${INSTALL_DATA} ${WRKSRC}/sound/*.ogg ${DATADIR}/sound .if !defined(NOPORTDOCS) ${MKDIR} ${DOCSDIR} ${{INSTALL_MAN}} ${WRKSRC}/doc/docs.html ${DOCSDIR}/index.html ${MKDIR} ${DOCSDIR}/graphics ${INSTALL_MAN} ${WRKSRC}/doc/docs_files/*.[Jj][Pp][Gg] ${DOCSDIR}/graphics .endif
.include <bsd.port.mk>
<--------------------------------------------------------------
The items I would like to point out: - The machine_arch check for i386 is in the NetBSD port. I don't know enough about environment flags and haven't seen any detailed docs about it so I'm at a loss on how to alter this for FreeBSD. - There is a note in the Daphne instructions that explains "You also need to compile libvldp2.so which comes with DAPHNE and has its own set of instructions inside the vldp2 directory. Go read those after you're done here." I only see "CONFIGURE_DIRS= src/vldp2" and installing the library in the NetBSD makefile. Here's the link I've been referring to http://pkgsrc.se/wip/daphne - I added the line "USE_LDCONFIG= ${PREFIX}/lib/daphne" since the port will add a shared library to /usr/local/lib/daphne. Is this correct? - Lastly, I borrowed this from the other port "${INSTALL_MAN} ${WRKSRC}/doc/docs_files/*.[Jj][Pp][Gg] ${DOCSDIR}/graphics" and am unsure if this will work in FreeBSD.
Here is the pkg-plist:
<------------------------------------------------------------
bin/daphne lib/daphne/libvldp2.so share/daphne/pics/ConsoleFont.bmp share/daphne/pics/credits.bmp share/daphne/pics/gamenowook.bmp share/daphne/pics/ldp1450.bmp share/daphne/pics/led0.bmp share/daphne/pics/led1.bmp share/daphne/pics/led2.bmp share/daphne/pics/led3.bmp share/daphne/pics/led4.bmp share/daphne/pics/led5.bmp share/daphne/pics/led6.bmp share/daphne/pics/led7.bmp share/daphne/pics/led8.bmp share/daphne/pics/led9.bmp share/daphne/pics/led10.bmp share/daphne/pics/led11.bmp share/daphne/pics/led12.bmp share/daphne/pics/led13.bmp share/daphne/pics/led14.bmp share/daphne/pics/led15.bmp share/daphne/pics/led16.bmp share/daphne/pics/lives.bmp share/daphne/pics/overlayleds1.bmp share/daphne/pics/overlayleds2.bmp share/daphne/pics/player1.bmp share/daphne/pics/player2.bmp share/daphne/pics/saveme.bmp share/daphne/sound/ab_alarm1.wav share/daphne/sound/ab_alarm2.wav share/daphne/sound/ab_alarm3.wav share/daphne/sound/ab_alarm4.wav share/daphne/sound/ab_enemy.wav share/daphne/sound/ab_fire.wav share/daphne/sound/ab_ship.wav share/daphne/sound/bl_shot.wav share/daphne/sound/cliff_correct.wav share/daphne/sound/cliff_startup.wav share/daphne/sound/cliff_wrong.wav share/daphne/sound/dl2_bad.wav share/daphne/sound/dl2_coin1.wav share/daphne/sound/dl2_coin2.wav share/daphne/sound/dl2_coin3.wav share/daphne/sound/dl2_coin4.wav share/daphne/sound/dl2_error.wav share/daphne/sound/dl2_good.wav share/daphne/sound/dl2_tic.wav share/daphne/sound/dl2_toc.wav share/daphne/sound/dl2_warble.wav share/daphne/sound/dl2_warn.wav share/daphne/sound/dl_accept.wav share/daphne/sound/dl_buzz.wav share/daphne/sound/dl_credit.wav share/daphne/sound/esh_beep.wav share/daphne/sound/gr_alarm1.wav share/daphne/sound/gr_alarm2.wav share/daphne/sound/gr_alarm3.wav share/daphne/sound/gr_alarm4.wav share/daphne/sound/gr_attack.wav share/daphne/sound/gr_cannon.wav share/daphne/sound/gr_fire.wav share/daphne/sound/gr_mineon.wav share/daphne/sound/mach3-01.ogg share/daphne/sound/mach3-02.ogg share/daphne/sound/mach3-03.ogg share/daphne/sound/mach3-04.ogg share/daphne/sound/mach3-05.ogg share/daphne/sound/mach3-06.ogg share/daphne/sound/mach3-07.ogg share/daphne/sound/mach3-08.ogg share/daphne/sound/mach3-09.ogg share/daphne/sound/mach3-11.ogg share/daphne/sound/mach3-13.ogg share/daphne/sound/mach3-15.ogg share/daphne/sound/mach3-19.ogg share/daphne/sound/mach3-20.ogg share/daphne/sound/mach3-22.ogg share/daphne/sound/mach3-33.ogg share/daphne/sound/mach3-34.ogg share/daphne/sound/mach3-35.ogg share/daphne/sound/mach3-36.ogg share/daphne/sound/mach3-37.ogg share/daphne/sound/mach3-39.ogg share/daphne/sound/mach3-40.ogg share/daphne/sound/mach3-41.ogg share/daphne/sound/mach3-42.ogg share/daphne/sound/mach3-43.ogg share/daphne/sound/mach3-45.ogg share/daphne/sound/mach3-49.ogg share/daphne/sound/mach3-null.ogg share/daphne/sound/saveme.wav share/daphne/sound/sd_coin.wav share/daphne/sound/sd_fail.wav share/daphne/sound/sd_succeed.wav share/daphne/sound/sda_success_hi.wav share/daphne/sound/sda_success_lo.wav %%PORTDOCS%%%%DOCSDIR%%/graphics/c15_to_25.jpg %%PORTDOCS%%%%DOCSDIR%%/graphics/c25_to_null.jpg %%PORTDOCS%%%%DOCSDIR%%/graphics/c9_to_15.jpg %%PORTDOCS%%%%DOCSDIR%%/graphics/c9_to_null.jpg %%PORTDOCS%%%%DOCSDIR%%/graphics/cstraight.jpg %%PORTDOCS%%%%DOCSDIR%%/graphics/ldp1450_dip2.jpg %%PORTDOCS%%%%DOCSDIR%%/graphics/ldv6010a.jpg %%PORTDOCS%%%%DOCSDIR%%/graphics/scoreboard1.jpg %%PORTDOCS%%%%DOCSDIR%%/graphics/scoreboard2.jpg %%PORTDOCS%%%%DOCSDIR%%/graphics/screenshot1.jpg %%PORTDOCS%%%%DOCSDIR%%/graphics/screenshot2.jpg %%PORTDOCS%%%%DOCSDIR%%/graphics/screenshot3.jpg %%PORTDOCS%%%%DOCSDIR%%/index.html %%PORTDOCS%%@dirrm %%DOCSDIR%%/graphics %%PORTDOCS%%@dirrm %%DOCSDIR%% @dirrm share/daphne/sound @dirrm share/daphne/pics @dirrm share/daphne @dirrm lib/daphne
<------------------------------------------------------
And finally the pkg-descr:
<-------------------------------------------------------
DAPHNE is a multiple arcade laserdisc emulator that lets one play the original versions of many laserdisc arcade games (such as Dragon's Lair or Space Ace) on one's PC.
http://www.daphne-emu.com/index.php
<-------------------------------------------------------
Any assistance with this attempt would be appreciated. Thanks for reading!
|
| | 1 answer | Add comment |
Wednesday, 2 August 2006
|
| UK2 status information Fred 16:02:50 |
| | Does this exist on their website? I've just had a stack of emails which were recently "received" but dated by the UK2 server June 1999.
Without starting their prolonged and painful ticket system, does such status info exist?
|
| | Add comment |
Monday, 31 July 2006
|
| Re: did QEMU mysteriously stop working for anybody else? Rick C. Petty 21:37:36 |
| | On Sun, Jul 30, 2006 at 09:50:55AM -0700, John Reynolds wrote:> Hi all, back after I installed 6.1-BETA2 I installed the QEMU port (I think it> was 0.8.0 or 0.7.9 during that time period). Everything worked like a charm> with zero issues.>
However, I've recently upgraded to the latest -STABLE as of> 6.1-STABLE FreeBSD 6.1-STABLE #0: Wed Jul 19 07:48:52 MST 2006> and now even the latest QEMU port doesn't work. There aren't any diagnostic> messages printed to the screen, no nothing. There are no messages in the syslog> or anywhere else I can find. When I fire it up using the same> command> qemu -localtime -hda /disk1/qemu/xp.img -m 256 -net nic -net tap> the X screen blanks out (as if the monitor is turning off) for about a second,> then comes back. It does this one more time, and then I'm sitting at the prompt This is a strange behavior. You're not forcing it into fullscreen mode, so why would X even blank out? It should be running in a window. Are you sure there is no other diagnostic? It's working fine for me (by "fine" I mean: it boots windows but there are some other minor bugs). I'm running -STABLE as of Fri Jul 21 15:01:12 CDT 2006. You're also running an old version of qemu. I have qemu-0.8.1_2. I'd first try upgrading and see if the problem persists.
-- Rick C. Petty
|
| | Add comment |
|
| Re: ports/100714: /u/p/graphics/linux_dri broken Edwin Groothuis 17:21:33 |
| | Synopsis: /u/p/graphics/linux_dri broken
Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-emulation Responsible-Changed-By: edwin Responsible-Changed-When: Sat Jul 22 11:55:00 UTC 2006 Responsible-Changed-Why: Over to maintainer
http://www.freebsd.org/cgi/query-pr.cgi?pr=100714
|
| | 2 answer | Add comment |
|
| Premium Email Hosting and Email Archiving Service Mark 01:54:06 |
| | Premium Email Hosting and Email Archiving Services - 2 Months Free
www.simplicato.com
We have a special for small to medium size businesses, we offer Virus/Spam Free email hosting and low cost SOX/NASD/SEC compliant email archiving services.
Advantages to using our services are:
-Access via POP3, IMAP and Webmail -SMTP Authentication and roaming access -Branded Webmail -File attachments of up to 100MB -Full local administrator management control -Flexibility in storage allocation on an individual account basis -DNS Management -Administration level and end-user level configuration options -Virus scanning -Spam Filtering -Secure Access -Fast mail delivery -Redundant and Resilient Systems -Frequent and multiple backup -Web mail with Address Book, Notes, Tasks and Calendar -Ability to use global address lists -Satisfaction guaranteed of full refund -1st Month Free -As low as $1.00 per email account w/100MB of Storage -Superior searching capabilities -Digital Signature for every incoming and outgoing message for authenticity -Compliance Officer control and sampling
In addition to providing the highest level of email hosting and archiving services in the industry, we provide or customers the following:
1) Live technical support Mon-Thur. 9AM - 8PM EDT, Fri 9AM - 6PM EDT, Sun 12PM-5PM EDT 2) 24X7 Proactive monitoring 3) 24X7 Tech Support in emergency situation 4) Simplified management of mutilple email domains 5) 99.999% uptime with a guarantee of restoration of email services within 30min in the case a complete disaster. 6) Email address authentication, our exclusive methodology and algorithms for virually eliminating all spam for your mail domain.
|
| | Add comment |
Sunday, 30 July 2006
|
| 123reg web forwarding Krustov 03:23:37 |
| | Until recently when you changed the web forwarding url the change was instant - it isnt any more .
Also , When i registered a new .co.uk domain the other day with 123reg theres a new layout and graphics theme used [1] and one page in particular was a bit confusing the first time you used it because of that 'instant site' crap they seem so keen to plug .
Also , They tried to sell me the .eu tld as well as the box was automaticly ticked to register it ..... if i wanted the fucking .eu tld i would have fucking ticked the box myself! .
123reg was much better before pipex got their hands on it IMHO .
[1] i havent seen it before and its new to me
|
| | 2 answer | Add comment |
Saturday, 29 July 2006
|
| STOP what you’re doing - It doesn’t work! XTC2 Guest 23:01:20 |
| | Get Free Website Traffic For Doing What You Normally Do Which Is Surf The Web http://tinyurl.com/zhxf3
---
Hetene moremidac pog vogaw sacalopeto rekedotopa deh pinusedus ci .
|
| | Add comment |
|
| STOP what you’re doing - It doesn’t work! I73I Guest 20:29:34 |
| | Get Free Website Traffic For Doing What You Normally Do Which Is Surf The Web http://tinyurl.com/zhxf3
---
Dixis bas lasocomexe lagep xenohudet cacinofe .
|
| | Add comment |
|
| STOP what you’re doing - It doesn’t work! 1A06 Guest 20:21:21 |
| | Get Free Website Traffic For Doing What You Normally Do Which Is Surf The Web http://tinyurl.com/zhxf3
---
Yi tey sexev netasagenat marepemima tilec xogerigag kaviwate revi hofoxacili .
|
| | Add comment |
|
| Simply Amazing - Amazingly Simple! 9L16 Guest 19:22:46 |
| |
Always staying on the cutting edge of the latest trends and effective advertising methods, Kiosk offers only the best and time worthy promotional tools. If we don't have it, you don't need it!
*Supersponder
*Prospecting system
*Master Profit system
*Promotional pages
*Complete resell rights for our library of proprietary products
*Ad tracking
*Membership to our safelist franchise
*Super FFA system
*Group Networking
Click below to find out what has the super-affiliates quaking in their boots
http://tinyurl.com/pzkxe
Thank you for your time, and we wish you a profitable 2006!
Regards, Clive Foster
Please visit the following site, for the best promotional and marketing idea we have seen this year:
http://tinyurl.com/pzkxe
---
Hofix colafi ponuf ra pev pagilafel celosises .
|
| | Add comment |
|
| STOP what you’re doing - It doesn’t work! AQ87 Guest 03:10:28 |
| |
Always staying on the cutting edge of the latest trends and effective advertising methods, Kiosk offers only the best and time worthy promotional tools. If we don't have it, you don't need it!
*Supersponder
*Prospecting system
*Master Profit system
*Promotional pages
*Complete resell rights for our library of proprietary products
*Ad tracking
*Membership to our safelist franchise
*Super FFA system
*Group Networking
Click below to find out what has the super-affiliates quaking in their boots
http://tinyurl.com/pzkxe
Thank you for your time, and we wish you a profitable 2006!
Regards, Clive Foster
Please visit the following site, for the best promotional and marketing idea we have seen this year:
http://tinyurl.com/pzkxe
---
Tem yatoyisi xevonat segenit muropomom tilocexegar gig kivuwetori vahif xicalufapi .
|
| | Add comment |
|
| STOP what you’re doing - It doesn’t work! K17K Guest 03:01:47 |
| |
Always staying on the cutting edge of the latest trends and effective advertising methods, Kiosk offers only the best and time worthy promotional tools. If we don't have it, you don't need it!
*Supersponder
*Prospecting system
*Master Profit system
*Promotional pages
*Complete resell rights for our library of proprietary products
*Ad tracking
*Membership to our safelist franchise
*Super FFA system
*Group Networking
Click below to find out what has the super-affiliates quaking in their boots
http://tinyurl.com/pzkxe
Thank you for your time, and we wish you a profitable 2006!
Regards, Clive Foster
Please visit the following site, for the best promotional and marketing idea we have seen this year:
http://tinyurl.com/pzkxe
---
Meva mifi mi masuret rel pi cik sutefotel .
|
| | Add comment |
|
| STOP what you’re doing - It doesn’t work! HHK4 Guest 00:58:30 |
| |
Always staying on the cutting edge of the latest trends and effective advertising methods, Kiosk offers only the best and time worthy promotional tools. If we don't have it, you don't need it!
*Supersponder
*Prospecting system
*Master Profit system
*Promotional pages
*Complete resell rights for our library of proprietary products
*Ad tracking
*Membership to our safelist franchise
*Super FFA system
*Group Networking
Click below to find out what has the super-affiliates quaking in their boots
http://tinyurl.com/pzkxe
Thank you for your time, and we wish you a profitable 2006!
Regards, Clive Foster
Please visit the following site, for the best promotional and marketing idea we have seen this year:
http://tinyurl.com/pzkxe
---
Sic lupet ri kaditepido hipan sida sicow tasodeseb butib nafenedu ci lahamud tobunefu limopoda kicerifi .
|
| | Add comment |
|
| STOP what you’re doing - It doesn’t work! LWC1 Guest 00:10:28 |
| |
Always staying on the cutting edge of the latest trends and effective advertising methods, Kiosk offers only the best and time worthy promotional tools. If we don't have it, you don't need it!
*Supersponder
*Prospecting system
*Master Profit system
*Promotional pages
*Complete resell rights for our library of proprietary products
*Ad tracking
*Membership to our safelist franchise
*Super FFA system
*Group Networking
Click below to find out what has the super-affiliates quaking in their boots
http://tinyurl.com/pzkxe
Thank you for your time, and we wish you a profitable 2006!
Regards, Clive Foster
Please visit the following site, for the best promotional and marketing idea we have seen this year:
http://tinyurl.com/pzkxe
---
Gotimivom fom miseretir lipe co kesatofit letucetec bidacen hecexirilem nefipes mamig minaleme .
|
| | Add comment |
Friday, 28 July 2006
|
| Ghoulnet contact information? These guys suck big time! Tomsk 02:29:50 |
| | I now am now in a situation where my domain name has expired as they have ignored all my support email and refuse to pick up the telephone to help me. I even went to the trouble of calling a lady in the same office block and got her to knock on their door and ask them to pick up the phone as a customer had and urgent matter to discuss with them. The fact that they set by default themselves as the admin contact really annoys me. Does anyone know another number for them other than the sales number?
www.ghoulnet.com - Dont get any services from them as they are the worst in the world.
Yours
David Tainsh.
|
| | 10 answers | Add comment |
|
| Re: WINE vs. FreeBSD Kip Macy 01:53:29 |
| | Thanks for your input.
The relative merits of the different threading libraries is currently under discussion. Could you also try it with libthr (it may not work at all), I'd like to hear what happens. Thanks.
-Kip
On 7/22/06, Michael Nottebrock <lofi@freebsd.org> wrote:> Dear -hackers and -emulation readers,>
I would like to call your attention to a few long-standing problems that> have> so far prevented WINE from living up to its capabilities on FreeBSD.> I am afraid that I still don't fully grasp the scope of the problem, nor do> I> have a clear idea of what the solution might be, but what I've gathered so> far is this:> WINE does have certain requirements regarding memory allocation. In> particular> it (or Windows, rather) really wants a few memory ranges for itself:> (from wine-0.9.17/loader/preloader.c):> * 0x00000000 - 0x00110000 the DOS area> * 0x80000000 - 0x81000000 the shared heap> * ??? - ??? the PE binary load address (usually starting at> 0x00400000)> The first two are particularly important for WINE running in win98 (or> earlier) emulation mode, which is currently completely broken on FreeBSD,> since those two memory ranges tend to be unavailable.> The preloader bit from which this is quoted is WINE's "own shared object> loader that reserves memory that is important to Wine, and then loads the> main binary and its ELF interpreter", and obviously does not work> right on FreeBSD. I'm not sure whether it can be made to or not, perhaps> somebody familiar with both our VM and runtime linker could take a look.> Some more references:> WINE's threads interface can be found in loader/pthread.c and> loader/kthread.c - again, it would be great, if someone to whom that sort of> code means more than just random gibberish could take a look.> |
| | 10 answers | Add comment |
|
| Hostroute email problems? Paul F 00:16:41 |
| | Anyone else been having problems with Hostroute email? I know for a fact that I've lost some mail over the past few days, but no idea why. My account was reaching it's limit but I didn't even get a warning (plus it was reaching it's limit due to 300+ MB of files created by SpamAssissin - nothing to do with my own files!).
|
| | 4 answer | Add comment |
Thursday, 27 July 2006
|
| Need Dedicated servers - NOt USA, NOT UK Jg 21:46:47 |
| | Have a need for 2 W2K3 and 2 SuSE/Fedora/RH/Debian dedicated servers.
Not in USA Not in UK.
ASIA OK.
Maybe anybody can recommend anything?
TIA
|
| | 1 answer | Add comment |
|
| linux-opera does not work after updating linux_base-fc3 to linux_base-fc4 Maxim P. Kondakov 16:31:45 |
| | Good Day, Maintainers.
I have a problem with linux-opera. After updating linux_base-fc3 to linux_base-fc4 linux-opera does not start with the following messages on the screen:
$ linux-opera /usr/X11R6/share/linux-opera/bin/opera: /usr/lib/libc.so.6: version `GLIBC_2.3.4' not found (required by /usr/X11R6/lib/libX11.so.6) /usr/X11R6/share/linux-opera/bin/opera: /usr/lib/libc.so.6: version `GLIBC_2.3' not found (required by /usr/X11R6/lib/libX11.so.6) /usr/X11R6/share/linux-opera/bin/opera: /usr/lib/libc.so.6: version `GLIBC_2.3.2' not found (required by /usr/X11R6/lib/libX11.so.6) /usr/X11R6/share/linux-opera/bin/opera: /usr/lib/libc.so.6: version `GLIBC_2.3.4' not found (required by /usr/X11R6/lib/libXext.so.6) /usr/X11R6/share/linux-opera/bin/opera: /usr/lib/libc.so.6: version `GLIBC_2.3.4' not found (required by /usr/X11R6/lib/libSM.so.6) /usr/X11R6/share/linux-opera/bin/opera: /usr/lib/libc.so.6: version `GLIBC_2.3.4' not found (required by /usr/X11R6/lib/libICE.so.6) /usr/X11R6/share/linux-opera/bin/opera: /usr/lib/libc.so.6: version `GLIBC_2.3' not found (required by /usr/X11R6/lib/libICE.so.6) /usr/X11R6/share/linux-opera/bin/opera: /usr/lib/libc.so.6: version `GLIBC_2.3.4' not found (required by /usr/lib/libz.so.1) $
I can not install default linux_base port due to IGNORE status of it, and can not install linux_base-fc3 back because it was removed from the FreeBSD port collection.
Is there any workaround for this problem? I'm using linux-opera-9.0.20060616_1 and FreeBSD 5.5-RELEASE-p2.
WBR, Maxim Kondakov
|
| | 1 answer | Add comment |
|
| can someone give me a site which offers free dynamical web hosting,such as asp,php,access? Perl Jsp 15:43:01 |
| | can someone give me a site which offers free dynamical web hosting,such as asp,php,access?
|
| | 6 answers | Add comment |
|