[newbie] how to edit /etc/exports

2005-03-03 Thread Gentoo Linux User
pls tell me the way v can edit /etc/exports.  way v can mount it.

ex:- 

my folder is: -  /home/pub/test

how can i mount this folder from another one.

-- 
...
ts!

Preparing today for Linux tomorrow!

http://www.gnu.org/philosophy/can-you-trust.html


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com
Join the Club : http://www.mandrakeclub.com



[newbie] Squirrelmail and dyndns

2005-02-22 Thread linux
Hi all,

I have now setup an account at dyndns.org (nifty!) and I can access the
main page of my home system by going to http://nwyfre.homelinux.org.
That is much more convenient than the cp14---...

But still I have a problem getting to and into Squirrelmail.
Main page displays fine. The link on the page won't work (changed that
hard to http://cp14blahbla). But going to
http://nwyfre.homelinux.org/squirrel also complains: the url is again
changed to http://nwyfre.merlijn/squirrel/ (the local machine), and the
bad gateway message comes up again (code=DNS_HOST_NOT_FOUND). So where
am I going wrong?

The pc is defined in /etc/hosts as
192.168.0.2 nwyfre.merlijnnwyfre

Do I need to change something there, I wonder. It has always been okay
like this, but somehow the name translation now seems to go wrong through
here. Perhaps I need to remove the nwyfre.merlijn entry?

Thanks for all your help and patience.

Paul



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com
Join the Club : http://www.mandrakeclub.com



[newbie] Bad gateway

2005-02-21 Thread linux
Hi everyone,

I have set up squirrelmail on courier-imap at my home PC (Mandrake 10.0).
When I am on the machine things work well, but when I try to load
Squirrelmail from another location, I get the famous message:

Bad Gateway
The following error occurred:
[code=DNS_HOST_NOT_FOUND] The host name was not found during the DNS
lookup. Contact your system administrator if the problem is not found by
retrying the URL.

My setup: I connect to the net through a cable-connect. My provider hands
out an IP-address through DHCP. The provider authenticates through a code
for my PC. When I go to my webserver (http://code) I get the welcome
screen I set up. When I try to load Squirrelmail though
(http://code/squirrel) the Bad Gateway comes up.
This also happens when I try to connect to it directly through the IP
address.

Interestingly enough: when this problem occurs, the URL changes to the
local machine name (nwyfre.merlijn) that I set up at home. And that,
indeed, is not in DNS.

I have checked the settings of the directories, these should be fine:

ls -l /var/www/html
total 32
drwxr-xr-x   2 root root 4096 Aug 14  2004 addon-modules
drwxr-xr-x   2 root root 4096 Feb 15 17:30 images
-rw-r--r--   1 root root  251 Feb 20 22:23 index.php
-rw-r--r--   1 root root  785 Feb 21 09:01 info.php
-rw-r--r--   1 root root  713 Feb 20 22:23 menu.php
drwxr-xr-x   2 root root 4096 Feb 15 17:29 org
drwxr-xr-x  16 root root 4096 Jan 22 04:41 squirrel
-rw-r--r--   1 root root5 Feb 16 21:29 standaard.php

I suspect there is something in Apache that needs tweaking but I am not
too educated with that (yet). Does someone have a pointer or two for me?

Thanks,
Paul



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com
Join the Club : http://www.mandrakeclub.com



[newbie] how to format using xfs file system

2005-02-14 Thread Gentoo Linux User
i need to format a partition from xfs file system. pls help me to do it.

partition /dev/hda9

send me the syntex/command...

-- 
...
ts!

Preparing today for Linux tomorrow!

http://www.gnu.org/philosophy/can-you-trust.html


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com
Join the Club : http://www.mandrakeclub.com



[newbie] installing mandrakelinux

2005-02-11 Thread Gentoo Linux User
AybOwan!

can any body say the way v can install mandrake linux using a network
cdrom/file system/iso (cd-rom connected to a remote computer in the
same network).

pls help me...
-- 
...
ts!

Preparing today for Linux tomorrow!

http://www.gnu.org/philosophy/can-you-trust.html


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com
Join the Club : http://www.mandrakeclub.com



[newbie] installing using network cdrom/iso file(s)

2005-02-10 Thread Gentoo Linux User
AybOwan!

this is my first question to the newbie list.

i have a small network with 1 cdrom. are there any methode to install
mandrakelinux via a network cdrom or iso file(s)
-- 
...
ts!

Preparing today for Linux tomorrow!

http://www.gnu.org/philosophy/can-you-trust.html


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com
Join the Club : http://www.mandrakeclub.com



[newbie] C++ question

2005-01-06 Thread linux
Hi all,
Perhaps this is not the place to ask, but I am getting nowhere searching
the web.
I am trying to learn C++ programming. At my work (for which I need to
learn this) I am futzing with a program which so far works. The machine I
use runs on Tru64 Unix. When I try to compile the same program at home,
the compiler (I use g++ at home) tells me that all kinds of things are
unknown.

The header-files could be the problem, I suspect, but I don't know where
or what. Part of the programcode I wrote:

#include iostream
#include strstream
#include fstream
#include stdlib.h

// ###

void VoegToe(char* foto, int hoog, int breed, char* bestand)
{

cout  Toevoegen...  endl;

ofstream fout(bestand, ios::app);
if (!fout)
{
cout  Er is iets mis!   fout   ??  endl;
return;
}

Of course, the code goes on, but the compiler already tells me that cout
and endl are not defined already. Can someone shed some light on this?
Have I forgotten to install some devel-packages (I have looked at this but
could not find anymore to install.) Or do you need more information?

Thanks for help or pointers,
Paul



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com
Join the Club : http://www.mandrakeclub.com



[newbie] Re: C++ question

2005-01-06 Thread linux
try writing :
using namespace std;
after the headers

This indeed seems to solve my problem. Thank you!

Paul



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com
Join the Club : http://www.mandrakeclub.com



[newbie] Bibus citation software installation?

2004-12-02 Thread John linux-user
I could not set up the Bibus
(http://sourceforge.net/projects/bibus-biblio/) in the
mandrake 10.1 (detail below). Any help will be
appreciated. John  

[EMAIL PROTECTED] Bibus]# python
Python 2.3.4 (#2, Aug 19 2004, 15:49:40)
[GCC 3.4.1 (Mandrakelinux (Alpha 3.4.1-3mdk)] on
linux2
Type help, copyright, credits or license for
more information.


[EMAIL PROTECTED] Bibus]# ./setup.py
/usr/bin/env: python2.2: No such file or directory





__ 
Do you Yahoo!? 
Yahoo! Mail - You care about security. So do we. 
http://promotions.yahoo.com/new_mail


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com
Join the Club : http://www.mandrakeclub.com



[newbie] Scientific Citation Manager software?

2004-11-15 Thread John linux-user
I am wondering if there is a Scientific Citation
Manager software, like EndNote, Reference Manager, 
for Linux. Thanks. 

John




__ 
Do you Yahoo!? 
The all-new My Yahoo! - Get yours free! 
http://my.yahoo.com 
 



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com
Join the Club : http://www.mandrakeclub.com



[newbie] kernel module for ATI CARD?

2004-11-14 Thread John linux-user
Where to get kernel module file for ATI CARD?



__ 
Do you Yahoo!? 
Check out the new Yahoo! Front Page. 
www.yahoo.com 
 



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com
Join the Club : http://www.mandrakeclub.com



[newbie] XF86Config for DELL GX280?

2004-11-04 Thread John linux-user
After installing mandrake 10.1, XFree 4.4 (binaries/Linux-ix86-glibc23/), and fglrx-4.3.0-3.14.1.i386.rpm (ATI driver) in my new computer, DELL GX 280 (detail below), I could not make the display work, no graph interface. Actually, when Xfreee 4.4 was installed only (without fglrx), it was not working, either. If anyone can give me some advice on XF86Config or something like that, I will appreciate it. 
Cheer,
John


1C3826PROCESSOR, 80547, PENTIUM 4 PRESCOTT DT, Pentium 4 Prescott DT, 3.2GHZ, 1 MEGB, 800FSB, SKT-T1R7762INSTRUCTION, DEVIATE-TO-TSMT-MNSTRM1T7422INSTRUCTION, DEVIATE-TO-TSMT-PRFMC15120PCORD, POWER, 125V, 6FT, SPT2, UNSHIELDED16W610KEYBOARD, 104, UNIVERSAL SERIAL BUS, UNITED STATES, RELATIONSHIP PRODUCT GROUP, SILITEK1D1161KIT, MOUSE, UNIVERSAL SERIAL BUS, 2BTN, WHEEL, OPTICAL, PRIMAX ELECTRONICS LTD1T2454DUAL IN-LINE MEMORY MODULE, 1G, 400M, 128X64, 8, 240, 2RX81H5510ASSEMBLY, REMOVABLE MEDIA STORAGE, UNIVERSAL SERIAL BUS, 256M, M-SYSTEMS1W2739KIT, SPEAKER, 120V, SAMSUNG, A215, DELL AMERICAS ORGANIZATION1U5945ASSEMBLY, DIGITAL VIDEO DISK DRIVE, 16X, HALF HEIGHT, HITACHI LG DATA STORAGE, CHASSIS 20011F4991KIT, DOCUMENTATON ON FLOPPY DISK, SOFTWARE, POWERDVD, 5.11X6858COMPACT DISK READ WRITE,
 48X32, IDE (INTEGRATED DRIVE ELECTRONICS), SAMSUNG, CHASSIS 2001, V21K4562CARD (CIRCUIT), MULTI-MEDIA, AUDIO, SB041312Y311DISPLAY, FLAT PANEL DISPLAY, 17, DUAL, 1703FPS, MIDNIGHT GRAY, DELL AMERICAS ORGANIZATION1H3823CARD (CIRCUIT), GRAPHICS, 128, X300, OPGA2, FULL HEIGHT15U692FLOPPY DRIVE, 1.44M, 3.5" FORM FACTOR, 3MD, NO BEZEL, SAMSUNG, CHASSIS 20011U4001HARD DRIVE, 160GB, Serial ATA, 8MB, 7.2K, WD-XL801F4582CARD (CIRCUIT), CONTROLLER, 1394A, PC INTERFACE, ADAPTEC1R2527KIT, SOFTWARE, OVERPACK, WXPPSP1A, COMPACT DISKETTE W/DOCUMENTATION, ENGLAND/ENGLISH__Do You Yahoo!?Tired of spam?  Yahoo! Mail has the best spam protection around http://mail.yahoo.com 

Re: [newbie] Permission denied?

2004-11-03 Thread John linux-user
After login. Thanks.danu kusmana [EMAIL PROTECTED] wrote:
Is it happenned after the login prompt? or when uchange from "normal" user to root?--- John linux-user <[EMAIL PROTECTED]>wrote: I did not know how to get around this permission issue after logging on as SU (root), and it showed up like that: bash: ./**: Permission denied   __ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around  http://mail.yahoo.com    Want to buy your Pack or Services from MandrakeSoft?  Go to http://www.mandrakestore.com Join the Club : http://www.mandrakeclub.com 
 __Do You Yahoo!?Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com Want to buy your Pack or Services from MandrakeSoft? Go to http://www.mandrakestore.comJoin the Club : http://www.mandrakeclub.com
	
		Do you Yahoo!? 
Check out the new Yahoo! Front Page.  www.yahoo.com

[newbie] Permission denied?

2004-11-02 Thread John linux-user
I did not know how to get around this permission issue
after logging on as SU (root), and it showed up like
that:
bash: ./**: Permission denied


__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com
Join the Club : http://www.mandrakeclub.com



Re: [newbie] Permission denied?

2004-11-02 Thread John linux-user
Yes, it was like:
rpm -Uh --force ati_package_name.rpm
Thanks.

John

Derek Jennings [EMAIL PROTECTED] wrote:
On Wednesday 03 November 2004 02:43, John linux-user wrote: I did not know how to get around this permission issue after logging on as SU (root), and it showed up like that: bash: ./**: Permission deniedIs the file executable? (I assume it is not really called ** )chmod +x **derek-- www.jennings.homelinux.nethttp://twiki.mdklinuxfaq.orgWant to buy your Pack or Services from MandrakeSoft? Go to http://www.mandrakestore.comJoin the Club : http://www.mandrakeclub.com
	
		Do you Yahoo!? 
Check out the new Yahoo! Front Page.  www.yahoo.com

Re: [newbie] Big prob: partition table mess

2004-06-03 Thread linux
 What I want to try next is to put the disk-test program on /tmp (if I
 can write to that, have not tried yet) and see if I can make it run. And
 then see what comes out of it. I assume it will be working quite a while
 on a 120Gb disk.

I tried testdisk. It tells me everything is fine where fdisk tells me that
validating the partition table fails.

I then removed the last partition (hda10) and rebooted. Validating with
fdisk told me everything is fine. Then I created a new hda10, 100 blocks
smaller than the previous one. Reboot. fdisk validate says all is fine. I
reboot into MDK 9.1 and the disk read fail-messages start flying all over
the place again...

I am now quickly running out of options of a less radical incling...

Paul




Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com
Join the Club : http://www.mandrakeclub.com



Re: [newbie] Big prob: partition table mess

2004-06-03 Thread linux
I started installing MDK 10.

Turned out that the problem was in the root partition...




Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com
Join the Club : http://www.mandrakeclub.com



[newbie] MDK 10 runs, no Inet connect

2004-06-03 Thread linux
Hi all,

I have mdk10 running on the machine now. Most things look okay (although
as user I can't run OpenOffice install, but I saw a thread on that).

Problem I face now: in gkrellm I see that there is an internet connect
running. ifconfig tells me there is an IP address from DHCP, but I can't
get on the net.
Resolv.conf is created and looks fine, but nothing works. Not even a ping?

Help?




Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com
Join the Club : http://www.mandrakeclub.com



Re: [newbie] Big prob: partition table mess

2004-06-02 Thread linux
 Hi Paul,
 There is a utility called TestDisk that can analyze and repear disk
 partitions tables:
 http://www.cgsecurity.org/index.html?testdisk.html

Okay, I ran testdisk, and it told me that everything is all fine and
wonderful. Only thing it told me was that the MDK rescue CD did not have
the regular partition table marker.
I then let it write a new MBR and rebooted... to see some DELL utility
that allows me to install win- don't mention it. Rebooted with the CD,
rewrote LILO and rebooted. And the problem persists...

Next thing I will try (but not today) is remove the last partition on the
disk and reboot. I'll see what gives then.

I'll keep you posted!
Paul




Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com
Join the Club : http://www.mandrakeclub.com



[newbie] Big prob: partition table mess

2004-05-31 Thread linux
Hi all,

I rebooted the linux box this evening, for the sound had gone.
At loading linux, I saw tons of messages ldm_validat_partition_table: disk
read failed.

After going into rescue with CD 1 (mdk 9.1 here), I could mount all
partitions, but validating the partition table with fdisk showed that
there were about 200 blocks more allocated than the disk can hold.

Anyone have an idea how I can repair this without destroying the entire
system?

I am at a loss at the moment. And webmail on an old machine is not my
preference.

Thanks
Paul




Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com
Join the Club : http://www.mandrakeclub.com



Re: [newbie] Big prob: partition table mess

2004-05-31 Thread linux
 There is a utility called TestDisk that can analyze and repear disk
 partitions tables:
 http://www.cgsecurity.org/index.html?testdisk.html

Hi Asa,

thanks for the tip. I'll check it out.

Paul





Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com
Join the Club : http://www.mandrakeclub.com



[newbie] Kernel includes path in version 9.2

2004-03-20 Thread linux
Hi,

In Mandrake 9.1 the path the linux source code includes was
/usr/src/linux/include. Now that I upgraded to version 9.2 I cannot find
these includes.

Where can I find these now in 9.2 ?

I appreciate your assistant, all.

Cheers,

Mazen



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com

Join the Club : http://www.mandrakeclub.com


[newbie] Mac - Mandrake at the CLI

2004-03-11 Thread Brian's Linux Box
Hello All,

 I need to transfer some files that I downloaded on my Mandrake
Box to 
my Mac. I am running samba on both machines, so they can see
each other on the network. The problem I am having is, when I
open nautilus on my mandrake box and browse to the share on my
mac, the program stalls out. 
I was wondering if there was a way to transfer files over my
local network from one machine to the next using the trusty
command line.

Thanks,

-=Thinker
Sure - Assuming OSX since you said samba - use 'scp' 
Requires you have ssh installed on your Mandrake machine.  You'll have
to turn it on in the Mac sharing preference pane.
Then from the Mandrake box type (all one line)
scp
[EMAIL PROTECTED]:/Users/mac_user_name/Documents/fileyouwant
/home/mandrake_user_name/Desktop 

adjust the /path/to/file name as required
Use scp -r to transfer recursively

HTH
Brian

PS  You could try using Konqueror instead of Nautilis.


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


[newbie] cpuinfo

2004-02-24 Thread Brian's Linux Box
Does cpuinfo show  the actual cpu MHz that the cpu is running at
or does it 
only show what it is rated at ?

I'm pretty sure it shows what it is running at  When I overclocked
my XP2500 it reported it as an XP3200
I also _think_ you want the and 7.5 setting as there is some doubling
goes on there somewhere.  I can dig out my manual if required.  I gather
that's the way it's set now?
Brian

Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [newbie] strangness with PPP modem

2004-01-24 Thread Linux
On Fri, 23 Jan 2004 20:21:24 +1300
John Rye [EMAIL PROTECTED] wrote the words:

some snippage...

  Well, I might dare to say that after changing my /etc/ppp/options
  file to what you have in yours it seems that I am staying connected
  a bit longer, but still not for very long.  Also increased all the
  wait times in KPPP.
  
  What exactly does this line 'lcp-max-configure 45' do?  Can anyone
  translate?
 
 Take look at the pppd daemon manual page (type 'man pppd' in a
 terminal without the quotes) for the full description.

Actually I did read it, I just didn't understand it.  =)

 Cranking the value of ipc-max-configure beyond about 45 is probably a
 bit pointless - it's there to increase the time available for
 authentication with your ISP..

Ah, well that is a lot better of an explanation than the man page had. 
Yea, that isn't going to help me at all.

  
  I tried setting it to 145 and it seemed to time out faster.  I'm
  going to try different values  see what happens.  Also try the
  google thingy.
 
 Ok - looking back I see I mis-read the error message being returned -
 It's 16 not 19 - this means your own modem is hanging up before the
 connection is established.
 
 As far as I can see there is nothing in the pppd options to control
 this time, but there is in the kppp setup.
 
 Go to kppp - Setup - Device and increase the Modem Timeout value to
 it's maximum (which I think is 120 seconds), see if that helps any.
 
 If that doesn't improve things your next option is to start fiddling
 with the S-registers of your modem. This is very modem specific and
 will depend on your particular modem AND whether you have the
 documentation for it's command set.

I don't even know what a S-register is, and I got no documentation for
the modem.  I emailed the company for a data sheet, but they are
ignoring me.

 I'm afraid that if you go this path you're pretty much on your own ...
 :-))
 
 Try this out and see what happens. You might also be able, if you're
 ready adventurous, to increase the modem timeout value in kppprc if
 120 seconds is still not enough - it's something I haven't tried - if
 I haven't connected within 2 minutes I tend to try again later on the
 assuption that the ISP's portals are overloaded.
 
 Cheers
 
 John
 
I've cranked up every setting in sight.  I think I'm going to have to
accept that this modem doesn't like Linux and either live with it or get
a new modem.

Thanks for the comments.

Adrian


-- 
 
   On The Fly Photography
 http://204EastSouth.com
 
 -BEGIN GEEK CODE BLOCK-
   Version: 3.12
 GAT d-@ s: a C++ UL++ L++(+++) P E- W++ !N o? K- w--- M+ PS+++ 
 PE+++ Y+ PGP t++@ 5+++ X++ R+@ tv-- b++ DI D+ G e+ h+ r y++
 --END GEEK CODE BLOCK--

Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [newbie] strangness with PPP modem

2004-01-20 Thread Linux
On Mon, 19 Jan 2004 09:22:27 -0700
Linux [EMAIL PROTECTED] wrote the words:

 On Mon, 19 Jan 2004 18:39:42 +1300
 John Rye [EMAIL PROTECTED] wrote the words:
 
  On Sun, 18 Jan 2004 20:16:45 -0700
  Linux [EMAIL PROTECTED] wrote:
  
   Can anyone offer insight into this situation:
   
   I am using MDK 9.1 and have an external modem on ttyS0 (com 1).
   
   1. With KPPP I can connect as the user, but I keep losing my
   connection and it returns an error code 16 (the modem hung up).
   
   I don't have any hang up problems under windows98, it works just
   fine there.
   
   2. With wvdial I can only connect as root.  I also get hangups and
   error code 16.  When connected with wvdial as root I can not see
   the connection as the user.  Example, Mozilla can not connect to
   internet even tho the connection is active.
   
   3. When I try to connect with wvdial as user I get can not open
   /dev/modem.  device or resource busy even tho it is clearly not
   busy. As stated, KPPP can find and access the modem just fine.
   
   file/device attributes:
   
   /dev/modem
   lrwxrwxrwx1   rootroot/dev/modem - ttyS0
   
   /dev/ttyS0
   crw-rw1   skippi  tty 
   
   
   'skippi' is my user account.  I'm not sure why ttyS0 is owned by
   skippi and not root.  Maybe that is part of the problem?
   
   Any ideas or suggestions?  Other things I should check?  Thank
   you. Adrian
  
  Adrian, try editing (as root) your /etc/ppp/options to the
  following:
  
  # /etc/ppp/options
  lock
  debug
  crtscts
  noauth
  defaultroute
  lcp-max-configure 45
  ipcp-accept-local
  ipcp-accept-remote
  idle 600
  # eof
  
  The line beginning icp-max- is the one which reduced my error 16
  hangups.
  
  My other suggestion is to copy wvdials' recommended init string into
  kppp and to increase the 'guard time' (in modem commands panel) to
  maximum (255).
  
  Increasing the other timeouts in the kppp config panels may also
  help.
  
  Cheers
  
  John
  (now if only I could get my pcmcia modem to work )
 
 
 Hmm, thank you.  I will give these things a try and see what happens.
 This problem is driving me totally nuts.  
 
 Adrian


Well, I might dare to say that after changing my /etc/ppp/options file
to what you have in yours it seems that I am staying connected a bit
longer, but still not for very long.  Also increased all the wait times
in KPPP.

What exactly does this line 'lcp-max-configure 45' do?  Can anyone
translate?

I tried setting it to 145 and it seemed to time out faster.  I'm going
to try different values  see what happens.  Also try the google thingy.

Adrian

-- 
 
   On The Fly Photography
 http://204EastSouth.com
 
 -BEGIN GEEK CODE BLOCK-
   Version: 3.12
 GAT d-@ s: a C++ UL++ L++(+++) P E- W++ !N o? K- w--- M+ PS+++ 
 PE+++ Y+ PGP t++@ 5+++ X++ R+@ tv-- b++ DI D+ G e+ h+ r y++
 --END GEEK CODE BLOCK--

Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [newbie] strangness with PPP modem

2004-01-19 Thread Linux
On Mon, 19 Jan 2004 18:39:42 +1300
John Rye [EMAIL PROTECTED] wrote the words:

 On Sun, 18 Jan 2004 20:16:45 -0700
 Linux [EMAIL PROTECTED] wrote:
 
  Can anyone offer insight into this situation:
  
  I am using MDK 9.1 and have an external modem on ttyS0 (com 1).
  
  1. With KPPP I can connect as the user, but I keep losing my
  connection and it returns an error code 16 (the modem hung up).
  
  I don't have any hang up problems under windows98, it works just
  fine there.
  
  2. With wvdial I can only connect as root.  I also get hangups and
  error code 16.  When connected with wvdial as root I can not see
  the connection as the user.  Example, Mozilla can not connect to
  internet even tho the connection is active.
  
  3. When I try to connect with wvdial as user I get can not open
  /dev/modem.  device or resource busy even tho it is clearly not
  busy. As stated, KPPP can find and access the modem just fine.
  
  file/device attributes:
  
  /dev/modem
  lrwxrwxrwx  1   rootroot/dev/modem - ttyS0
  
  /dev/ttyS0
  crw-rw  1   skippi  tty 
  
  
  'skippi' is my user account.  I'm not sure why ttyS0 is owned by
  skippi and not root.  Maybe that is part of the problem?
  
  Any ideas or suggestions?  Other things I should check?  Thank you.
  Adrian
 
 Adrian, try editing (as root) your /etc/ppp/options to the following:
 
 # /etc/ppp/options
 lock
 debug
 crtscts
 noauth
 defaultroute
 lcp-max-configure 45
 ipcp-accept-local
 ipcp-accept-remote
 idle 600
 # eof
 
 The line beginning icp-max- is the one which reduced my error 16
 hangups.
 
 My other suggestion is to copy wvdials' recommended init string into
 kppp and to increase the 'guard time' (in modem commands panel) to
 maximum (255).
 
 Increasing the other timeouts in the kppp config panels may also help.
 
 Cheers
 
 John
 (now if only I could get my pcmcia modem to work )


Hmm, thank you.  I will give these things a try and see what happens.
This problem is driving me totally nuts.  

Adrian

-- 
 
   On The Fly Photography
 http://204EastSouth.com
 
 -BEGIN GEEK CODE BLOCK-
   Version: 3.12
 GAT d-@ s: a C++ UL++ L++(+++) P E- W++ !N o? K- w--- M+ PS+++ 
 PE+++ Y+ PGP t++@ 5+++ X++ R+@ tv-- b++ DI D+ G e+ h+ r y++
 --END GEEK CODE BLOCK--


-- 
 
   On The Fly Photography
 http://204EastSouth.com
 
 -BEGIN GEEK CODE BLOCK-
   Version: 3.12
 GAT d-@ s: a C++ UL++ L++(+++) P E- W++ !N o? K- w--- M+ PS+++ 
 PE+++ Y+ PGP t++@ 5+++ X++ R+@ tv-- b++ DI D+ G e+ h+ r y++
 --END GEEK CODE BLOCK--

Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


[newbie] OT maybe - a ? about GQView

2004-01-19 Thread Linux
So, maybe it's just me..  But I seem to remember that GQView use to be
able to read a bz2 file, such as filename.tif.bz2, generate thumbnails
for them, and display them (back in the MDK 7.2 days).  Yet now it
doesn't do this. Is my memory wrong?  Or has this feature been removed? 
I can see bz2 files in the file list, but GQView showes them as unknown
format.

Thanks
Adrian

-- 
 
   On The Fly Photography
 http://204EastSouth.com
 
 -BEGIN GEEK CODE BLOCK-
   Version: 3.12
 GAT d-@ s: a C++ UL++ L++(+++) P E- W++ !N o? K- w--- M+ PS+++ 
 PE+++ Y+ PGP t++@ 5+++ X++ R+@ tv-- b++ DI D+ G e+ h+ r y++
 --END GEEK CODE BLOCK--

Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


[newbie] changing the login manager

2004-01-09 Thread Linux
Greetings.

What file should I edit to change the login manager?  Mandrake control
center does not work.  It can't find my cd drive, so will not actually
do anything.

Thanks much
Adrian

-- 
 
   On The Fly Photography
 http://204EastSouth.com
 
 -BEGIN GEEK CODE BLOCK-
   Version: 3.12
 GAT d-@ s: a C++ UL++ L++(+++) P E- W++ !N o? K- w--- M+ PS+++ 
 PE+++ Y+ PGP t++@ 5+++ X++ R+@ tv-- b++ DI D+ G e+ h+ r y++
 --END GEEK CODE BLOCK--

Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [newbie] no sound in 9.1

2003-12-23 Thread Linux
On Mon, 22 Dec 2003 12:40:32 -0800
[EMAIL PROTECTED] wrote the words:

 
 
 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] Behalf Of Frans Ketelaars
 Sent: Monday, December 22, 2003 2:09 PM
 To: [EMAIL PROTECTED]
 Subject: Re: [newbie] no sound in 9.1
 
 
 On Saturday 20 December 2003 14:18, Linux wrote:
  My computer is silent
 
 
  The mobo is an Intel D865GBF (www.intel.com/design/motherbd/bf).  I
  am using the onboard sound.
 
  It works fine under Windows98SE.
 
  I use Enlightenment, and I can enable sounds under E, but I don't
  hear anything.  I can also see that esd is running if I run top or
  kpm.
 
  Yes I have turned up the volume in Kmix, and Aumix and alsamixer.
 
  Yes I have run the configuration tool in Drake Configure.
 
  Below are various commands and their outputs.
 
  lspcidrake -v | fgrep AUDIO:
  snd-intel8x0: Intel Corp.|82801EB AC'97 Audio [MULTIMEDIA_AUDIO]
  (vendor:8086 device:24d5 subv:8086 subd:e001)
 
  grep sound-slot /etc/modules.conf:
  alias sound-slot-0 snd-intel8x0
 
  /sbin/lsmod:
  Module  Size  Used byNot tainted
  sg 34636   0  (autoclean)
  parport_pc 25096   1  (autoclean)
  lp  8096   0  (autoclean)
  parport34176   1  (autoclean) [parport_pc lp]
  agpgart40896   6  (autoclean)
  snd-seq-oss31104   0  (unused)
  snd-seq-midi-event  5640   0  [snd-seq-oss]
  snd-seq42608   2  [snd-seq-oss snd-seq-midi-event]
  snd-pcm-oss43556   1
  snd-mixer-oss  14488   0  [snd-pcm-oss]
  snd-intel8x0   21988   1
  snd-ac97-codec 40160   0  [snd-intel8x0]
  snd-pcm77536   0  [snd-pcm-oss snd-intel8x0]
  snd-timer  18376   0  [snd-seq snd-pcm]
  snd-mpu401-uart 4396   0  [snd-intel8x0]
  snd-rawmidi17600   0  [snd-mpu401-uart]
  snd-seq-device  5832   0  [snd-seq-oss snd-seq snd-rawmidi]
  snd-page-alloc  7732   0  [snd-intel8x0 snd-pcm]
  snd40868   0  [snd-seq-oss snd-seq-midi-event
  snd-seq snd-pcm-oss snd-mixer-oss snd-intel8x0 snd-ac97-codec
  snd-pcm snd-timer snd-mpu401-uart snd-rawmidi snd-seq-device]
  soundcore
   6276   0  [snd] ppp_async   9216   0  (unused)
  ppp_generic24060   0  [ppp_async]
  slhc6564   0  [ppp_generic]
  af_packet  14952   0  (autoclean)
  e100   56964   1  (autoclean)
  supermount 15296   4  (autoclean)
  ide-cd 33856   0
  cdrom  31648   0  [ide-cd]
  ide-scsi   11280   0
  ehci-hcd   18568   0  (unused)
  usb-uhci   24652   0  (unused)
  usbcore72992   1  [ehci-hcd usb-uhci]
  rtc 8060   0  (autoclean)
  reiserfs  175120   2
  sd_mod 11548   0  (unused)
  aic7xxx   120860   0  (unused)
  scsi_mod   91796   4  [sg ide-scsi sd_mod aic7xxx]
 
  /sbin/chkconfig --list sound:
  sound   0:off   1:off   2:on3:on4:on5:on
 6:off
 
  /sbin/chkconfig --list alsa:
  alsa0:off   1:off   2:on3:on4:on5:on
 6:off
 
  /sbin/chkconfig --list alsa:
  vol 100, 100, P
  pcm 100, 100
  speaker 100, 100
  line 100, 100, P
  mic 100, 100, R
  cd 100, 100, P
  igain 100, 100
  line1 100, 100, P
  phin 100, 100, P
  video 100, 100, P
 
 
  /sbin/fuser -v /dev/dsp:
   USERPID ACCESS COMMAND
  /dev/dsp skippi 1841 f  wavplay
 
 It seems /dev/dsp is used by wavplay. Wavplay is part of xcdroast 
 according to 'urpmf wavplay'.

So you are correct.  I checked this again and nothing is using /dev/dsp.
 I must have had XCDroast running at the time.  I fired up XMMS and then
it showed that XMMS is using /dev/dsp.

 
  Any thoughts??  Thank you very much.
  Adrian
 
 Well it's a late reply and probably not very helpful but at least your
 soundcard is detected and the ALSA drivers are loaded. How about 
 logging in to KDE to test sound? Also, do applications 'appear' to 
 play, like a moving progress indicator?

I will take late replies.  That's better than none.  =)  Ok,
applications do appear to be playing.  Right now XMMS is playing a song.
 The progress indicator is moving along, the EQ lights are bouncing up
and down.  Everything looks good  right.  Just no sound.

I logged in to KDE, no love there either.  Also nothing from the command
line, such as 'play filename.wav'.

 
 Good luck!
 
 -Frans
 
 I mean no offense cause I have done this, did you check which jack you
 plugged into on the sound card? Most of them will want the green
 colored port. I Have also noticed that in some cards the pcm will stop
 sound if turned up to 100. Try shutting down also igain seperately and
 line and line1 while something is trying to play sound. HTH

[newbie] no sound in 9.1

2003-12-20 Thread Linux
My computer is silent


The mobo is an Intel D865GBF (www.intel.com/design/motherbd/bf).  I am
using the onboard sound.  

It works fine under Windows98SE.

I use Enlightenment, and I can enable sounds under E, but I don't hear
anything.  I can also see that esd is running if I run top or kpm.

Yes I have turned up the volume in Kmix, and Aumix and alsamixer.

Yes I have run the configuration tool in Drake Configure.

Below are various commands and their outputs.

lspcidrake -v | fgrep AUDIO:
snd-intel8x0: Intel Corp.|82801EB AC'97 Audio [MULTIMEDIA_AUDIO]
(vendor:8086 device:24d5 subv:8086 subd:e001)

grep sound-slot /etc/modules.conf:
alias sound-slot-0 snd-intel8x0

/sbin/lsmod:
Module  Size  Used byNot tainted
sg 34636   0  (autoclean)
parport_pc 25096   1  (autoclean)
lp  8096   0  (autoclean)
parport34176   1  (autoclean) [parport_pc lp]
agpgart40896   6  (autoclean)
snd-seq-oss31104   0  (unused)
snd-seq-midi-event  5640   0  [snd-seq-oss]
snd-seq42608   2  [snd-seq-oss snd-seq-midi-event]
snd-pcm-oss43556   1 
snd-mixer-oss  14488   0  [snd-pcm-oss]
snd-intel8x0   21988   1 
snd-ac97-codec 40160   0  [snd-intel8x0]
snd-pcm77536   0  [snd-pcm-oss snd-intel8x0]
snd-timer  18376   0  [snd-seq snd-pcm]
snd-mpu401-uart 4396   0  [snd-intel8x0]
snd-rawmidi17600   0  [snd-mpu401-uart]
snd-seq-device  5832   0  [snd-seq-oss snd-seq snd-rawmidi]
snd-page-alloc  7732   0  [snd-intel8x0 snd-pcm]
snd40868   0  [snd-seq-oss snd-seq-midi-event
snd-seq snd-pcm-oss snd-mixer-oss snd-intel8x0 snd-ac97-codec snd-pcm
snd-timer snd-mpu401-uart snd-rawmidi snd-seq-device] soundcore 
 6276   0  [snd] ppp_async   9216   0  (unused)
ppp_generic24060   0  [ppp_async]
slhc6564   0  [ppp_generic]
af_packet  14952   0  (autoclean)
e100   56964   1  (autoclean)
supermount 15296   4  (autoclean)
ide-cd 33856   0 
cdrom  31648   0  [ide-cd]
ide-scsi   11280   0 
ehci-hcd   18568   0  (unused)
usb-uhci   24652   0  (unused)
usbcore72992   1  [ehci-hcd usb-uhci]
rtc 8060   0  (autoclean)
reiserfs  175120   2 
sd_mod 11548   0  (unused)
aic7xxx   120860   0  (unused)
scsi_mod   91796   4  [sg ide-scsi sd_mod aic7xxx]

/sbin/chkconfig --list sound:
sound   0:off   1:off   2:on3:on4:on5:on6:off

/sbin/chkconfig --list alsa:
alsa0:off   1:off   2:on3:on4:on5:on6:off

/sbin/chkconfig --list alsa:
vol 100, 100, P
pcm 100, 100
speaker 100, 100
line 100, 100, P
mic 100, 100, R
cd 100, 100, P
igain 100, 100
line1 100, 100, P
phin 100, 100, P
video 100, 100, P


/sbin/fuser -v /dev/dsp:
 USERPID ACCESS COMMAND
/dev/dsp skippi 1841 f  wavplay



Any thoughts??  Thank you very much.  
Adrian

-- 
 
   On The Fly Photography
 http://204EastSouth.com
 
 -BEGIN GEEK CODE BLOCK-
   Version: 3.12
 GAT d-@ s: a C++ UL++ L++(+++) P E- W++ !N o? K- w--- M+ PS+++ 
 PE+++ Y+ PGP t++@ 5+++ X++ R+@ tv-- b++ DI D+ G e+ h+ r y++
 --END GEEK CODE BLOCK--

Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


[newbie] nForce and Mandrake 9.2 RPM error

2003-12-18 Thread linux
I'm getting the following error
/usr/lib/rpm/rpmb: Permission denied

when I try to run the following
rpm --rebuild nforce NVIDIA_nforce-1.0-0261.src.rpm

I am running this as root.

Does it matter where the rpm is located when I'm running the rebuild?

Clean install of MandrakeLinux 9.2 Download Edition
I installed with the onboard Auido and NIC disabled and have yet to enable
them. This is my second install of 9.2, the first time I had the Audio and
NIC enabled. Any help would be greatly appreciated.

The rpm is the source rpm downloaded from the nvidia web site.



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


[newbie] xmms won't play songs consecutively

2003-11-22 Thread David-Linux


After googling all morning, I still haven't found anything on this.  

Xmms works fine as far as playing a file.  The problem comes when I try to 
play a playlist or a directory.  When I try to play a playlist or a directory, the 
whole directory/playlist will load correctly, but when a song finishes, the next song 
will not play.  I must either highlight another song and click play(or double-click) 
or I must click the 'next track' button.  Anyone have any idea what's going on?  

TIA

=
David Steiner
www.DavidLSteiner.com
Proud Linux User #262493
=

Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


RE: [newbie] Needed file

2003-11-16 Thread Dave-Linux



Whenever you need some particular file like this, go to
http://rpmfind.net/, and type in the exact file name.  You will get a
page listing rpms (usually compatible with most/all architectures and
distros) containing the file.  


For your convenience:
http://ftp2.wss.yale.edu/rpm2html/libXm.so.3.html



HTH
Dave




-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of David E. Fox
Sent: Sunday, November 16, 2003 1:03 PM
To: [EMAIL PROTECTED]
Subject: Re: [newbie] Needed file


 
 I tried installing a program using an rpm for 9.1 (which I am running)
 but it says I am missing a file libXm.so.3 I did a search and came up
empty.

That's Motif. Per urpmf libXm it's provided by lesstif, so install
that. But here (9.2 cooker) I only see libXm.so.2. 

Currently (per rpm -qa | grep lesstif) I see:

[EMAIL PROTECTED] root]# rpm -qa | grep lesstif lesstif-0.93.49-3mdk

 Russ


David E. Fox  Thanks for letting me
[EMAIL PROTECTED]change magnetic patterns
[EMAIL PROTECTED]   on your hard disk.
---



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


RE: [newbie] Permissions solution

2003-10-15 Thread linux
Apparently, when you create a FAT32 partition during installation
Linux mounts the partition as readonly. Or more specifically, 
doesn't give permissions for any other user.  This makes sense.
Editing the appropriate line in /etc/fstab adding my userid with
rw permissions, un-mounting, and then remounting seemed to do the
trick.

I'm now copying over all my backed up mp3s from CDs to /mp3s.

Regards,



-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of H.J.Bathoorn
Sent: Wednesday, October 15, 2003 2:22 AM
To: [EMAIL PROTECTED]
Subject: Re: [newbie] Permissions solution


On Wednesday 15 October 2003 03:41, [EMAIL PROTECTED] wrote:
 Carroll,

 The problem is solved.  As far as the reply setting goes, it is blank.

How did you solve that? 
Was it the mounting permissions?

Good luck,
HarM
-- 
Mandrake HowTo's  more: http://twiki.mdklinuxfaq.org





Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


RE: [newbie] Telewest broadband connection - nogo

2003-10-15 Thread linux
 Gave him a cup of coffee, said watch me do it, and yell whoa if you think
 I'll break something.

LOL.  That's great.  When I was setting up 9.1 with my cable service it
was really simple.  I used Comcast and all I needed was the hostname that
Comcast needed to 'see' on my system.  During installation, I selected
DHCP, popped in my hostname and everything has been good to go.

You don't need the proprietary software (in most cases at least) that the
cable company wants to install.  Usually all it is is their custom version
of IE and a bunch of links to go on your desktop. All Windows crap really.

Anyhow, as mentioned you really only need to know how the cable company
authenticates your modem, DHCP or static IP, and probably a hostname.

YMMV,

-A

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of H.J.Bathoorn
Sent: Wednesday, October 15, 2003 10:03 AM
To: [EMAIL PROTECTED]
Subject: Re: [newbie] Telewest broadband connection - nogo


On Wednesday 15 October 2003 15:00, Ronald J. Hall wrote:
 On Wednesday 15 October 2003 05:49 am, Len Lawrence wrote:
  Can anybody tell me just what information would be required for a
  simple standalone setup?  And is it true that the cable modem can only
  be initialized by proprietary software?

 I went thru something like this when I hooked up with Charter. I simply
 told the tech that I was willing to sign to the effect that I took all
 responsibility for getting the Ambit modem working with my setup. He
called
 his supervisor and that was good enough for them.

  I have perused various HOWTOs without seeing exactly what kind of
  information is needed.  IP addresses of course.  Presumably I could
  badger Telewest to give me those in written form, but what else?  The
  dialup connection was simple to configure because Demon provided all
  the relevant parameters.

 Hmm, once they provisioned my cable modem, all it took was a simple (as
 root):

 ifdown eth0

 then

 ifup eth0

 and it acquired everything that was needed.

 I'm assuming that service network restart would do the same thing.

 Keep us informed as to how it goes! :-)

 PS This link may help some:

 http://www.tldp.org/HOWTO/Cable-Modem/
Happened likewise here.

There was sheer panic in the eyes of the guy who came to install when he saw
it was Linux;)
Gave him a cup of coffee, said watch me do it, and yell whoa if you think
I'll break something.
He was stunned that I had it up and running before he'd even had a chance to
sip his coffee.

Good luck,
HarM
--
Registered Linux User #197998
FSF Associate Member #901
ICQ #146191606
Mandrake HowTo's  more: http://twiki.mdklinuxfaq.org





Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


RE: [newbie] Good Article on Linux Filesystems

2003-10-14 Thread linux
I think that article would serve well to be in Twiki. Just
be sure to get the author's permission before pushing it
to a PDF.  I would recommend putting it up in it's original
form if the author will allow it.  Rewritting it will surely
take away from it's original clarity and easy read.

Just my thoughts.

-A

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Eric Huff
Sent: Tuesday, October 14, 2003 10:02 AM
To: [EMAIL PROTECTED]
Subject: Re: [newbie] Good Article on Linux Filesystems


   Excellent article!  Do you think a link should be put on Twiki
   for it?
 
  If you think it's a good article, then sure, put it on the wiki!
 
  I would suggest going to
 
http://mandrake.vmlinuz.ca/bin/view/Main/InstallationAndSystemConfiguration
  and adding the link.  Or, add a page if you have more you want
  to add.

 Gonna make me do it, eh? :-)

Sorry, just trying to get people used to the idea :)

Regarding links being broken, Maybe we should just print it to pdf
and include the file on the twiki, giving proper credit and reason
for pdf'ing it?

If that's what people want, i'll be happy to do it.  (it'll be my
1st time attaching a file in wiki...)

Or, i guess we could save the html?  What are the legal issues with
this sort of thing?

eric

--
Mandrake HowTo's  More:  http://twiki.mdklinuxfaq.org



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


RE: [newbie] And the beat goes on...

2003-10-14 Thread linux
I never believe anything that comes from the register.. but
that's just me.

-A

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of John Wilson
Sent: Tuesday, October 14, 2003 4:17 PM
To: [EMAIL PROTECTED]
Subject: Re: [newbie] And the beat goes on...


On October 14, 2003 12:56 pm, Ronald J. Hall wrote:
 Poor, poor, Microsloth... ;-)

 http://linuxtoday.com/news_story.php3?ltsn=2003-10-14-019-26-NW-MS-PB

We'll have to see exactly what it is that Isreal will do here.  The news is
definitely encouraging.

The responses to a post on the site are not, however.  Do we really take
ourselves so seriously that what is either an obvious troll or just someone
trying, without much success, to be ironic, needs to be answered by many
self
evident posts, justifications and flames?

Hey folks!  Lighten up!  If it's a troll, ignore it.  Answering trolls only
encourages them.  Ditto if it's a rotten attempt to be ironic.

ttfn

John



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


[newbie] Permissions solution

2003-10-14 Thread linux
Anyone having any ideas as to how I can get my user account
to the point of being able to read and write the /mp3s
partition?  Surely there's a solution.

Thanks!!

-A

Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


RE: [newbie] Permissions solution

2003-10-14 Thread linux
(Man, half the e-Mails I'm getting today are bounces from
the list.  Sheesh.  Some of these people prob. need to be
unsub'd)

Yea, if you haven't followed the latest banter on the list,
I have been trying to get my user account to be able to 
access (read/write) to a directory /mp3s.  I created
a FAT32 partition during 9.1 installation that is called
/mp3s which will be used by Linux and Windows. I'm unable
to access this directory.

-A

-Original Message-
From: H.J.Bathoorn [mailto:[EMAIL PROTECTED]
Sent: Tuesday, October 14, 2003 4:24 PM
To: [EMAIL PROTECTED]
Subject: Re: [newbie] Permissions solution


On Tuesday 14 October 2003 23:22, [EMAIL PROTECTED] wrote:
 Anyone having any ideas as to how I can get my user account
 to the point of being able to read and write the /mp3s
 partition?  Surely there's a solution.

 Thanks!!

 -A

Huhh? You got a /mp3 partition??

Good luck,
HarM
-- 
Mandrake HowTo's  more: http://twiki.mdklinuxfaq.org



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


RE: [newbie] Permissions solution

2003-10-14 Thread linux
Sure thing Eric.. I delete them as soon as they arrive,
but this message should bring forth many more.  I'll 
send one a non-sms one on.

-A

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Eric Huff
Sent: Tuesday, October 14, 2003 5:06 PM
To: [EMAIL PROTECTED]
Subject: Re: [newbie] Permissions solution


 (Man, half the e-Mails I'm getting today are bounces from
 the list.  Sheesh.  Some of these people prob. need to be
 unsub'd)

The only ones i saw were the sms ones (which should have stopped
now).

Would you mind forwarding a bounce to me (headers and all) ?

thanks,
eric

-- 
Mandrake HowTo's  More:  http://twiki.mdklinuxfaq.org



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


RE: [newbie] Permissions solution

2003-10-14 Thread linux
Aight, but what does this do. Specifically the codepage on
to the end of the line part.

-A

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Derek Jennings
Sent: Tuesday, October 14, 2003 5:02 PM
To: newbie
Subject: Re: [newbie] Permissions solution


On Tuesday 14 Oct 2003 10:44 pm, [EMAIL PROTECTED] wrote:
 (Man, half the e-Mails I'm getting today are bounces from
 the list.  Sheesh.  Some of these people prob. need to be
 unsub'd)

 Yea, if you haven't followed the latest banter on the list,
 I have been trying to get my user account to be able to
 access (read/write) to a directory /mp3s.  I created
 a FAT32 partition during 9.1 installation that is called
 /mp3s which will be used by Linux and Windows. I'm unable
 to access this directory.

 -A
Set the options in the  /etc/fstab entry for the partition to 
iocharset=iso8859-15,codepage=850,quiet,umask=0

derek

-- 
--
www.jennings.homelinux.net
http://twiki.mdklinuxfaq.org




Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [newbie] MSN old protocol with stop on Oct 15th

2003-09-03 Thread linux
or simpley use the new kopete(still under construction, but will be released 
soon) wich supports the msn protocol:
http://www.hypothetic.org/docs/msn/index.php

what's the news EULA?

r.

Zitat von Inhabitant of Zion [EMAIL PROTECTED]:

 After that you have to sign the new EULA or have your access barred
 apparently.
 
 Which is nice. 
 
 -- 
 John Willby
 Registered Linux user number 321644
 MSN: [EMAIL PROTECTED]
 ICQ: 92791912
 YIM: vicarofwibley
 Linux is like a wigwam - No Gates, no Windows, Apache inside.
 07:26:31 up 21:01,  3 users,  load average: 0.03, 0.01, 0.00
 




Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [newbie] MSN old protocol with stop on Oct 15th

2003-09-03 Thread linux
 Basically the new protocol will only work, even with the new Kopete, up
 until the 15th Oct, then you have to agree to the Microsoft
 License (EULA) or your account will be closed. 

more information bout eula:
http://zdnet.com.com/2100-1104_2-5066412.html

BUT: kopete will be able to run AFTER 15th of Oct, cause you can sign the eula 
in kopete.(information from a worker in my company. he read this on www.kde.
org/kopete
he said it will be version 0.8 of kopete. i didnt found something, i've to trust 
him ;)

 I think its going to spell trouble for them as I know there are people who
 are consulting laywers over this (seriously!).

doesnt matter :) nothing can be totaly sure of hacking. the hack only takes more 
time ;) and if msn wont work anymore, most of the people will use another 
instant messenger. like icq.

remo

Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


[newbie] Torvalds feat. Colifornia

2003-09-03 Thread linux
http://newsforge.com/newsforge/03/08/25/1910248.shtml?tid=16

Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [newbie] MSN old protocol with stop on Oct 15th

2003-09-03 Thread linux
 Yes but who in their right mind would sign that EULA?
i didnt found some detailed information bout the eula. in google i only get some 
trash... what is eula for? wich targets? why?

r.

Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [newbie] Torvalds feat. Colifornia

2003-09-03 Thread linux
 Actually, there is a quote I saw from Linus once, when someone asked him
 about people who said Linux was ugly. He replied that they will be
 the first against the wall when the revolution comes...
 
 I just about fell off my chair. 

*SMILE*

Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [newbie] Torvalds feat. Colifornia

2003-09-03 Thread linux
 Can you imagine a debate between McBain and Torvalds? 
 
 ROTFLMAO!
 
 Vat is dis kawmpewter tingy...my manly finkers are too laaarje to usse
 itt aannywaay...Maaariiiaa! Dis liittle Finnish maaan iss maaking fuun
 uff mee!

who's mcbain? he's unknown here in switzerland ;)

Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [newbie] Torvalds feat. Colifornia

2003-09-03 Thread linux
 Sorry, it's a reference to the Simpson's parody of Arnold Swarzenegger,
 who *is* running for governor of Kalifornia (Uber Alles!), no joke.
 
 Makes me think of that Chinese curse:
 
 May you live in interesting times.

mkeh ;) i'm more interested in southpark :p
yeah the noldie(chwarzenegger) rules!! :D

(Sprichste Deutsch, da über alles steht? ;) Und Kalifornien schreibt man im 
English mit c :p)

Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [newbie] MSN old protocol with stop on Oct 15th

2003-09-03 Thread linux

 Microsoft may wish to update or change the terms, conditions, and notices
 for the .NET Passport Services from time to time to reflect changes in the 
 Services, changes in the laws affecting the Services, or for other good 
 reasons.

[...]

 You agree to indemnify and hold Microsoft, its
 parents, subsidiaries, affiliates, officers, and employees, harmless from
 any claim, demand, or damage, including reasonable attorneys' fees,
 asserted by any third party due to or arising out of your use of or conduct
 on the .NET Passport Services.
 
 Remind me again...why do people use this crud? 

same thing i asked me after i read this... msn is very exiting. icq has much 
more features, but i dont need them. msn is easier to use and it has a nice 
looking. but if this terms will be released, i release my ass back to icq :)
i'll forward your message to my friends, so they can read bout it...

thank you!

r.

Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [newbie] Torvalds feat. Colifornia

2003-09-03 Thread linux
achso...

ja du dann muss ich wohl noch viel lernen damit ich das alle sbegreiffe :p bin 
eben ein junger schnaufer*g*

Quoting HaywireMac [EMAIL PROTECTED]:

 On Wed,  3 Sep 2003 15:00:17 +0200
 [EMAIL PROTECTED] uttered:
 
  (Sprichste Deutsch, da über alles steht? ;) 
 
 Nein, eine kleine joke...a song by the Dead Kennedy's, Kalifornia
 Uber Alles.
 
  Und Kalifornien schreibt man im English mit c :p)
 
 Ja, ja, ich heise... ;-)
 
 -- 
 HaywireMac
 Registered Linux user #282046
 Homepage: nodex.sytes.net
 ++
 Mandrake HowTo's  More: http://twiki.mdklinuxfaq.org
 ++
 All men know the utility of useful things;
 but they do not know the utility of futility.
   -- Chuang-tzu
 
 




Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


[newbie] libwx_gtk-2.4.so.0

2003-09-01 Thread linux
hi 
 
i tried to start xmule. following error is desplayed: 
 
xmule: error while loading shared libraries: libwx_gtk-2.4.so.0: cannot open 
shared object file: No such file or directory 
 
i installed libwxgtk2.4-2.4.0-3mdk, nothing changed. is there a configuration 
problem? 
 
remo 
(sorry i dont know anymore...) 

Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


[newbie] gaim

2003-09-01 Thread linux
anybody knows gaim? 
you have the option to show a horizontal buddy ticker, it's a plugin. i 
__deactivated__ the plugin, but the ticker is showing after a few minutes 
again. i dont like this feature... 
i thought it could be that the settings arent saved, so i avtivated the 
ticker, exit gaim nicley, start it, deactivated the ticker and closed gaim 
again. but it's coming all the time. any idea? 
 
remo 

Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [newbie] Software patent petition

2003-09-01 Thread linux
other question: 
switzerland isn't in the EU, will the patnets be there too? :/ 
 
remo 
 
 
Quoting Eric Huff [EMAIL PROTECTED]: 
 
  |h, can't sign it unless I live in EU I guess... 
  | 
  |only C choices were Cyprus and Czech Rep., no Canada... 
   
  Wouldn't you qualify as North America? 
  
 Is Canada in northamerica? 
  
 On another note, it's kinda funny that the site for EU patents uses pics 
 of the statue of liberty... 
  
 --  
 Mandrake HowTo's  More:   http://twiki.mdklinuxfaq.org 
  
  
 
 

Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [newbie] libwx_gtk-2.4.so.0

2003-09-01 Thread linux
i used a rpm from xmule.sf.net, its not the newest version. but this one worked 
in my last installation of mdk 9.1...
i dont know may be i do anything wrong when i'm installing mdk... :/ after 
every instaollation, there is another problem...*smile*

i tried to use mldonkey but i couldnt convert my downloads from emule to 
mldonkey. and so this client is not useful for me...

r.

Quoting HaywireMac [EMAIL PROTECTED]:

 On Mon,  1 Sep 2003 18:17:42 +0200
 [EMAIL PROTECTED] uttered:
 
  i tried to start xmule. following error is desplayed: 
   
  xmule: error while loading shared libraries: libwx_gtk-2.4.so.0:
  cannot open shared object file: No such file or directory 
   
  i installed libwxgtk2.4-2.4.0-3mdk, nothing changed. is there a
  configuration problem? 
 
 how did you install xmule? from source? if so, it is probably not seeing
 the shared library where it expects them to be...
 
 in the source dir of xmule, run ./configure --help for options which may
 allow you to specify the locations of said shared libraries.
 
 if xmule is to access the donkey network, I would recommend MLDonkey
 instead, there are mandrake rpms avail thru urpmi, and it works
 flawlessly.
 
 -- 
 HaywireMac
 Registered Linux user #282046
 Homepage: nodex.sytes.net
 ++
 Mandrake HowTo's  More: http://twiki.mdklinuxfaq.org
 ++
 Superstition, idolatry, and hypocrisy have ample wages, but truth goes
 a-begging.
   -- Martin Luther
 
 




Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [newbie] Tight VNC

2003-08-30 Thread linux
thanks for your help! but it didnt work... conection refused. i dont know whats 
wrong yet. but i'll celebrate my birthday now ;) cu2morrow, remo

Quoting HaywireMac [EMAIL PROTECTED]:

 On Sat, 30 Aug 2003 15:04:09 +0200
 [EMAIL PROTECTED] uttered:
 
  anybody know what to do?
 
 whoops! see? I already see where I got something in the wrong order:
 
 this:
 
 cd ~/.vnc
 
 [name of your fav editor, vi, pico, nano, etc.] xstartup
 
 chmod +x xstartup
 
 edit the xstartup file to start whatever WM or desktop you like, 
 preferably something light like fluxbox or blackbox, like so:
 
 exec fluxbox
 
 save and exit, and run:
 
 vncserver
 
 should be this:
 
 cd ~/.vnc
 
 edit the xstartup file to start whatever WM or desktop you like, 
 preferably something light like fluxbox or blackbox, like so:
 
 [name of your fav editor, vi, pico, nano, etc.] xstartup
 
 exec fluxbox (or whatever)
 
 save and exit, and run:
 
 vncserver
 
 
 -- 
 HaywireMac
 Registered Linux user #282046
 Homepage: nodex.sytes.net
 ++
 Mandrake HowTo's  More: http://twiki.mdklinuxfaq.org
 ++
 Circumstances rule men; men do not rule circumstances.
   -- Herodotus
 
 




Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [newbie] gtk2

2003-08-30 Thread linux
mhhh strange... it is installed on my mdk too! but why the heck is gaim unable 
to install? do you can install gaim? (http://gaim.sf.net) i tried version 0.
67-1, cause i'm a noob on linx and cant compile another version. theres no 
mandrake rpm... :(

remo

Quoting Richard Urwin [EMAIL PROTECTED]:

 On Saturday 30 Aug 2003 2:40 pm, [EMAIL PROTECTED] wrote:
  where to find gtk2? rpmseek.com has a lot but nothing works. does
  anybody have a mdk rpm? i need gtk2 2.0.0, used by gaim. thx, remo
 
 I found GTK2 already installed, probably for GNOME, I had to load the 
 -devel, but urpmi found it no problem. So it's probably on the CDs or 
 contrib.
 
 Why do you need 2.0.0? The version I have is higher, and uninstalling it 
 would probably cause a lot of problems with dependencies.
 
 -- 
 Richard Urwin
 
 




Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


[newbie] my irc client

2003-08-14 Thread linux
good morning! 
i'm looking for a my irc(or mirc) client for linux. kopete supports this 
feature but very very bad. crashes all the time while using irc-plugin, only a 
irc-console... 
 
is there a good mirc client? i only found one, on rpmseek.com: 
kmyirc-0.2.9.1.i386.rpm 
 
but this one needs three libs i dindt foun enywhere! :( (tried google, 
rpmseek...) 
 
following libs are needed: 
libGLcore.so.1 - should be included by the nvidia driver, but i installed it 
allready! 
libpng.so.2 
libvga.so.1 
 
thx4hlp! 
 
remo 

Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [newbie] saving live-stream

2003-08-14 Thread linux
Zitat von Richard Urwin [EMAIL PROTECTED]:

 On Friday 01 Aug 2003 10:04 am, [EMAIL PROTECTED] wrote:
  hi toghether
  is it possible to save a live stream in xmms? or any other
  application?
 
  remo
 
 This has been discussed lately on the list. Checkout the thread saving 
 live-stream, first post last Friday, in your mail or in the archives.

:) thats my post... the one on friday, with subject saving live-stream ;)

remo

Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [newbie] saving live-stream

2003-08-14 Thread linux
Zitat von Richard Urwin [EMAIL PROTECTED]:

 On Wednesday 06 Aug 2003 9:25 am, [EMAIL PROTECTED] wrote:
 
  :) thats my post... the one on friday, with subject saving
  : live-stream ;)
 
 Erm, but not the one I thought I was responding to
 It was early morning, at least, that's my excuse.

easy ;) it's no problem *smile*

Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


[newbie] how to burn *.bin

2003-08-09 Thread linux
hi
how to burn a *.bin file? i've a Cue-Sheet to the bin-file.
K3b can not handle this, or i dont know how it works...
any other burn application?

another question: how to burn a *.bin without a cue-sheet?

remo

Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [newbie] saving live-stream

2003-08-02 Thread linux
m'kay! :) 
u've to go to the settings panel, input-plugins. there select mpeg layer 1-3, 
condigure. then jupm to streaming, check the checkbox save stream to harddisk, 
and thats the way the cookie crumbels :D works well! :) 
 
 
Quoting Brant Fitzsimmons [EMAIL PROTECTED]: 
 
 [EMAIL PROTECTED] wrote: 
  
 hi toghether  
 is it possible to save a live stream in xmms? or any other application?  
   
 -  
 this is in swiss-german and only for swiss-people(if there are any in 
here): 
  
   
 i wönsche euch allne e schöne 1. auguscht und tüend nöd zwild höt abig! :)  
   
 remo 
  
  
 Have you looked at the Preferences of XMMS? 
  
 Try looking under Option = Preferences = Audio I/O Plugins and look at  
 the configuration of the plugin that corresponds to the typt of stream  
 you're wanting to record.  I think you can set it to record to your hard  
 drive.  I don't know how well it works, or if it works at all.  I  
 haven't tried it yet. 
  
 Let us know how it goes. :-) 
  
 --  
 Brant Fitzsimmons 
 [EMAIL PROTECTED] 
  
 All truth passes through three stages. First, it is ridiculed. 
 Second, it is violently opposed. Third, it is accepted as being 
 self-evident. 
   -Arthur Schopenhauer (1788-1860) 
  
  
  
  
 
 

Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


[newbie] saving live-stream

2003-08-01 Thread linux
hi toghether 
is it possible to save a live stream in xmms? or any other application? 
 
- 
this is in swiss-german and only for swiss-people(if there are any in here): 
 
i wönsche euch allne e schöne 1. auguscht und tüend nöd zwild höt abig! :) 
 
remo 

Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


[newbie] how to scripts

2003-08-01 Thread linux
i wish to do a script for the terminal, like *.bat-file in windows. is this 
possible? 

Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


[newbie] kde and konqueror

2003-07-31 Thread linux
hi
i have a big problem! i changed the colors of kde(controlcenter-lookfeel-
style and so on) to a grey. while i'm browsing my harddisk with konqueror(like 
explorer in windows), there are all files listened up. The first line is grey, 
the second is just white! the followed line is grey, then white. every second 
line is just white. if i select all files, the filenames are showed in a 
different grey(you can have an other color for selecting).
do you know what i mean? i cant give you any screenshots cause i dont know how 
to made them under linux(how do i?). i will upload some pictures in the 
evening, now i am at work ;)

remo

Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [newbie] kde and konqueror

2003-07-31 Thread linux
Zitat von Peter Meyns [EMAIL PROTECTED]:

 Hello,
 
 on Thu, 31 Jul 2003 08:32:19 +0200GMT (31.07.03, 08:32 +0200GMT here),
 you wrote in mid:[EMAIL PROTECTED] :
 
  i have a big problem! i changed the colors of
 kde(controlcenter-lookfeel-
  style and so on) to a grey. while i'm browsing my harddisk with
 konqueror(like
  explorer in windows), there are all files listened up. The first line is
 grey,
  the second is just white! the followed line is grey, then white. every
 second
  line is just white. if i select all files, the filenames are showed in a
  different grey(you can have an other color for selecting).
 
 Just an idea: can it be that you have set the font color to white, thus
 producing white text on white background?

defenatly not. i downloaded
http://www.kde-look.org/content/download.php?content=5801
this is a theme, just try it.

Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [newbie] kde and konqueror

2003-07-31 Thread linux
 On Thursday 31 Jul 2003 7:32 am, [EMAIL PROTECTED] wrote: 
  hi 
  i have a big problem! i changed the colors of 
  kde(controlcenter-lookfeel- 
  
  style and so on) to a grey. while i'm browsing my harddisk with 
   konqueror(like 
  
  explorer in windows), there are all files listened up. The first 
  line is grey, the second is just white! the followed line is grey, 
  then white. every second line is just white. if i select all files, 
  the filenames are showed in a different grey(you can have an other 
  color for selecting). do you know what i mean?  
  
 This sounds fairly normal to me.  Konq uses shaded lines in much the  
 same way as some rintout paper does, supposedly to ease readability  
 (no comment on that - I think it's a matter of preference) and I  
 don't think you can switch that off.  Why does it cause you problems,  
 though? 
 
here are the screenshots: 
http://www.codershome.org/normal.png 
http://www.codershome.org/selected.png 
 
this is not normal i think. i cants work with this situation :/ 
 
remo 

Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [newbie] php software

2003-07-30 Thread linux
Zitat von Brant Fitzsimmons [EMAIL PROTECTED]:

 [EMAIL PROTECTED] wrote:
 
 hi 
 i'm looking for an php editor. followinf features would be nice: 
 ftp-support - online editing of files 
 small explorer to open files 
 syntax highligthing 
  
 it would be nice if the editor also supports java, java script, html. 
  
 any good ideas? 
  
 i heard from eclipse but i think its only for java development... am i
 right? 
  
 remo
 
 
 Quanta Plus will edit just about everything (PHP, HTML, Perl, Python, 
 BASH, XML, Java, etc., etc.). It also has ftp capabilities and a preview 
 feature.
 
 Online editing of files is a bad idea.  I've known too many Front Page 
 users who lost their sites because they edited online, had a server 
 crash or web host mistake, and lost everything.  It is much better to 
 edit locally, preview locally (using Apache, PHP, and MySQL), and then 
 to upload everything.

quanta is a very good tool! :) thank you
online editing is not a problem on the server, cause the server is standing in 
my place ;) but i dont want to edit the pages in the basement :p

greets remo

Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


[newbie] Soundblaster Audigy 5.1 Surround

2003-07-30 Thread linux
Hi
i use a sounblaster audigy. i dont have surround in linux :( in windows i do
(but who likes weindows?*smile*)
are there any ways to get surround?

r.liechti

Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [newbie] Soundblaster Audigy 5.1 Surround

2003-07-30 Thread linux
i need the surround while watching a dvd ;) this can only be done with xine. 
you defenatly dont have surround with the cd player, cause a music cd only have 
stereo sound. in this way, you have the same sound at all speakers(left and 
right are different)

Zitat von Anne Wilson [EMAIL PROTECTED]:

 On Wednesday 30 Jul 2003 7:53 am, [EMAIL PROTECTED] wrote:
  Hi
  i use a sounblaster audigy. i dont have surround in linux :( in
  windows i do (but who likes weindows?*smile*)
  are there any ways to get surround?
 
  r.liechti
 
 I have had SBLive surround and now Audigy surround working.  I was 
 never able to get surround on, for instance, the default cd player, 
 but xmms manages everything fine for me.  Have you tried it?
 
 Anne
 
 




Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


[newbie] php software

2003-07-29 Thread linux
hi 
i'm looking for an php editor. followinf features would be nice: 
ftp-support - online editing of files 
small explorer to open files 
syntax highligthing 
 
it would be nice if the editor also supports java, java script, html. 
 
any good ideas? 
 
i heard from eclipse but i think its only for java development... am i right? 
 
remo 

Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


[newbie] ftp client

2003-07-29 Thread linux
i need a ftp client. gftp and lftp arent very user friendly... 
gftp needs the password of the server every file you'll download :( 
lftp is just terminal 

Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [newbie] ftp client

2003-07-29 Thread linux
yeah i did, saving password is activated by the bookmark for the site. i can 
make a connection to the server with the bookmark and i dont have to type the 
password in. i've to type the password in when i want to download a file from 
the server. 
 
Zitat von Anne Wilson [EMAIL PROTECTED]: 
 
 On Tuesday 29 Jul 2003 7:18 pm, [EMAIL PROTECTED] wrote: 
  i need a ftp client. gftp and lftp arent very user friendly... 
  gftp needs the password of the server every file you'll download :( 
  lftp is just terminal 
  
 I use gftp.  Have you set up bookmarks for the sites you want to use?   
 If you put all the details in, including the password for the site,  
 you shouldn't have any problem. 
  
 Anne 
  
  
 
 

Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [newbie] ftp client

2003-07-29 Thread linux
i dont thk it is anything on the server cause in windoes the ftp client wont 
ask every downloading file. i'vae to take a much more closer look to the gftp, 
maybe i'll find something. i let youknow! thanks for help anyway 
 
 
 
Zitat von Anne Wilson [EMAIL PROTECTED]: 
 
 On Tuesday 29 Jul 2003 7:33 pm, [EMAIL PROTECTED] wrote: 
  yeah i did, saving password is activated by the bookmark for the 
  site. i can make a connection to the server with the bookmark and i 
  dont have to type the password in. i've to type the password in 
  when i want to download a file from the server. 
  
 Sorry, can't help then.  Is this just one site, or more?  Could it be  
 something on the server causing it?  I have downloaded several files  
 in one session without ever being asked for the password again. 
  
 Anne 
  
  
 
 

Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [newbie] ftp client

2003-07-29 Thread linux
didnt work 
this options are for a proxy i think... i dont use a proxy server to connect 
to the internet. 
 
Zitat von Charles A Edwards [EMAIL PROTECTED]: 
 
 On Tue, 29 Jul 2003 20:18:38 +0200 
 [EMAIL PROTECTED] wrote: 
  
  i need a ftp client. gftp and lftp arent very user friendly...  
  gftp needs the password of the server every file you'll download   
  
 In gftp/Options when using ftp or http you can give set it for auto 
 login with username and password. 
  
  
 Charles 
  
 --  
 Windows: celebrating ten years of obsolescence 
 - 
 Mandrake Linux 9.2 on PurpleDragon 
 Kernel- 2.4.21.6mdk http://www.eslrahc.com  
 - 
   
  
 
 

Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


[newbie] video [VCD] editing on ML9.0?

2003-02-28 Thread linux
G'day,

I was wondering:
what's available for Linux that will let me capture video
from my firewire video camera [or open a video file off an
existing VCD], chop out the bits I don't want, maybe a
couple of basic wipes/fades etc, lay it on top of a soundtrack,
then write it to a new VCD?
The firewire card only came with windoze software [Pinnacle
Studio DV] and it's clunky to use; I'm hoping there may be
something that runs on Linux that's better.

TIA ;)

--
Merlin Zener
piano and synthesizer
Pattaya, Thailand. 
---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.459 / Virus Database: 258 - Release Date: 25/02/2003


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


[newbie] wrong printer picked...

2003-02-20 Thread linux
G'day all,

when I installed Mandrake it didn't find my printer and
I accepted the suggested alternative; unfortunately it
now prints twice as wide as it should...

My printer is a Canon S200SP; Printerdrake lists the
S100 and the S300, but it actually chose the BJC-2100
Ghostscript+gimp-print[recommended].
I tried the S100 and got the same results.

Is there a driver for the S200SP available, and if so
where?

Anything else I should try?

TIA...

--
Merlin Zener
piano and synthesizer
Pattaya, Thailand. 
---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.456 / Virus Database: 256 - Release Date: 18/02/2003



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



RE: [newbie] no audio in Xine...?

2003-02-20 Thread linux
 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED]]On Behalf Of Frans Ketelaars
 Sent: Monday, 17 February 2003 19:47
 To: [EMAIL PROTECTED]
 Subject: Re: [newbie] no audio in Xine...?
 
 
 On Mon, 17 Feb 2003 18:14:17 +0700
 [EMAIL PROTECTED] wrote:
 
  G'day,
  
  as the sub says, I get no audio when playing VCDs in Xine.
  Audio works fine in XMMS, but in Xine I get video ok but
  no sound.
  Clicking on the config tool and then to the audio tab reveals
  the audio driver to use is set to null. Well that would
  do it, I guess...
  Thing is, there's no way I can see to change it. Clicking
  all over the window does nothing; the help tab brings up a
  blank page. I've been wandering around the Mandrake control
  center, but it doesn't seem to report anything wrong.
  
  The sound chip is an AC97 onboard [a Matsonic MS9107C+
  motherboard]. What other system details should I include
  to enable you to help me better?
  
  TIA, as always
 
 I just typed in arts instead of null in the GUI. On the command line
 'xine --help' lists the available audio output plugins on  
 your system according to 'man xine'. I guess they have some
 more work to do on the xine GUI :)

G'day,
I tried 'arts' [after trying a few ways I found you have to
click on the word 'null', go left with the arrow keys, delete
the characters to the right, and only then can you type in a 
new value. Oh, and yes, you have to hit enter before leaving
the page or the change won't hold...]
anyway, arts produces the same result - pic but no sound.

'xine --help' tells me the available drivers are null and oss,
but when I tried oss, it just flashes on the screen for a second
or so then disappears.

Anything else??

--
Merlin Zener
piano and synthesizer
Pattaya, Thailand. 
---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.456 / Virus Database: 256 - Release Date: 18/02/2003



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



RE: [newbie] no audio in Xine...?

2003-02-20 Thread linux
 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED]]On Behalf Of Larry Williams
 Sent: Tuesday, 18 February 2003 10:40
 To: [EMAIL PROTECTED]
 Subject: Re: [newbie] no audio in Xine...?


 On Monday 17 February 2003 03:14, [EMAIL PROTECTED] wrote:
  G'day,
 
  as the sub says, I get no audio when playing VCDs in Xine.
  Audio works fine in XMMS, but in Xine I get video ok but
  no sound.
  Clicking on the config tool and then to the audio tab reveals
  the audio driver to use is set to null. Well that would
  do it, I guess...
  Thing is, there's no way I can see to change it. Clicking
  all over the window does nothing; the help tab brings up a
  blank page. I've been wandering around the Mandrake control
  center, but it doesn't seem to report anything wrong.
 
  The sound chip is an AC97 onboard [a Matsonic MS9107C+
  motherboard]. What other system details should I include
  to enable you to help me better?
 
  TIA, as always

 I ran into this same problem a couple months ago using an ESS
 card.  I ended
 up removing and then reinstalling the xine package and it started to work
 again.  The config file is the same as the previous load, so I'm assuming
 (guessing) that a file got corrupted somehow and reinstalling
 xine fixed it.

G'day,
well this is a clean install of Mandrake from scratch, I've done
almost no stuffing around with it - I'm just beginning to find
my way around, reading things and watching the pretty visualizations
in XMMS :) So I don't think anything should be corrupted this
early...
But I tried, went to add/remove programs: it took me to a page
which let me add programs, but I couldn't see any way to remove
anything. Anyhow, I installed it again, thinking that maybe it
would write files over the old ones.
No change.

--
Merlin Zener
piano and synthesizer
Pattaya, Thailand.
---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.456 / Virus Database: 256 - Release Date: 18/02/2003



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



[newbie] no audio in Xine...?

2003-02-17 Thread linux
G'day,

as the sub says, I get no audio when playing VCDs in Xine.
Audio works fine in XMMS, but in Xine I get video ok but
no sound.
Clicking on the config tool and then to the audio tab reveals
the audio driver to use is set to null. Well that would
do it, I guess...
Thing is, there's no way I can see to change it. Clicking
all over the window does nothing; the help tab brings up a
blank page. I've been wandering around the Mandrake control
center, but it doesn't seem to report anything wrong.

The sound chip is an AC97 onboard [a Matsonic MS9107C+
motherboard]. What other system details should I include
to enable you to help me better?

TIA, as always

--
Merlin Zener
piano and synthesizer
Pattaya, Thailand. 
---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.455 / Virus Database: 255 - Release Date: 13/02/2003



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



[newbie] Konquerer basic question...

2003-02-16 Thread linux
G'day all,

as I'm just beginning to look around mandrake I'm trying
to come to grips with the basics:

In Konquerer, how do you stop a file from launching as soon
as you click on it? For example, if I want to click on a
bunch of mp3s and then drag them to XMMS, as soon as I click
on the first one it launches. Then I have to go back, and
then shift-click on the last one, which will then select the
ones I want.
I want to just select, not launch on first click. Double click
to launch would be good, it's the way I'm used to working...

--
Merlin Zener
piano and synthesizer
Pattaya, Thailand. 
---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.455 / Virus Database: 255 - Release Date: 13/02/2003



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



RE: [newbie] This fellow needs help. His mails are being rejected.

2003-02-10 Thread linux
 -Original Message-
 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Benjamin
 Pflugmann
 Sent: Sunday, 9 February 2003 12:41
 To: [EMAIL PROTECTED]
 Subject: Re: [newbie] This fellow needs help. His mails are being
 rejected.
 
 [...snip snip]
 Another option would be to find someone with a mail server who would
 be willing to be a mail relay for you (only needed as outgoing
 server).
 

FWIW [and that might be nothing because, what would I know...]

or you could see if your web hosting provider allows mail sending
through it's server, using authentication, like mine does.
That is how I was able to set up a linux@ address at my domain
name, which is used exclusively [so far...] for this list only.

--
Merlin Zener
piano and synthesizer
Pattaya, Thailand. 
---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.449 / Virus Database: 251 - Release Date: 27/01/2003



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



RE: [newbie] Dual boot: pre-setup question

2003-02-10 Thread linux
 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED]]On Behalf Of Adolfo Bello
 Sent: Sunday, 9 February 2003 00:49
 To: MDK Mandrake
 Subject: Re: [newbie] Dual boot: pre-setup question
 
 
 Trust me: I almost got a PhD in installing Windows and Mandrake this
 week :-)
 
 1.- *First of all*, install Windows 2000/XP.
 2.- Create a FAT32 partition to hold data that you want to read/write
 with Windows and Mandrake.
 3.- Install Mandrake.
 
 It is this easy.
 
 You will get a dual boot system.
 

G'day,
Thanks to those who answered. I followed the instructions from
Lanman and Adolpho above, and got this far:
* I disconnected my 80G HDD - better safe than sorry LOL
* I fired up Partition Magic and resized the existing NTFS partition
  down to 8G, and labelled it windoze.
* I added another 8G partition, made it FAT32 [on a guess - I figured
  if Linux couldn't see files on a NTFS partition it probably couldn't
  install in one either:)], labelled it linux
* set the remaining 22G [I wonder where the other 2G went???] as FAT32
  and labelled it archive.

I fired up windows and moved my data from C: to E: [the newly created
archive partition]. So far so good - windoze sees all three partitions.

Put in Mandrake 9.0 CD1, went through the languages, kbd/mouse, security
 - accepted the defaults as they seemed reasonable.
Setup Filesystems shows a graphical representation something like this:
+-++-+
| || |
| /mnt/nt | /mnt/win_c |/mnt/win_d   |
| || |
+-++-+

This **looks** right, but it's not seeing the labels, and it **seems**
to be confused: what it calls win_c is actually E and what it calls win_d
is actually F [D: is the CDROM]. To be fair, it does say just a guess
in the details box when I click on each partition.
But: there doesn't seem to be any way [that I can see] to be sure.
And even if I was pretty sure that the second partition is the one to
put Linux on, I don't see any way on this screen to tell it to do that.
Auto Allocate says: not enough space for auto-allocating
The wizard gives three options:
 - erase the entire disk
 - use the free space on the windoze partition
 - use the windoze partition for loopback

I clicked on toggle to expert mode [with some trepidation, because
clearly I'm not - LOL] and found a button to format the partitions,
but I chickened out, because I can't be sure which partition is which.
And anyhow, the partitions are already formatted FAT32 - do they
need to be formatted again to put Linux on them?
I guess I'm looking for some button that says install here...

...asking too much? g

--
Merlin Zener
piano and synthesizer
Pattaya, Thailand. 
---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.449 / Virus Database: 251 - Release Date: 27/01/2003



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



RE: [newbie] my bookmarks for Linux, and more

2003-02-08 Thread linux
 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED]]On Behalf Of Robert Wideman
 Sent: Thursday, 6 February 2003 16:55
 To: Newbie
 Subject: [newbie] my bookmarks for Linux, and more
 
 
 I am sending it as an attachementso you can save it.  If you want 
 it another
 way I will try to do it before it is asked.
 Rob
 

opened.
looked.
saved.

thanks.
:)

--
Merlin Zener
piano and synthesizer
Pattaya, Thailand. 
---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.449 / Virus Database: 251 - Release Date: 27/01/2003



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



RE: [newbie] Searching 101

2003-02-08 Thread linux
 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED]]On Behalf Of Robert Wideman
 Sent: Friday, 7 February 2003 20:18
 To: [EMAIL PROTECTED]
 Subject: RE: [newbie] Searching 101
 
 
 Top 10 what?  HOWTO sites for linux? I just sent a hefty email under the
 same thread that has like 50 of them in it.
 Rob
 

G'day Rob,
yes, I got it - thanks a lot.
There seems to be some lag between me sending and the list
getting messages, partly caused by my lack of even a phone
line here, never mind a dialup or DSL like I'm used to; I'm
reduced to doing a daily run to a net cafe with this thinkpad
to download/upload.
Then there's the confirm process I have to do from the 
sympa@... sometimes - I haven't worked out why it only
asks me sometimes yet.

--
Merlin Zener
piano and synthesizer
Pattaya, Thailand. 

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.449 / Virus Database: 251 - Release Date: 27/01/2003



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



RE: [newbie] Searching 101

2003-02-07 Thread linux
 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED]]On Behalf Of FemmeFatale
 Sent: Wednesday, 5 February 2003 06:08
 To: [EMAIL PROTECTED]
 Subject: RE: [newbie] Searching 101
 
 [...snip]
 If you wish I can send you some URL's I've found in the last year or so 
 that assume NO Prior knowledge. :)
 

Thanks a lot, Heather.
Yes I'd appreciate that a lot; I'll download them and stick
them on my palm pilot, read snippets every chance I get.
On the bus to Panthip*, for example:)

As it happens, I've got a followup question, but I'll
start it in a new thread.
Thanks again go to all who replied and didn't bite my
head off.

*ppl who've been to Bangkok will know why the smiley...

--
Merlin Zener
piano and synthesizer
Pattaya, Thailand. 
---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.449 / Virus Database: 251 - Release Date: 27/01/2003



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



RE: [newbie] Searching 101

2003-02-07 Thread linux
 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED]]On Behalf Of Robert Wideman
 Sent: Wednesday, 5 February 2003 18:10
 To: [EMAIL PROTECTED]
 Subject: RE: [newbie] Searching 101
 
 
  If you wish I can send you some URL's I've found in the last 
 year or so 
  that assume NO Prior knowledge. :)
 
 Heck i have like 200 of these bookmarks if you want.
 Just ask and ye shall recieve.
 

errr, how about a top ten?
:))

--
Merlin Zener
piano and synthesizer
Pattaya, Thailand. 
---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.449 / Virus Database: 251 - Release Date: 27/01/2003



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



RE: [newbie] Searching 101

2003-02-07 Thread linux
 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED]]On Behalf Of Marc Oestreicher
 Sent: Tuesday, 4 February 2003 13:40
 To: [EMAIL PROTECTED]
 Subject: Re: [newbie] Searching 101
 
 [...snip]
It may be a bit late at this point but Mandrake has a 
 Excellent tutorial for installation on the Mandrake website go to 
 the mandrake home page and you should find a link for demos and 
 or tutorials.

Thanks for the reply, Marc.
FWIW I went to the Mandrake site and in the tutorials
section there are only two - one on KDE, the other on
Gnome.
Maybe you have to pay to see the rest of the site??

--
Merlin Zener
piano and synthesizer
Pattaya, Thailand. 
---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.449 / Virus Database: 251 - Release Date: 27/01/2003



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



RE: [newbie] Searching 101

2003-02-04 Thread linux
 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED]]On Behalf Of Anne Wilson
 Sent: Friday, 24 January 2003 23:21
 To: [EMAIL PROTECTED]
 Subject: Re: [newbie] Searching 101
 
 [...snip]
 A reminder of resources from time to time is useful, but for a newbie 
 searching is doubly difficult, because often you don't know the 
 question to 
 ask or the term to search on.
 

I'll pipe in here, as an absolute oober-newbie...
I've been lurking here for a few weeks now, trying to
get up to speed, and considering this is the newbie
list, it's all rather daunting. I must say, 99% of the
stuff you guys are talking about goes right over my
head.

I got Mandrake 9.0 on a magazine front cover CD and
loaded it on an old machine, just accepting the defaults
as it went through. It messed up the video, I just got
a bunch of blurry diagonal lines on the screen, like an
old TV. There were a few other things too, but I'll spare
you the boring stuff - suffice to say it was two machines
later before I got a desktop on the screen...

But my [small] point is: imagine being confronted with
building and operating some machinery you've never seen
before, and all the instructions are in Japanese. You have
to look up each kanji character in the dictionary, and try
to piece together the meaning of each sentence, word by
word. I think there was a story of someone doing a similar
thing with a legal dictionary.

There's an amazing amount of help out there, and a bewildering
array of man pages, howto's etc, but they all [the ones I've
seen so far, anyway] assume you already have a machine up and
running and you know at least how to start and stop it.
The first time I managed to get to a command line I thought the 
machine had locked up - there was no C:\ with a flashing 
underscore. Just one little example.

I must say, this list seems much more newbie tolerant than
some of the usenet groups, which is why I decided to stick
my head up with this post. I'll go back to lurking now, and
hopefully some of it will sink in and begin to make sense in
a while...
:)

--
Merlin Zener
piano and synthesizer
Pattaya, Thailand. 
---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.449 / Virus Database: 251 - Release Date: 27/01/2003



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



Re: [newbie] 9.0 installation problems

2003-01-08 Thread linux
 Frank - this sounds familiar to me.  When I first set up 9.0 I could
 boot into  that, but not into 8.2.  After much help from the list I
 found that it  happened because I had a /boot directory in each install
 (which is what  happens if you don't make a separate /boot partition).
 You need to know  which of those is being read by the boot process.  If
 you can't find out, try  this solution on both of them - it will do no
 harm, although only one of them  will be used.

 In the old /boot directory,find the file called initrd-2.4.whatever and
 the  vmlinuz-2.4.whatever.  Copy them into the new /boot directory.  Do
 the same  the other way round, copying them from the new into the old.
 You will end up  with two similarly named files for each, in my case
 initrd-2.4.18-6mdk.img  and initrd-2.4.19-16mdk.img, and the same for
 the vmlinuz entries.

 Boot is only reading one of these, and it needs to be able to find both
 versions, depending on which you choose in lilo.

 HTH

 Anne

Thanks for the attempt but that isn't the situation here.

My apologies for not making it clearer.  The problem seems to be linked
with my new motherboard in particular.

It runs Mandrake 8.1 and 8.2 beautifully.  It just won't install Mandrake
9.0 (I also tried RedHat 8.0 for that matter).
I know the installation CDs are fine because I used them on other PCs.  I
know the CDRom drive isn't the problem because it reads the cds without a
problem.  It seems to be the actual installation that causes the freeze to
the system.

When booting from a disk after writing an cdrom.img to it, it still
freezes just before the 2nd phase of the installation startup.
The same goes for any attempt booting from the harddrive as I copy the
entire 3 CDs to another hardrive in a fat32 partition and use a floppy
with the hd.img image to boot.  BTW, that is an awesome trick to
accelerate installation for those whom are curious.  It has other benefits
too.

If I try to do the install in text mode rather than vga mode I get up to
this just before it freezes:

Posix conformance testing by UNFIX
enabled by Extint on CPU#0
ESR value before enabling vector:002

and Blamo!  Just a blank screenNumLock jammed up, etc

Not that part seems to be resolved (see mandrakeuser) but the initial
startup after a successful installation seems to be the next problem I am
hoping to get resolved.

There isn't any redundant /boot files in my case because Mandrake 8.2 was
erased from that drive already.

I have a feeling that if I install 9.0 with the CTL/Alt/F2 and rm
/usr/blah/blah/blah trick, I will probably be able complete the install
and boot up to the newly installed linux if I do an immediate upgrade of
the kernel using an old 8.2 rescue disk and the newest kernel burned onto
CD ready to mount and install.  This seems like the most promising idea I
can come up with.  Problem is, is it worth the time to experiment??

But thank you again for the immediate response Anne.






Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



Re: [newbie] 9.0 installation problems

2003-01-08 Thread linux
 On Wednesday 08 Jan 2003 7:41 pm, [EMAIL PROTECTED] wrote:
  I am referring to the K7VMM MoBo installation problem with Mandrake
 9.0. I was about to follow the Mandrake 9.0 installation patch
 specified on their website (with the CTL/ALT/F2 etc...) and then
 noticed that although you (Walt) were able to successfully install
 it with this technique, it would not boot up anyway.
 
  Did you ever get this to finally boot up nicely?  If so, what did
 you need to do?  I on the same boat K7VMM mobo.

 I think I may have found the fix.  I will let you know the results
 tonight.

 Aparently the bug is common in many different ways (if that oxymoron
 makes sense.)

 All I have to do is boot off the installation cdrom with the noapic
 option added before boot.  Go through the standard installation but
 add the noapic option in lilo.conf so that it is permanent.
 Supposingly it should turn out with a Viola!!, but we'll see.
 (Figures crossed)

 According to the MandrakeForum, this should help diagnose most
 periphial conflicts during startup without hindering its functionality
 from thereafter.

 Till we meet again.

 -Frank

 When you say 'noapic' option added before boot, do you mean F1, then
 type  noapic (and possibly more?) at a prompt?  Or what?  I'm
 interested, because I  could not install onto an older system than this
 one, and thought this may be  worth a try.

 Anne

Yes. F1 it, then type noapic and enter.  If that works (meaning the
install continues onward), then make sure you add it to lilo as well.

Refer to this link:
http://mandrakeforum.com/article.php?sid=2459

I hope that helps.  HeckI hope that helps both of us!

Frank




Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



[newbie-it] Lucent Win Modem

2002-12-18 Thread linux-sn








Salve a tutti,

ho
questo problema: ho installato recentemente la Mdk 9.0, mi ha riconosciuto
tutto quasi correttamente tranne il modem (un Lucent Win Modem).



Ho letto da varie parti che i WinModem non sono supportati,
ma ho comunque trovato il sito http://www.physcip.uni-stuttgart.de/heby/ltmodem/dists/mandrake/8.22a5/ltmodem-kv_2.4.19_16mdk-8.22a5-1.i586.rpm

da
cui ho scaricato il driver

ltmodem-kv_2.4.19_16mdk-8.22a5-1.i586.rpm;



utilizzando
il Mandrake Control Center (drakconf), ho installato il pacchetto usando la
Gestione Software ma il modem continua a non esistere, almeno
controllando con la gestione dellhardware con il Mandrake Control Center (Hardware  Lista
Hardware) e non lo trovo neanche tra i device in /dev (mi aspetto ttyLT0 ma non esiste).

 

Cosa posso fare 

E se proprio il Lucent è inutilizzabile, quale modem interno economico posso comprare ??

Quali caratteristiche deve possedere ?

 

Grazie a tutti.



Salvatore snac Naccari












[newbie] Learn From My Mistakes

2002-10-31 Thread Linux

Greetings all.  I just posted an essay on my web site which I thought might be words 
of warning to the newbies, and amusing for the people who know what they are doing.  
Part of the essay is a review of Mandrake 8.2 -- which doesn't matter much since 9.0 
is out now.  Part of it is the story of how I tried to reconfigure my partitions and 
operating systems and how along the way I make mistakes and did dumb things.  As 
always however, it was a learning experience.

Find it at:
204eastsouth.com/linux08.htm

I hope this keeps someone from doing some of the things I did.
Enjoy.
Skippi



-
Skippi
  On The Fly Photography
http://204EastSouth.com
Meditation -- Yoga -- Linux -- Muffins
  The Secrets of Life
-BEGIN GEEK CODE BLOCK-
  Version: 3.12
GAT d-(?) s: a C++ L++(+++) P E- W++ !N o? K- w--- o M+ PS+ PE++ Y+
PGP- t++ 5+++ X++ R+ tv-- b++ DI D+ G e+ h+ r- y++
--END GEEK CODE BLOCK--


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



[newbie] Mandrake on a low-end machine...

2002-09-30 Thread Linux Maniac


Hi All!

My girlfriend is starting to write her thesis, and I don't want her to
loose any data because of winblows.

Her machine is a 166MHz pentium with 32 MB RAM.

I want to install Mandrake 9.0 with blackbox or icewm, but I also need a
good word processor. My personal favorite is OpenOffice.org, but I don't
know if that would be alright for that configuration.

Please share with me experiences of such machines + Mandrake, and tell
me which word processor shoul I us (it has to be able to export in
word97 format.)

Thanks,

BAT



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



[newbie] Install 9.0 from hdd?

2002-09-26 Thread Linux Maniac


Hi!

I'm just dl-ing 9.0 :-)

I wonder if there is some way to do this:

I have a seperate unused partition. I format it to ext3 and copy the 
contents of the iso's on it + mount it like /mnt/install/mandrake9cd1 
etc...

Is there some way to create a boot floppy which then would install from 
that partition?

I have no cd's now :-(

BAT



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



[newbie] Mandrake 9.0 wishlist :-)

2002-06-13 Thread Linux Maniac


I wonder what you'd like to implemented in the 9.0 release. My 
wishlist is in short:

- a script for installing the nvidia drivers OR a deal with nvidia to 
provide them preinstalled in MDK 9.0
- Hungarian spell checkers
- Opera 6.x
- Mldonkey
- Latest gtk-gnutella
- Themable graphical boot
- More KDE/Gnome themes
- Support for Mustek ScanMagic 1200 (paralell)
- Mozilla 1.1
- Mplayer
- An advanced control center with more advanced options
- winex and crossover office
- preinstalled flash plugin
- Maybe a gamer's extension 4th CD so on the first 3 CD there would be 
only serious programs and the games of kde/gnome
- A more discrete and professional Mandrake look (icons, bootup, etc.)
-Maybe a change of logo?

BAT



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



Re: [newbie] Mandrake 9.0 wishlist sidetrack

2002-06-13 Thread Linux Maniac

Sorry for those who do not speak hungarian

Hat ha eddig nem volt nyilvanvalo :-()

Udv! fenn vagy a [EMAIL PROTECTED] listan?

BAT


2002-06-13, cs keltezssel Michael ezt rta:
 On Thursday 13 June 2002 09:32 am, you wrote:
 You mentioned Hungarian spell checkers...magyar vagyok?
 
  On Thu, 13 Jun 2002, Linux Maniac wrote:
   I wonder what you'd like to implemented in the 9.0 release. My
   wishlist is in short:
  
   - a script for installing the nvidia drivers OR a deal with nvidia to
   provide them preinstalled in MDK 9.0
   - Hungarian spell checkers
   - Opera 6.x
   - Mldonkey
   - Latest gtk-gnutella
   - Themable graphical boot
   - More KDE/Gnome themes
   - Support for Mustek ScanMagic 1200 (paralell)
   - Mozilla 1.1
   - Mplayer
   - An advanced control center with more advanced options
   - winex and crossover office
   - preinstalled flash plugin
   - Maybe a gamer's extension 4th CD so on the first 3 CD there would be
   only serious programs and the games of kde/gnome
   - A more discrete and professional Mandrake look (icons, bootup, etc.)
   -Maybe a change of logo?
  
   BAT
 
  No! No soup for you!!
 
 
 

 Want to buy your Pack or Services from MandrakeSoft? 
 Go to http://www.mandrakestore.com






Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



[newbie] Bootsplash

2002-06-07 Thread Linux Maniac

Hi!

I tried changing the bootsplah screen by installing the bootsplash 
themes package and running the scripts as root in /usr/local/bootsplash

The problem is that no matter what I did, the theme wasn't changed 
whenever I restarted...

What's up whit this?

BAT
--

P.S. It would be really cool to change the bootsplah to something more 
professional...

-- 



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



[newbie] kde icon with console and root

2002-04-18 Thread Linux Maniac

Hi!

How can I make a desktop icon in KDE that will start a console with root
rights and also a program in the console?

BAT







Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



[newbie] KDE3 sound server problem

2002-04-05 Thread Linux Maniac

Hi! 
 
I installed kde3 from rpm. When it boots, it says that it can't start the sound 
server (I guess arts). I think oss works fine as mplayer and xmms works fine. 
What can be done? 
 
BAT 
--  



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



  1   2   >