[newbie] USB Flash Drive Config.

2004-10-03 Per discussione Simon Utley
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi all, 
I know there was a thread on this not long ago but it didn't answer my 
problem. I am on Mdk 10 and in order to get my Traveling Disk 2.0 USB Flash 
Drive to work I had to make a directory /mnt/memstick then mount it using 
#mount -t vfat /dev/sda /mnt/memstick.
I had read on the list that Mdk 10 should recognise the drive and put an icon 
on the desktop. If this is the case why is it not happening here.
Simon.
- -- 
Linux Counter number 359744. http://counter.li.org/
GnuPG Key: http://pgp.mit.edu:11371/pks/lookup?op=getsearch=0xE94E2292
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.4 (GNU/Linux)

iD8DBQFBX+s3YreSoOlOIpIRAv5vAKDVwYrmhwZODZ8F1nB20psLmzIILACffguZ
pdvDe5ricBMwlPBAoaZxuzE=
=14Di
-END PGP SIGNATURE-


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



Re: [newbie] USB Flash Drive Config.

2004-10-03 Per discussione Lanman
Simon Utley wrote:
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Hi all, 
I know there was a thread on this not long ago but it didn't answer my 
problem. I am on Mdk 10 and in order to get my Traveling Disk 2.0 USB Flash 
Drive to work I had to make a directory /mnt/memstick then mount it using 
#mount -t vfat /dev/sda /mnt/memstick.
I had read on the list that Mdk 10 should recognise the drive and put an icon 
on the desktop. If this is the case why is it not happening here.
Simon.
Simon, Check to see if you have hotplug installed and that it's 
starting at boot time, then make sure that you've configured your 
desktop to display your mountable device icons - otherwise they may 
mount, but they won't show up on the desktop.

Check for the mountable icons in KcontrolLook'n'Feelbehavior. Check 
the third tab especially and make sure that the checkbox is checked.

HTH
--
Lanman
Registered Linux User #190712

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



Re: [newbie] USB Flash Drive Config.

2004-10-03 Per discussione Simon Utley
On Sunday 03 Oct 2004 13:40, Lanman wrote:


 Simon, Check to see if you have hotplug installed and that it's
 starting at boot time, 
It was installed but not running or set to start at boot. I have now set it to 
run at boot and it is doing so.


 then make sure that you've configured your 
 desktop to display your mountable device icons - otherwise they may
 mount, but they won't show up on the desktop.

 Check for the mountable icons in KcontrolLook'n'Feelbehavior. Check
 the third tab especially and make sure that the checkbox is checked.

I have done that.(There doesn't seem to be a specific icon for USB Flash 
drives?)
 
I rebooted and plugged in the USB drive, its led flickered but no icon on the 
desktop and when I checked the device had not been mounted

Simon.

-- 
Linux Counter number 359744. http://counter.li.org/
GnuPG Key: http://pgp.mit.edu:11371/pks/lookup?op=getsearch=0xE94E2292


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



Re: [newbie] USB Flash Drive Config.

2004-10-03 Per discussione Simon Utley
On Sunday 03 Oct 2004 14:40, Simon Utley wrote:


 I rebooted and plugged in the USB drive, its led flickered but no icon on
 the desktop and when I checked the device had not been mounted
I have created a Desktop icon that, when I am in my Desktop as root, enables 
me just to click on it and it mounts and opens a window displaying the Flash 
Drives contents. I can also unmount the drive by left clicking/unmount. I 
would like to be able to do this on the main desktop as user, not root. How 
do I change the permissions on /dev/sda, which seen not te be 
editable(According to MCC.)???

-- 
Linux Counter number 359744. http://counter.li.org/
GnuPG Key: http://pgp.mit.edu:11371/pks/lookup?op=getsearch=0xE94E2292


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



Re: [newbie] USB flash drive with Mandrake 10.0 CE

2004-09-06 Per discussione bascule
this is how i mount my usb drive in 9.2

i edited my /etc/hotplug/usb.usermap to include the two lines:
# Integral 128mb USB Flash Drive
usbdrive-script  0x0003  0x0d7d   0x14200x   0x  
0x00 0x000x000x000x00   
0x00   0x

the 'usbdrive-script' is a script that i wrote to do mounting and stuff, it is 
placed in /etc/hotplug/usb/

the '0x0d7d' and 0x1420' 3rd and 4th entries on the second line respectively, 
are the usb vendore and product code, even when linux has no driver for a usb 
itme it will know the vendor code and the product code since this is passed 
on as part of the device detection process and is the same for all usb 
devices, you will need to find them for your device, try usbview and look for 
'vendorid' and 'productid'

my 'usbdrive-script' reads:

#!/bin/bash
#
#usbdrive-script
#
sleep 5s
#
echo /home/bascule/scripts/unmountusbdrive  $REMOVER
chmod u+x $REMOVER
#
/home/bascule/scripts/usbdrive

i use the sleep command to allow the device to be fully setup by the drivers, 
the $REMOVER is a variable that is created for each hotplug event, it 
references what should happen when the device is removed, in the past one 
could also use the variable $DEVICE to refer to the mount point but since i 
went to lm9.2 this no longer seemed to work, at least for usb storage 
devices.

the script 'usbdrive' calls a more complicated script that endeavours to 
ascertain the device file for the usbdriev so that it may be mounted and 
unmounted, this more complicated script relies on my usbdrive always being 
identifed in linux as USB DISK Pro and that whenever it is plugged in, it 
is treated as a scsi device and appears as an entry in /proc/scsi/scsi

here is 'usbdrive':
#!/bin/bash
#
#usbdrive
#
devicename=USB DISK Pro
#
. /home/bascule/scripts/finddevice
#
umount $devicefile
umount $symdev
#
mount -o uid=500,gid=500, $devicefile /mnt/usbdrive  play 
/common_stuff/wavs/misc/halawake.wav

in this script /mnt/usbdrive is a mountpoint of my choice, the line 
. /home/bascule/scripts/finddevice runs the finddevice script and uses the 
variables it defines - $devicefile and $symdev, the '' bit just plays a wav 
file if there is a succesfull mount :)

here is the meat, the finddevice script:
#!/bin/bash
#finddevice
#
#first we find the line from /proc/scsi/scsi with
#the device name in
#
#'devicename' should be set by calling script
#
#devicename=USB DISK Pro
line=$(cat /proc/scsi/scsi |grep -n $devicename|gawk '{print $1}'|sed 
's/://g' |head -1)
#
#next we refer to the preceding line that has the host info on
#
newline=$(( $line -1 ))
#
#next we parse 'newline' for host and bus info
host=host$(head -$newline /proc/scsi/scsi |tail -1|gawk '{print $2}'|sed 
's/scsi//')
#
bus=bus$(( $(head -$newline /proc/scsi/scsi |tail -1|gawk '{print $4}') +0 ))
#
target=target$(( $(head -$newline /proc/scsi/scsi |tail -1|gawk '{print $6}') 
+0 ))
#
lun=lun$(( $(head -$newline /proc/scsi/scsi |tail -1|gawk '{print $8}') +0 ))
#
#echo host=$host
#echo bus=$bus
#echo target=$target
#echo lun=$lun
#
#now we make an assumption concerning this device
#we assume that it has one partition and that is numbered 1
part=part1
#if this assumption should ever fail then
#parsing the directory listing of /dev/scsi/$host/$bus/$target/$lun
#would be necessary
devicefile=/dev/scsi/$host/$bus/$target/$lun/$part
echo devicefile=/dev/scsi/$host/$bus/$target/$lun/$part
shortdev=scsi/$host/$bus/$target/$lun/$part
symdev=$(find /dev -lname $shortdev)

there's an echo in the last lines for using on the command line while testing,
the variable $symdev should be the symlink under the /dev tree that links to 
the full /dev/scsi/.device file

for completeness my 'unmountusbdrive' script is:
#!/bin/bash
#
#unmountusbdrive
#
umount /mnt/usbdrive  play /common_stuff/wavs/misc/halsmind.wav

note that above is used the mount command with the options:
 -o uid=500,gid=500
my user has 500 as uid and gid, ymv

this results in every plugin of my pen drive mounting in the same place as my 
normal user, playing a wav when mounted and also when unmounted, note that i 
always issue a manual 'sync' on the command line before unplugging, and watch 
the little led on the device stop falshing before unplugging

i use lm9.2 and thus devfs, i'm told that using udev will make all this 
redundant since there will then be a built in way to refer to a device in way 
that will not change between boots and thus specify mount point etc in a 
better way

anyway, maybe this will be of use?

bascule

On Monday 06 Sep 2004 6:57 pm, Matt Smith wrote:
 manually (this is very quick in Rox-Filer).  I have tried creating a
 separate mount point for the drive and adding a new line in fstab but when
 I plug the drive in Mandrake just creates '/mnt/removable' preventing me
 from mounting the drive at my mount point.
 Does anyone have any suggestions as to how I could improve the 

Re: [newbie] USB flash drive with Mandrake 10.0 CE

2004-09-06 Per discussione G Dawes

--- Matt Smith [EMAIL PROTECTED] wrote:

 Hi,
 I have just bought a 256MB Verbatim USB flash drive
 to make it easier to 
 transfer files between home and university.  When I
 plug the drive into my USB 
 port Mandrake recognises the drive and creates a
 mount point '/mnt/removable/' 
 to which it mounts the drive.  This allows me to
 acess the drive and read and 
 write to it.  My problem is that I would like to be
 able to unmount the drive 
 without logging in as root (at the moment Mandrake
 only allows root to unmount 
 the drive).  I would also like to have a permanant
 mount point that I can link 
 to from my home directory,  I don't mind mounting
 and unmounting the drive 
 manually (this is very quick in Rox-Filer).  I have
 tried creating a separate 
 mount point for the drive and adding a new line in
 fstab but when I plug the 
 drive in Mandrake just creates '/mnt/removable'
 preventing me from mounting the 
 drive at my mount point.
 Does anyone have any suggestions as to how I could
 improve the situation with 
 the drive?
 Cheers,
 Matt.
 
 -- 
 Matt Smith
 [EMAIL PROTECTED]
 
 
If I understand your problem correctly , you want to
change premissions for the mount point ,  Trychmod
666 /mnt/removable
, one thing to consider this gives everyone
premission to unmount the drive .
If I am mistaken in this I am sure that others will
correct me and the fix is very easy . 

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


=
Registered Linux user #365305



__
Do you Yahoo!?
Y! Messenger - Communicate in real time. Download now. 
http://messenger.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] USB Flash memory mounted but does not function

2004-05-20 Per discussione hertas

Dear Friends,

I have an IOMEGA 128 mb USB (1.1)  flash memory. When I plug it to USB port
my system ( Mandrake 10.0 - kernel 2.6. ) recognizes and mounts it under
/mnt/removable but when I want to go into it and save a data and to copy
files from that ; System says that device is not reachable. ( There is no
problem with permissions !! )
I think , there is something wrong with the installation of this flash
memory..

This device was well running under Mandrake 9.2.. !!

What do you recommmend ?

Best regards

H.ERTAS



__




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



[newbie] USB Flash memory.

2004-05-17 Per discussione hertas


Dear Friends,

I have an IOMEGA 128 mb USB (1.1)  flash memory. When I plug it to USB port
my system ( Mandrake 10.0 - kernel 2.6. ) recognizes and mounts it under
/mnt/removable but when I want to go into it and save a data and to copy
files from that. System says that device is not reachable. I think , there
is something wrong with the installation of this flash memory..

This device was well running unde Mandrake 9.2.. !!

What do you recommmend ?

Best regards

H.ERTAS




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



Re: [newbie] Mozilla Flash problem

2003-12-21 Per discussione Rob Blomquist
On Saturday 20 December 2003 8:55 pm, Brian Parish wrote:
 Two 9.2 boxes.  Both running Mozilla as included in the distro.  Both
 have the flash files in /usr/lib/mozilla-1.4/plugins

 On one, help  about plugins shows flash and it works.
 On the other help  about plugins shows no flash and of course it
 doesn't.

Yes, there is one specific file that is missing that urpmi caught for me, and 
I forget the name. Maybe you can find it in the archives, or maybe you will 
catch it by doing the install with urpmi.

Or maybe you can find it by looking into the dependences with Kpackage and 
seeing if you have them all.

-- 

Linux: For the people, by the people.
Linux Counter #183693 http://counter.li.org/


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


[newbie] Mozilla Flash problem

2003-12-20 Per discussione Brian Parish
Two 9.2 boxes.  Both running Mozilla as included in the distro.  Both
have the flash files in /usr/lib/mozilla-1.4/plugins

On one, help  about plugins shows flash and it works.
On the other help  about plugins shows no flash and of course it
doesn't.

Any suggestions on where else to look?

TIA
Brian


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


[newbie] Macromeida flash plug-in installation on mozilla - I did something wrong !!

2003-11-13 Per discussione hertas

Dear Friends ,

I dowloaded macromedia flash plug-in from Macromedia's site and installed
it. Eveything seems fine with the installation. Plug - in was installed in
myusername/home/.mozilla/ . But when I enter a site including flash , still
it can not be seen.!! How can I activate it ? Or is my installation faulty.
???


Hertas





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


Re: [newbie] Macromeida flash plug-in installation on mozilla - I did something wrong !!

2003-11-13 Per discussione Jerry Barton
On Thu, 13 Nov 2003 10:13:49 +0200
[EMAIL PROTECTED] wrote:

 
 Dear Friends ,
 
 I dowloaded macromedia flash plug-in from Macromedia's site and
 installed it. Eveything seems fine with the installation. Plug - in
 was installed in myusername/home/.mozilla/ . But when I enter a site
 including flash , still it can not be seen.!! How can I activate it ?
 Or is my installation faulty.???
 
 
 Hertas

it should be installed at /usr/lib/mozilla-1.x/

(where x is your mozilla version.. be it 1.3, 1.4, 1.5...)
HTH
Jerry.

-- 
_||_  Registered linux user #300600 
 (o_  Registered linux machine # 185855  
 //\at   
 V_/_ http://counter.li.org  

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


Re: [newbie] Macromeida flash plug-in installation on mozilla - I did something wrong !!

2003-11-13 Per discussione Harv Nelson
[EMAIL PROTECTED] wrote:

Dear Friends ,

I dowloaded macromedia flash plug-in from Macromedia's site and installed
it. Eveything seems fine with the installation. Plug - in was installed in
myusername/home/.mozilla/ . But when I enter a site including flash , still
it can not be seen.!! How can I activate it ? Or is my installation faulty.
???
Hertas

 

I had a similar problem.  There were several copies of flashplayer.xpt 
and libflash...so in various directories on my drive.  I deleted them 
all.  Then, I installed the RPM I found on this site:

ftp://ruslug.rutgers.edu/pub/macromedia/urpmi/mandrake/9.2/RPMS/

This was the only one I could get to work.

Harv



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


[newbie-it] flash pen samsung

2003-10-04 Per discussione pigi
Salve,
ho acquistato una flash memory usb 2.0 samsung ma non riesco a montarla!

Premetto che usavo benissimo un'altra flash montandola con mount n/dev/sda1

Chi mi aiuta?


uso mdk 9.0 (kernel 2.4.19)

pigi




Fwd: Re:[newbie-it] flash pen samsung

2003-10-04 Per discussione pigi



 una domanda di queste è del tipo: la mia macchina non parte...che può
 essere? cerca di essere più chiaro. che errori mostra quando esegui mount?

hai ragione, scusa

con mount /dev/sda1 mi dice che devo specificare il filesistem

ho provato con mount -t msdos /dev/sda1 /mnt/removable

e mi dice

 tipo fs errato, opzione non valida, superblocco su /dev/sda1 danneggiato,
   o troppi file system montati



Quello che non capisco è perche' con l'altro dispositivo da 128MB mi
riconosceva tutto senza problemi...

ci capisci?

---




Re: Fwd: Re:[newbie-it] flash pen samsung

2003-10-04 Per discussione Corrado
Il sab, 2003-10-04 alle 22:11, pigi ha scritto:

 Quello che non capisco è perche' con l'altro dispositivo da 128MB mi
 riconosceva tutto senza problemi...
 
 ci capisci?
 

Ma l'altra era usb 2.0 o 1.1? Dovrebbe funzionare lo stesso, ma non si
sa mai... 
-- 
Corrado




Re: [newbie] Compact Flash Card in PCMCIA slot does not work in 9.0, it did work in Mdk 8.2

2003-09-05 Per discussione drake
This is also broken in 2.4.21-0.13mdk as best I can tell.  I had it working in 
8.2 no problem.

Hopefully someone working on 9.2 will catch on to this.  It's so nice when 
things work.

On Saturday 15 February 2003 06:26 am, bones wrote:
 Hi everyone,

 now I just upgraded to Kernel:

 #uname -a
 Linux me 2.4.19-24mdk #1 Thu Jan 30 13:13:07 MST 2003 i686 unknown unknown
 GNU/Linux

 Because I thought it might be a Kernel issue. As I said everthing worked
 fine in Mdk 8.2 but it is broken since 9.0. The issue is, that I cannot
 mount the card anymore. When I plug it in the Notebook (IBM Thinkpad A22p)
 I get the following output in /var/log/messages:

 Feb 15 10:40:21 dclient217-162-39-126 kernel: cs: memory probe
 0xa000-0xa0ff: clean.
 Feb 15 10:40:24 dclient217-162-39-126 kernel: hde: 3S SYSTEM, ATA DISK
 drive Feb 15 10:40:24 dclient217-162-39-126 kernel: ide2 at
 0x100-0x107,0x10e on irq 3
 Feb 15 10:40:24 dclient217-162-39-126 kernel: hde: 250368 sectors (128 MB)
 w/2KiB Cache, CHS=978/8/32
 Feb 15 10:40:24 dclient217-162-39-126 kernel:
 /dev/ide/host2/bus0/target0/lun0: p1
 Feb 15 10:40:24 dclient217-162-39-126 kernel: devfs_do_symlink(disc0):
 could not append to parent, err: -17
 Feb 15 10:40:24 dclient217-162-39-126 kernel: ide_cs: hde: Vcc = 3.3, Vpp =
 0.0
 Feb 15 10:40:24 dclient217-162-39-126 kernel:
 /dev/ide/host2/bus0/target0/lun0: p1
 Feb 15 10:40:24 dclient217-162-39-126 kernel: devfs_do_symlink(disc0):
 could not append to parent, err: -17
 Feb 15 10:40:25 dclient217-162-39-126 kernel:
 /dev/ide/host2/bus0/target0/lun0: p1
 Feb 15 10:40:25 dclient217-162-39-126 kernel: devfs_do_symlink(disc0):
 could not append to parent, err: -17
 Feb 15 10:40:25 dclient217-162-39-126 kernel:
 /dev/ide/host2/bus0/target0/lun0: p1
 Feb 15 10:40:25 dclient217-162-39-126 kernel: devfs_do_symlink(disc0):
 could not append to parent, err: -17

 The last two lines continue forever if I don't take out the CF card again.
 While the card is in the system monitor shows me 100% processor activity
 and top shows me that drakupdate_fstab is running at top but takes up only
 10% of of CPU power, so I guess it is the Kernel that needs the rest.

 # dmesg
 VFS: Disk change detected on device 21:00
  /dev/ide/host2/bus0/target0/lun0: p1
 devfs_do_symlink(disc0): could not append to parent, err: -17

 which repeats itself again...


 in my /etc/fstab I have:
 /dev/hde1 /mnt/flash auto noauto,user 0 0

 which worked just fine in Mdk 8.2. Anyway I think it is not an fstab
 business because of the /var/log/messages output...

 I guess I will try to get the old kernel from 8.2 in 9.0 if that works it
 isn't such a big deal - I just need it to put some mp3 on the CF for the
 Zaurus, I can do that with a dual boot.

 But help is still very much apreciated, there may be something wrong with
 Mdk9.0 or the Kernel they are using... Anyway that is my guess until
 someone shows me that I was really stupid and forgot the obvious again.

 some more infos:
 the 100% CPU use stays a few minutes after I took the CF card out and
 plugging in the card in the second slot does not help - tha same thing
 happens...

 Kernel 2.4.19-16mdk (I guess) which is standard in 9.0 had the same issue,
 the only one that I tested and worked is the one in 8.2.

 I keep my newbie and expert mails, it dates back until end of last year. I
 searched them for Compact Flash and CF card and got no useful messages
 that indicate this issue has already been addressed. But if it was - please
 point me to the right direction.

 Thank you,
 b.


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


Re: [newbie] Compact flash disk reader.

2003-07-20 Per discussione John Richard Smith
James Henry Maiewski wrote:

On Saturday 19 July 2003 05:31 am, Anne Wilson wrote:
 

On Saturday 19 Jul 2003 12:14 am, manolis wrote:
   

Anyway...
Although I didn't figured out what is going on I also want to ask
related to the this problem:
Any time that I plug in my USB reader it gets another name in the
/dev tree for example the first time I pluged it in I get: /dev/sda
when I unplugged it and replug it again I get : /dev/sdb  etc...
etc...
I think this is related to my problem...
How can I remove the faulty /dev/..   links?
This doesn't happen with my USB flash thumb drive that automounts
fine , and every time I plug it in I get: /dev/sdb1
Please Help..!!
 

Hi, Manolis.  I think that when you use more than one removable device
the system sometimes gets confused.  I have a similar problem.  When
it happens to me I just open up the MCC, Hardware List.  It should
re-detect the device and mount it correctly.
Anne
   

Hello,

	If this doesn't seem obviouslywrong, I wnder if you are umounting the 
/dev/sda1 before unplugging it?

	There was another USB/Flash question regarding supermount.  I just have a 
simple '/dev/sda1 /mnt/fubar auto auto,user,noauto,ro 0 0' line in fstab and 
I get a nifty icon (in 9.1) on the desktop after boot (even when there is no 
disk in the reader.  All I have to do is put a disk in and click the icon... 
voila!  I think its great, and I don't have to deal with any super-dooper 
anything.

For what my opinion is worth,
	-Jim
 

My multi port card reader is setup like this in fstab,
/dev/sdb1 /mnt/hd auto 
user,iocharset=iso8859-15,kudzu,codepage=850,noauto,umask=0,exec 0 0

I have an Icon on desktop which gives me instant access  to media.
I can also use command line.
One proviso though, as I learnt the hard way. If you don't have a media 
card in the device during the installation phase of Mandrake it will not 
create a working node device in /dev  directory, and although I found 
out how to remove and recreate the device it did not last more than that 
single session, which made it a pain.
So, if  you can spare the time and know how, recompile the kernel with a 
card inserted, otherwise wait until your next mandrake install and 
remember to insert the media into the reader before you begin the device 
detection fase of the install.

I guess the mandrake team need to address this issue of device detection 
without a media card inserted.

John



--
John Richard Smith
[EMAIL PROTECTED] 



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


Re: [newbie] Compact flash disk reader.

2003-07-20 Per discussione manolis
I think you misunderstood my problem:

I am newbie in linux but I have learned how to mount/unmount my devices.
The problem with the CF reader is that when I try to mount it I get R/W 
error!. If I try to force the filesystem of the mount command ( -t vfat 
for example..) I get Error Fs! . no superblock.
The same thing does NOT happen when I use a USB flash thumb drive of 64MB.


thank you for your posts



Facts:
1. It autodetects in the first available /dev/sd*   position. 
(sda,sdb,sdc,sdd,sde)
2. It doesn't mount or umount automatically or manually as my USB flash 
thumbdrives do...
3. Even If I unplugged it, it leaves the his instance in the /dev/sd* tree 
each time I plug it in. (to understand: after 7 plugins and unplugins in USB 
in harddrake2 I get : sda,sdb,sdc,sdd,sdf,sde,sdg)
4. For each replug it leaves a system process with name usb-storage-0,1,2,3 
etc...
5. After many retries it is possible beacuse of the meny /dev/sd* instances I 
have to reboot to use ANY usb devices. Even the lsusb gives me errors...
6. I am sure that I have a CF inside the reader, and both CF reader and thumb 
drive work fine in XP with native support.




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


Re: [newbie] Compact flash disk reader.

2003-07-20 Per discussione manolis
I already tried it in console.
Nothing different...
I cannot mount it so it can the be unmounted!



  20  2003 17:30, / Dennis Myers :
 On Sunday 20 July 2003 04:58 am, manolis wrote:
  I think you misunderstood my problem:
 
  I am newbie in linux but I have learned how to mount/unmount my devices.
  The problem with the CF reader is that when I try to mount it I get R/W
  error!. If I try to force the filesystem of the mount command ( -t
  vfat for example..) I get Error Fs! . no superblock.
  The same thing does NOT happen when I use a USB flash thumb drive of
  64MB.
 
 
  thank you for your posts
 
 
 
  Facts:
  1. It autodetects in the first available /dev/sd*   position.
  (sda,sdb,sdc,sdd,sde)
  2. It doesn't mount or umount automatically or manually as my USB flash
  thumbdrives do...
  3. Even If I unplugged it, it leaves the his instance in the /dev/sd*
  tree each time I plug it in. (to understand: after 7 plugins and
  unplugins in USB in harddrake2 I get : sda,sdb,sdc,sdd,sdf,sde,sdg)
  4. For each replug it leaves a system process with name
  usb-storage-0,1,2,3 etc...
  5. After many retries it is possible beacuse of the meny /dev/sd*
  instances I have to reboot to use ANY usb devices. Even the lsusb gives
  me errors... 6. I am sure that I have a CF inside the reader, and both CF
  reader and thumb drive work fine in XP with native support.

 Manolis, hi again, as I said you have to mount and umount from a command
 line console. If you do not umount the device it will leave that instance
 on the system until power down.  Try from a su console,  mount /dev/sda1
 and then look for a removable media in /mnt . Once you finish with it you
 should then do umount /dev/sda1 and the next time you won't be at sdb and
 so forth. HTH

-- 
___
[EMAIL PROTECTED]
Enter the fields of battle at ...
http://www.kingsofchaos.com/page.php?id=795528
___
There are 10 types of humans.
Those who understand computers,
and those who don't.



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


Re: [newbie] Compact flash disk reader.

2003-07-19 Per discussione Anne Wilson
On Saturday 19 Jul 2003 12:14 am, manolis wrote:
 Anyway...
 Although I didn't figured out what is going on I also want to ask
 related to the this problem:
 Any time that I plug in my USB reader it gets another name in the
 /dev tree for example the first time I pluged it in I get: /dev/sda
 when I unplugged it and replug it again I get : /dev/sdb  etc...
 etc...
 I think this is related to my problem...
 How can I remove the faulty /dev/..   links?
 This doesn't happen with my USB flash thumb drive that automounts
 fine , and every time I plug it in I get: /dev/sdb1

 Please Help..!!

Hi, Manolis.  I think that when you use more than one removable device 
the system sometimes gets confused.  I have a similar problem.  When 
it happens to me I just open up the MCC, Hardware List.  It should 
re-detect the device and mount it correctly.

Anne

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


Re: [newbie] Compact flash disk reader.

2003-07-19 Per discussione James Henry Maiewski
On Saturday 19 July 2003 05:31 am, Anne Wilson wrote:
 On Saturday 19 Jul 2003 12:14 am, manolis wrote:
  Anyway...
  Although I didn't figured out what is going on I also want to ask
  related to the this problem:
  Any time that I plug in my USB reader it gets another name in the
  /dev tree for example the first time I pluged it in I get: /dev/sda
  when I unplugged it and replug it again I get : /dev/sdb  etc...
  etc...
  I think this is related to my problem...
  How can I remove the faulty /dev/..   links?
  This doesn't happen with my USB flash thumb drive that automounts
  fine , and every time I plug it in I get: /dev/sdb1
 
  Please Help..!!

 Hi, Manolis.  I think that when you use more than one removable device
 the system sometimes gets confused.  I have a similar problem.  When
 it happens to me I just open up the MCC, Hardware List.  It should
 re-detect the device and mount it correctly.

 Anne

Hello,

If this doesn't seem obviouslywrong, I wnder if you are umounting the 
/dev/sda1 before unplugging it?

There was another USB/Flash question regarding supermount.  I just have a 
simple '/dev/sda1 /mnt/fubar auto auto,user,noauto,ro 0 0' line in fstab and 
I get a nifty icon (in 9.1) on the desktop after boot (even when there is no 
disk in the reader.  All I have to do is put a disk in and click the icon... 
voila!  I think its great, and I don't have to deal with any super-dooper 
anything.

For what my opinion is worth,
-Jim


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


Re: [newbie] Compact flash disk reader.

2003-07-18 Per discussione manolis
Anyway...
Although I didn't figured out what is going on I also want to ask
related to the this problem:
Any time that I plug in my USB reader it gets another name in the /dev tree
for example the first time I pluged it in I get: /dev/sda when I unplugged it 
and replug it again I get : /dev/sdb  etc... etc...
I think this is related to my problem...
How can I remove the faulty /dev/..   links?
This doesn't happen with my USB flash thumb drive that automounts fine , and 
every time I plug it in I get: /dev/sdb1

Please Help..!!




  17  2003 11:58, / manolis :
 Hi,
 I have a transcend CF reader with USB interface.
 When I connect it to my system (mdk 9.1).
 It does show up in dev/sda and also at the /dev/scsi/ tree
 BUT it doesn't automount.
 When I try to mount it manually it tells me about read write error or error
 in file system. ( I tried auto,vfat,msdos)
 (Another USB flash drive that I have (64MB) it is working fine!)
 I am pretty newbie in linux so I have some questions:

 1. When a device attaches itshelf on /dev tree does this automatically
 mean that the device is ALSO supported?
 2. If the #1 is no , how can I find if it is supported? ( I know the device
 can work with generic USB storage support from winXP).

 Any help for the setup of the drive is wanted

 Thank you in advance.
 Manolis

-- 
___
[EMAIL PROTECTED]
Enter the fields of battle at ...
http://www.kingsofchaos.com/page.php?id=795528
___
There are 10 types of humans.
Those who understand computers,
and those who don't.



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


[newbie] Compact Flash reader

2003-07-18 Per discussione Dennis Myers
Manolis, I have been off list for a while and don't know if you have received 
an answer to your question. What works for me is to open a terminal and as 
root type in mount   /dev/sda1 and then when I look in konqueror file 
manager under /mnt there is a removable drive shown, click on that and the 
flash contents become available. I don't know why it does not auto mount 
except that it may be because it is seen as a removable disk.??? Anyway give 
the mount command a go. Luck, 
-- 
Dennis M. linux user #180842

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


Re: [newbie-it] Flash memory non va!!

2003-06-21 Per discussione Ivano Natalini
Cia Sandro, scusa se ho omesso questo particolare, in pratica ho cercato di 
fare il mount del device che sta sotto /dev/usb, ma con mia grande sorpresa 
sotto questa cartella non ci sono device, quindi ho provato a smanettare con 
altri device che stanno sotto la cartella /dev, come per esempio scd0, che 
alcuni deputano come USB, ma senza successo, il responso del mount è: 'stai 
tentando di montare un device a caratteri.'
Altro non so dirti...mi è sembrato di capire però che forse il mio mdk 9 non è 
configurato a dovere, a tale scopo ti mando il risultato del cat 
/var/log/dmesg (la parte riguardante le USB):

Real Time Clock Driver v1.10e
usb.c: registered new driver usbdevfs
usb.c: registered new driver hub
usb-ohci.c: USB OHCI at membase 0xd083a000, IRQ 9
usb-ohci.c: usb-00:07.4, Advanced Micro Devices [AMD] AMD-756 [Viper] USB
usb-ohci.c: AMD756 erratum 4 workaround
usb.c: new USB bus registered, assigned bus number 1
hub.c: USB hub found
hub.c: 4 ports detected
usbdevfs: remount parameter error

Grazie per ogni aiuto possibile.




Alle 20:11, venerdì 20 giugno 2003, Sandro ha scritto:
 Alle 17:01, venerdì 20 giugno 2003, Ivano Natalini ha scritto:
  Salve a tutti. Ho un problema con la penna flash memory di 64 MB, che
  sotto win2000 va tranquillamente, ma quando l'attacco sotto mdk 9,
  lampeggia il led senza poterla montare, tr 'altro sono impazzito a
  trovare il device da montare, ma non ci sono riuscito.
  Aiuto..

 Ciao
 Per favore spiega quali sono i comandi che hai dato e le modalità con
 cui hai provato a fare la cosa. La spegazione è un po' troppo generica
 e abbiamo bisogno di più informazioni per poterti aiutare.
 Ciao
 Sandro




Re: [newbie-it] Flash memory non va!!

2003-06-21 Per discussione Sandro
Alle 16:42, sabato 21 giugno 2003, Ivano Natalini ha scritto:
 Cia Sandro, scusa se ho omesso questo particolare, in pratica ho
 cercato di fare il mount del device che sta sotto /dev/usb, ma con
 mia grande sorpresa sotto questa cartella non ci sono device, quindi
 ho provato a smanettare con altri device che stanno sotto la cartella
 /dev, come per esempio scd0, che alcuni deputano come USB, ma senza
 successo, il responso del mount è: 'stai tentando di montare un
 device a caratteri.'
 Altro non so dirti...mi è sembrato di capire però che forse il mio
 mdk 9 non è configurato a dovere, a tale scopo ti mando il risultato
 del cat /var/log/dmesg (la parte riguardante le USB):

[cut]

Ciao
puoi provare ad utilizzare il device sdan, prova da root con questo 
comando:
mount -t vfat /dev/sda1 /mnt/tuadirectory


Controlla, inoltre, di avere l'usb storage attivato
Questo è un estratto del mio dmesg, vedi se c'è qualcosa di simile nel 
tuo:

usb-uhci.c: interrupt, status 2, frame# 1417
scsi0 : SCSI emulation for USB Mass Storage devices
  Vendor: SIIG  Model: CompactFlash Car  Rev: 0113
  Type:   Direct-Access  ANSI SCSI revision: 02
WARNING: USB Mass Storage data integrity not assured
USB Mass Storage device found at 2
USB Mass Storage support registered.
Attached scsi removable disk sda at scsi0, channel 0, id 0, lun 0

Per dare un'occhiata in fretta puoi caricare il Centro di Controllo di 
KDE, andare su Informazioni, quindi su Dispositivi USB evedere se 
hai qualcosa di simile a questo:

- USB UHCI Root hub (1)
  - USB Storage Device

Se selezioni quest'ultimo, nella finestra a destra, dovresti avere la 
descrizione della tua periferica - ciò significa che è stata 
riconosciuta. A questo punto dai il comando di mount descritto sopra 
(da root) e dovrebbe funzionare.
Ciao e fammi sapere,
Sandro

-- 
Dr. Sandro Porrazzini - [EMAIL PROTECTED]
GNU/Linux 2.4.21 on Pentium III - 733 Mhz
Linux User # 203143
Linux Machine # 175781



Re: [newbie] USB Flash disk

2003-06-21 Per discussione Len Lawrence
On Sun, 15 Jun 2003 08:39:07 -0400
Greg Meyer [EMAIL PROTECTED] wrote:

 On Saturday 14 June 2003 04:44 pm, Aron Smith wrote:
  Bought one of those little usb pendrives M9.1 reconizes it but it is read
  only any body know how to reset it to r/w ?
 
 I recall this happened to me somewhere and I recall right-clicking the device 
 somewhere and being able to select whether I wanted to change it to 
 read/write mode.  Perhaps in the file management view of konqueror.

Did you ever get this to work Aron?  As I said earlier, mine worked out of the
box under Mandrake 8.2, but have just installed 9.1 on the older PC and found
that mount would only bring it up as read only.  There was a suspicious entry
in /etc/fstab for the pendrive (auto in the line and kudzu in the attribute
list).  Having deleted that entry I could mount it fine from the command line
  mount -t ext2 /dev/sda1 /z
An earlier attempt, before modifying fstab, was
  mount -t ext2 -w /dev/sda1 /z
which failed with a message indicating that the device was write protected.
It objected to the -w option.  This implies that 8.2 either does not check
for write protection or ignores it.
-- 
Len Lawrence
--
The most serious doubt that has been thrown on the authenticity of the
biblical miracles is the fact that most of the witnesses in regard to
them were fishermen.
-- Arthur Binstead
--

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


[newbie-it] Flash memory non va!!

2003-06-20 Per discussione Ivano Natalini
Salve a tutti. Ho un problema con la penna flash memory di 64 MB, che sotto 
win2000 va tranquillamente, ma quando l'attacco sotto mdk 9, lampeggia il led 
senza poterla montare, tr 'altro sono impazzito a trovare il device da 
montare, ma non ci sono riuscito.
Aiuto..




[newbie] usb flash drive

2003-06-15 Per discussione Aron Smith
Anybody know how to reset my usb flashdrive to R/W
 its R/O now

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


Re: [newbie] usb flash drive

2003-06-15 Per discussione Paul
On Sun, 2003-06-15 at 09:58, Aron Smith wrote:
 Anybody know how to reset my usb flashdrive to R/W
  its R/O now

Do you have a line for it in /etc/fstab? I guess you'd have to set
something there, for users to r/w it.

Paul

-- 
Modern art is what happens when painters stop looking at girls 
and persuade themselves that they have a better idea. 
-John Ciardi 

http://nlpagan.net - Linux Mandrake - Ximian Evolution


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


Re: [newbie] USB Flash disk

2003-06-15 Per discussione Greg Meyer
On Saturday 14 June 2003 04:44 pm, Aron Smith wrote:
 Bought one of those little usb pendrives M9.1 reconizes it but it is read
 only any body know how to reset it to r/w ?

I recall this happened to me somewhere and I recall right-clicking the device 
somewhere and being able to select whether I wanted to change it to 
read/write mode.  Perhaps in the file management view of konqueror.
-- 
Greg


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


[newbie] USB Flash disk

2003-06-14 Per discussione Aron Smith
Bought one of those little usb pendrives M9.1 reconizes it but it is read only 
any body know how to reset it to r/w ?

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


Re: [newbie] Galeon Flash Plug-in

2003-06-13 Per discussione Anne Wilson
On Thursday 12 Jun 2003 11:20 pm, RichardA wrote:
 On 12 Jun 2003 17:38:12 -0400

 It's worse than that, T. As Linux users, we're barred from
 experiencing the wonderful world of Shockwave. We'll just have to
 make do with the useful part of the web.

 And yes, my plugin is out of date. It goes with my computer,
 clothes, music...

Awww - sob, sobg

Anne


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


Re: [newbie] Galeon Flash Plug-in

2003-06-13 Per discussione Technoslick
On Thu, 2003-06-12 at 22:10, Carroll Grigsby wrote:
 On Thursday 12 June 2003 08:43 pm, Aron Smith wrote:
  On Thu, 2003-06-12 at 16:35, Technoslick wrote:
   On Thu, 2003-06-12 at 18:20, RichardA wrote:
On 12 Jun 2003 17:38:12 -0400
   
Technoslick [EMAIL PROTECTED] wrote:
 On Thu, 2003-06-12 at 17:25, RichardA wrote:
  On Thu, 12 Jun 2003 21:39:02 +0100
 
  Anne Wilson [EMAIL PROTECTED] wrote:
   On Thursday 12 Jun 2003 6:01 pm, RichardA wrote:
 
 big snip

 T
   
It's worse than that, T. As Linux users, we're barred from experiencing
the wonderful world of Shockwave. We'll just have to make do with the
useful part of the web.
   
And yes, my plugin is out of date. It goes with my computer, clothes,
music...
  
   Right awn, Brother!
 
  who needs ads in Shockwave? usually I find sites that insist on
  Shockwave are not worth watching.
 
   T
 
 It is a minor problem here. I do some surfing with 3 year old grandson at 
 various kiddie sites that intermingle Flash and Shockwave stuff (mostly 
 www.nickjr.com). Will doesn't want to hear about OSS vs proprietary, nor the 
 evilness of all things Microsoft; he just wants to play the game.

Fortunately, both my daughters are of adults. I got past that issue long
ago. Grandchilden are a ways away. By then, Linux will be he 'de facto'
O/S and this will have been a moot point for me. ;0)

When I was giving Richard a '70s Right on!, I was replying to the time
period I speculated his comment of age, clothes, etc., were based on. I
have no personal issues against Shockwave, or any other display media
that can enrichen my experience on the Web. My complaints come when the
Webmaster takes such liberties as to not allow for visitors'
preferences. Those with bandwidth restrictions and/or have throttled
down their browsers for whatever their reasons shouldn't be forced to
endure these presentations. I have visited sites that used Flash and
Shockwave as a means to give a presentation in an environment of choice
and need. Both are excellent ways to give someone a tour of your product
or explanation of how your service works. It's the opening message crap
that is annoying and not fair to many. So, I would like to see all of
these rich mediums come to Linux. 

Your Grandson's attitude about just wanting it to work is shared by all
youth of today ( many spouses, I do imagine.) My youngest is 19 and
she'd say exactly the same thing. Unfortunately, I could say the same
for my wife.:0[

T


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


Re: [newbie] Galeon Flash Plug-in

2003-06-13 Per discussione Anne Wilson
On Friday 13 Jun 2003 11:46 am, Technoslick wrote:

 Your Grandson's attitude about just wanting it to work is shared by
 all youth of today ( many spouses, I do imagine.) My youngest is 19
 and she'd say exactly the same thing. Unfortunately, I could say
 the same for my wife.:0[

Hey, haven't we all said it in exasperation? g

Anne

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


Re: [newbie] Galeon Flash Plug-in

2003-06-13 Per discussione Carroll Grigsby
On Friday 13 June 2003 06:46 am, Technoslick wrote:
 On Thu, 2003-06-12 at 22:10, Carroll Grigsby wrote:
 
  It is a minor problem here. I do some surfing with 3 year old grandson at
  various kiddie sites that intermingle Flash and Shockwave stuff (mostly
  www.nickjr.com). Will doesn't want to hear about OSS vs proprietary, nor
  the evilness of all things Microsoft; he just wants to play the game.

 Your Grandson's attitude about just wanting it to work is shared by all
 youth of today ( many spouses, I do imagine.) My youngest is 19 and
 she'd say exactly the same thing. Unfortunately, I could say the same
 for my wife.:0[

 T

T:
Will is actually very good about the whole thing. He even puts up with my 
dialup connection (although he has cable access at home), using the download 
progress screen to develop his numbers skills. OK, OK, I'll confess -- it's 
me that gets fidgetty.

Now to check into that Crossover plugin lead --

-- cmg


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


Re: [newbie] Galeon Flash Plug-in

2003-06-13 Per discussione Tom Brinkman
On Thursday June 12 2003 05:20 pm, RichardA wrote:

 It's worse than that, T. As Linux users, we're barred from
 experiencing the wonderful world of Shockwave. We'll just have to
 make do with the useful part of the web.

 And yes, my plugin is out of date. It goes with my computer,
 clothes, music...

 Richard

 Mandrake rpm, FlashPlayer-6.0-3mdk. I installed it and did 
nothin else. All browsers I use (mozilla  konqueror, flash is 
enabled for galeon too) are automagically flash enabled.  FWIW, I 
detest flash, but I hate gettin error mesg's from flash web pages 
even more. Same deal with java, Mandrake rpm, j2re-1.4.1_01-5mdk, 
install it, nothin else needs to be done.
-- 
Tom Brinkman  Corpus Christi, Texas


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


[newbie] Galeon Flash Plug-in

2003-06-12 Per discussione Chris Blake
Greetings,

With MDK 9 I installed a flash-player plug-in for Galeon, however, since
moving to 9.1 (clean install) I cannot find the appropriate plug-in.

I tried installing the plug-in I downloaded for when I was using MDK 9,
but it don`t do anything.

I`m trying to access http://www.epson.co.uk/selector2/selector.htm and
there it has a link to download the flash plug-in, but Flash site
responds by saying I don`t have a compatible browser...

Any ideas ?
-- 
Chris Blake
Office : (011) 782-0840
Cell : 083 985 0379

Ad astra per aspera.
[To the stars by aspiration.]


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


Re: [newbie] Galeon Flash Plug-in

2003-06-12 Per discussione Steven Broos
I don't think that's flash, but a Java Applet.
(www.sun.com)
Didn't get that working in galeon yet... but didn't try much :-)

Steven

On Thu, 2003-06-12 at 12:52, Chris Blake wrote:
 Greetings,
 
 With MDK 9 I installed a flash-player plug-in for Galeon, however, since
 moving to 9.1 (clean install) I cannot find the appropriate plug-in.
 
 I tried installing the plug-in I downloaded for when I was using MDK 9,
 but it don`t do anything.
 
 I`m trying to access http://www.epson.co.uk/selector2/selector.htm and
 there it has a link to download the flash plug-in, but Flash site
 responds by saying I don`t have a compatible browser...
 
 Any ideas ?


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


Re: [newbie] Galeon Flash Plug-in

2003-06-12 Per discussione Chris Blake
Thanks Steven, 

I`ll try the link you`ve supplied

Thanks for your time in responding...

Regards


On Thu, 2003-06-12 at 12:46, Steven Broos wrote:
 I don't think that's flash, but a Java Applet.
 (www.sun.com)
 Didn't get that working in galeon yet... but didn't try much :-)
 
 Steven
 
 On Thu, 2003-06-12 at 12:52, Chris Blake wrote:
  Greetings,
  
  With MDK 9 I installed a flash-player plug-in for Galeon, however, since
  moving to 9.1 (clean install) I cannot find the appropriate plug-in.
  
  I tried installing the plug-in I downloaded for when I was using MDK 9,
  but it don`t do anything.
  
  I`m trying to access http://www.epson.co.uk/selector2/selector.htm and
  there it has a link to download the flash plug-in, but Flash site
  responds by saying I don`t have a compatible browser...
  
  Any ideas ?
 
 
 
 __
 
 Want to buy your Pack or Services from MandrakeSoft? 
 Go to http://www.mandrakestore.com
-- 
Chris Blake
Office : (011) 782-0840
Cell : 083 985 0379

After one week [visiting Austria] I couldn't wait to go back to the
United 
States.  Everything was much more pleasant in the United States, because
of
the mentality of being open-minded, always positive.  Everything you
want to
do in Europe is just, 'No way.  No one has ever done it.'  They haven't
any
more the desire to go out to conquer and achieve -- I realized that I
had much
more the American spirit.
-- Arnold Schwarzenegger


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


Re: [newbie] Galeon Flash Plug-in

2003-06-12 Per discussione RichardA
On 12 Jun 2003 13:11:00 +0200
Chris Blake [EMAIL PROTECTED] wrote:
 Thanks Steven, 
 
 I`ll try the link you`ve supplied
 
 Thanks for your time in responding...
 
 Regards
 
 
 On Thu, 2003-06-12 at 12:46, Steven Broos wrote:
  I don't think that's flash, but a Java Applet.
  (www.sun.com)
  Didn't get that working in galeon yet... but didn't try much :-)
  
  Steven
  

Actually, that's not a java applet, it is flash - click on the jigsaw
icon and see what it says it can't find the plugin for.

I'm still on 9.0, but the rpm I have is just an i386 one -
flash-plugin-6.0.69-6.i386.rpm

Richard
-- 
Registered Linux user 246658 at
http://counter.li.org

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


Re: [newbie] Galeon Flash Plug-in

2003-06-12 Per discussione Technoslick
On Thu, 2003-06-12 at 09:00, RichardA wrote:
 On 12 Jun 2003 13:11:00 +0200
 Chris Blake [EMAIL PROTECTED] wrote:
  Thanks Steven, 
  
  I`ll try the link you`ve supplied
  
  Thanks for your time in responding...
  
  Regards
  
  
  On Thu, 2003-06-12 at 12:46, Steven Broos wrote:
   I don't think that's flash, but a Java Applet.
   (www.sun.com)
   Didn't get that working in galeon yet... but didn't try much :-)
   
   Steven
   
 
 Actually, that's not a java applet, it is flash - click on the jigsaw
 icon and see what it says it can't find the plugin for.
 
 I'm still on 9.0, but the rpm I have is just an i386 one -
 flash-plugin-6.0.69-6.i386.rpm
 
 Richard

No help, I know, but I never could get Flash to work in Galeon under
9.0...even after installing the plug-in. My bad, or just the way it was?
Don't know. Haven't bumped into a Flash-rich site to see how it is in
Galeon under 9.1, either. I don't even see where to add a plug-in, or
what plug-ins I have, under Galeon 1.3.3. 

Sorry I couldn't offer more.

T


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


Re: [newbie] Galeon Flash Plug-in

2003-06-12 Per discussione Chris Blake
On Thu, 2003-06-12 at 15:13, Technoslick wrote:
 On Thu, 2003-06-12 at 09:00, RichardA wrote:
  On 12 Jun 2003 13:11:00 +0200
  Chris Blake [EMAIL PROTECTED] wrote:
   Thanks Steven, 
   
   I`ll try the link you`ve supplied
   
   Thanks for your time in responding...
   
   Regards
   
   
   On Thu, 2003-06-12 at 12:46, Steven Broos wrote:
I don't think that's flash, but a Java Applet.
(www.sun.com)
Didn't get that working in galeon yet... but didn't try much :-)

Steven

  
  Actually, that's not a java applet, it is flash - click on the jigsaw
  icon and see what it says it can't find the plugin for.
  
  I'm still on 9.0, but the rpm I have is just an i386 one -
  flash-plugin-6.0.69-6.i386.rpm
  
  Richard
 
 No help, I know, but I never could get Flash to work in Galeon under
 9.0...even after installing the plug-in. My bad, or just the way it was?
 Don't know. Haven't bumped into a Flash-rich site to see how it is in
 Galeon under 9.1, either. I don't even see where to add a plug-in, or
 what plug-ins I have, under Galeon 1.3.3. 
 
 Sorry I couldn't offer more.
 
 T
 
 
Heh, anything is better than nothing.thanks. I`m gonna keep trying
at it, being a newb that could take a few months :)it`s just that I
don`t like Mozilla
-- 
Chris Blake
Office : (011) 782-0840
Cell : 083 985 0379

In Oz, never say krizzle kroo to a Woozy.


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


Re: [newbie] Galeon Flash Plug-in

2003-06-12 Per discussione Steven Broos
On Thu, 2003-06-12 at 15:00, RichardA wrote:

 Actually, that's not a java applet, it is flash - click on the jigsaw
 icon and see what it says it can't find the plugin for.
 

embed src=selector.dcr
pluginspage=http://www.macromedia.com/shockwave/download/; width=650
height=650 sw1=

Shockwave...
Couldn't be flash, because flash in galeon is working for me.

Anyway, I had to check it out before replying. Sorry for the wrong
information.

Steven


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


Re: [newbie] Galeon Flash Plug-in

2003-06-12 Per discussione Anne Wilson
On Thursday 12 Jun 2003 6:01 pm, RichardA wrote:
 On 12 Jun 2003 15:44:04 +0200

 Steven Broos [EMAIL PROTECTED] wrote:
  On Thu, 2003-06-12 at 15:00, RichardA wrote:
 Aren't shockwave and flash almost the same thing? The about:plugins
 page on my Help menu (Galeon 1.2.5) says Shockwave Flash from
 libflashplayer.so

 Richard

Not sure - is there Shockwave Flash and Macromedia Flash?  I'm sure 
that I was reading a changelog recently that said something about 
removing one of these and replacing it with the other.

Not much help, other than it suggests that there may be an 
incompatibility problem if a developer found the need to change.

Anne

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


Re: [newbie] Galeon Flash Plug-in

2003-06-12 Per discussione RichardA
On Thu, 12 Jun 2003 21:39:02 +0100
Anne Wilson [EMAIL PROTECTED] wrote:
 On Thursday 12 Jun 2003 6:01 pm, RichardA wrote:
  On 12 Jun 2003 15:44:04 +0200
 
  Steven Broos [EMAIL PROTECTED] wrote:
   On Thu, 2003-06-12 at 15:00, RichardA wrote:
  Aren't shockwave and flash almost the same thing? The about:plugins
  page on my Help menu (Galeon 1.2.5) says Shockwave Flash from
  libflashplayer.so
 
  Richard
 
 Not sure - is there Shockwave Flash and Macromedia Flash?  I'm sure 
 that I was reading a changelog recently that said something about 
 removing one of these and replacing it with the other.
 
 Not much help, other than it suggests that there may be an 
 incompatibility problem if a developer found the need to change.
 
 Anne

I don't know. I can do java, flash, shockwave, whatever, but the Epson
URL mentioned earlier doesn't work for me.

Richard
-- 
Registered Linux user 246658 at
http://counter.li.org

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


Re: [newbie] Galeon Flash Plug-in

2003-06-12 Per discussione Technoslick
On Thu, 2003-06-12 at 17:25, RichardA wrote:
 On Thu, 12 Jun 2003 21:39:02 +0100
 Anne Wilson [EMAIL PROTECTED] wrote:
  On Thursday 12 Jun 2003 6:01 pm, RichardA wrote:
   On 12 Jun 2003 15:44:04 +0200
  
   Steven Broos [EMAIL PROTECTED] wrote:
On Thu, 2003-06-12 at 15:00, RichardA wrote:
   Aren't shockwave and flash almost the same thing? The about:plugins
   page on my Help menu (Galeon 1.2.5) says Shockwave Flash from
   libflashplayer.so
  
   Richard
  
  Not sure - is there Shockwave Flash and Macromedia Flash?  I'm sure 
  that I was reading a changelog recently that said something about 
  removing one of these and replacing it with the other.
  
  Not much help, other than it suggests that there may be an 
  incompatibility problem if a developer found the need to change.
  
  Anne
 
 I don't know. I can do java, flash, shockwave, whatever, but the Epson
 URL mentioned earlier doesn't work for me.
 
 Richard

I have to wonder if the Epson site is using a newer version than your
plugin supports. 

T


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


Re: [newbie] Galeon Flash Plug-in

2003-06-12 Per discussione Anne Wilson
On Thursday 12 Jun 2003 10:25 pm, RichardA wrote:
 On Thu, 12 Jun 2003 21:39:02 +0100

 Anne Wilson [EMAIL PROTECTED] wrote:
  On Thursday 12 Jun 2003 6:01 pm, RichardA wrote:
   On 12 Jun 2003 15:44:04 +0200
  
   Steven Broos [EMAIL PROTECTED] wrote:
On Thu, 2003-06-12 at 15:00, RichardA wrote:
  
   Aren't shockwave and flash almost the same thing? The
   about:plugins page on my Help menu (Galeon 1.2.5) says
   Shockwave Flash from libflashplayer.so
  
   Richard
 
  Not sure - is there Shockwave Flash and Macromedia Flash?  I'm
  sure that I was reading a changelog recently that said something
  about removing one of these and replacing it with the other.
 
  Not much help, other than it suggests that there may be an
  incompatibility problem if a developer found the need to change.
 
  Anne

 I don't know. I can do java, flash, shockwave, whatever, but the
 Epson URL mentioned earlier doesn't work for me.

 Richard

I see it says x-director.  I googled, and came up with this somewhat 
outdated quote

 After enabling plugins in opera and going to the test
 page
 http://www.macromedia.com/shockwave/welcome/
 I've found the only half of the Flash plugin works.
 Flash Player is ok (the bottom test), but Shockwave
 Flash is not ok (the top test).

which suggests that there are in fact two versions.  If you want to 
read the whole post and reply, it is at

http://list.opera.com/pipermail/opera-linux/2001-October/001235.html

Anne

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


Re: [newbie] Galeon Flash Plug-in

2003-06-12 Per discussione RichardA
On Thu, 12 Jun 2003 22:43:24 +0100
Anne Wilson [EMAIL PROTECTED] wrote:
 On Thursday 12 Jun 2003 10:25 pm, RichardA wrote:
  On Thu, 12 Jun 2003 21:39:02 +0100
 
  Anne Wilson [EMAIL PROTECTED] wrote:
   On Thursday 12 Jun 2003 6:01 pm, RichardA wrote:
On 12 Jun 2003 15:44:04 +0200
   
Steven Broos [EMAIL PROTECTED] wrote:
 On Thu, 2003-06-12 at 15:00, RichardA wrote:
   
Aren't shockwave and flash almost the same thing? The
about:plugins page on my Help menu (Galeon 1.2.5) says
Shockwave Flash from libflashplayer.so
   
Richard
  
   Not sure - is there Shockwave Flash and Macromedia Flash?  I'm
   sure that I was reading a changelog recently that said something
   about removing one of these and replacing it with the other.
  
   Not much help, other than it suggests that there may be an
   incompatibility problem if a developer found the need to change.
  
   Anne
 
  I don't know. I can do java, flash, shockwave, whatever, but the
  Epson URL mentioned earlier doesn't work for me.
 
  Richard
 
 I see it says x-director.  I googled, and came up with this somewhat 
 outdated quote
 
  After enabling plugins in opera and going to the test
  page
  http://www.macromedia.com/shockwave/welcome/
  I've found the only half of the Flash plugin works.
  Flash Player is ok (the bottom test), but Shockwave
  Flash is not ok (the top test).
 
 which suggests that there are in fact two versions.  If you want to 
 read the whole post and reply, it is at
 
 http://list.opera.com/pipermail/opera-linux/2001-October/001235.html
 
 Anne

Anne, thanks for putting me right. There must not be much Shockwave
stuff around, since I hadn't noticed I couldn't see it.

Richard
-- 
Registered Linux user 246658 at
http://counter.li.org

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


Re: [newbie] Galeon Flash Plug-in

2003-06-12 Per discussione RichardA
On 12 Jun 2003 17:38:12 -0400
Technoslick [EMAIL PROTECTED] wrote:
 On Thu, 2003-06-12 at 17:25, RichardA wrote:
  On Thu, 12 Jun 2003 21:39:02 +0100
  Anne Wilson [EMAIL PROTECTED] wrote:
   On Thursday 12 Jun 2003 6:01 pm, RichardA wrote:
On 12 Jun 2003 15:44:04 +0200
   
Steven Broos [EMAIL PROTECTED] wrote:
 On Thu, 2003-06-12 at 15:00, RichardA wrote:
Aren't shockwave and flash almost the same thing? The
about:plugins page on my Help menu (Galeon 1.2.5) says
Shockwave Flash from libflashplayer.so
   
Richard
   
   Not sure - is there Shockwave Flash and Macromedia Flash?  I'm
   sure that I was reading a changelog recently that said something
   about removing one of these and replacing it with the other.
   
   Not much help, other than it suggests that there may be an 
   incompatibility problem if a developer found the need to change.
   
   Anne
  
  I don't know. I can do java, flash, shockwave, whatever, but the
  Epson URL mentioned earlier doesn't work for me.
  
  Richard
 
 I have to wonder if the Epson site is using a newer version than your
 plugin supports. 
 
 T

It's worse than that, T. As Linux users, we're barred from experiencing
the wonderful world of Shockwave. We'll just have to make do with the
useful part of the web.

And yes, my plugin is out of date. It goes with my computer, clothes,
music...

Richard
-- 
Registered Linux user 246658 at
http://counter.li.org

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


Re: [newbie] Galeon Flash Plug-in

2003-06-12 Per discussione Carroll Grigsby
On Thursday 12 June 2003 08:43 pm, Aron Smith wrote:
 On Thu, 2003-06-12 at 16:35, Technoslick wrote:
  On Thu, 2003-06-12 at 18:20, RichardA wrote:
   On 12 Jun 2003 17:38:12 -0400
  
   Technoslick [EMAIL PROTECTED] wrote:
On Thu, 2003-06-12 at 17:25, RichardA wrote:
 On Thu, 12 Jun 2003 21:39:02 +0100

 Anne Wilson [EMAIL PROTECTED] wrote:
  On Thursday 12 Jun 2003 6:01 pm, RichardA wrote:

big snip
   
T
  
   It's worse than that, T. As Linux users, we're barred from experiencing
   the wonderful world of Shockwave. We'll just have to make do with the
   useful part of the web.
  
   And yes, my plugin is out of date. It goes with my computer, clothes,
   music...
 
  Right awn, Brother!

 who needs ads in Shockwave? usually I find sites that insist on
 Shockwave are not worth watching.

  T

It is a minor problem here. I do some surfing with 3 year old grandson at 
various kiddie sites that intermingle Flash and Shockwave stuff (mostly 
www.nickjr.com). Will doesn't want to hear about OSS vs proprietary, nor the 
evilness of all things Microsoft; he just wants to play the game.
-- cmg


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


Re: [newbie] Galeon Flash Plug-in

2003-06-12 Per discussione Jason Guidry
Carroll Grigsby wrote:
  It is a minor problem here. I do some surfing with 3 year old 
grandson at
various kiddie sites that intermingle Flash and Shockwave stuff (mostly 
www.nickjr.com). Will doesn't want to hear about OSS vs proprietary, nor the 
evilness of all things Microsoft; he just wants to play the game.


Where?  my kid visits that site all the time, and all I have installed 
is java and flash.

and shockwave can be had with the crossover plugin.

or maybe I'm way too far behind on this thread.


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


Re: [newbie] Galeon Flash Plug-in

2003-06-12 Per discussione Aron Smith
On Thu, 2003-06-12 at 19:10, Carroll Grigsby wrote:
 On Thursday 12 June 2003 08:43 pm, Aron Smith wrote:
  On Thu, 2003-06-12 at 16:35, Technoslick wrote:
   On Thu, 2003-06-12 at 18:20, RichardA wrote:
On 12 Jun 2003 17:38:12 -0400
   
Technoslick [EMAIL PROTECTED] wrote:
 On Thu, 2003-06-12 at 17:25, RichardA wrote:
  On Thu, 12 Jun 2003 21:39:02 +0100
 
  Anne Wilson [EMAIL PROTECTED] wrote:
   On Thursday 12 Jun 2003 6:01 pm, RichardA wrote:
 
 big snip
another big snip
 T
   
It's worse than that, T. As Linux users, we're barred from experiencing
the wonderful world of Shockwave. We'll just have to make do with the
useful part of the web.
   
And yes, my plugin is out of date. It goes with my computer, clothes,
music...
  
   Right awn, Brother!
 
  who needs ads in Shockwave? usually I find sites that insist on
  Shockwave are not worth watching.
 
   T
 
 It is a minor problem here. I do some surfing with 3 year old grandson at 
 various kiddie sites that intermingle Flash and Shockwave stuff (mostly 
 www.nickjr.com). Will doesn't want to hear about OSS vs proprietary, nor the 
 evilness of all things Microsoft; he just wants to play the game.
 -- cmg
I see your problem luckily mine aka rotten kid is now 25 and is mostly
into appropriating my cameras BTW I Love/hate evolution hate it because
it's always losing settings ,love it because of the spell checker.
 
 
 
 __
 
 Want to buy your Pack or Services from MandrakeSoft? 
 Go to http://www.mandrakestore.com
-- 
Aron Smith [EMAIL PROTECTED]


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


Re: [newbie] Galeon Flash Plug-in

2003-06-12 Per discussione Carroll Grigsby
On Thursday 12 June 2003 05:14 pm, Jason Guidry wrote:
 Carroll Grigsby wrote:
It is a minor problem here. I do some surfing with 3 year old

 grandson at

  various kiddie sites that intermingle Flash and Shockwave stuff (mostly
  www.nickjr.com). Will doesn't want to hear about OSS vs proprietary, nor
  the evilness of all things Microsoft; he just wants to play the game.

 Where?  my kid visits that site all the time, and all I have installed
 is java and flash.

 and shockwave can be had with the crossover plugin.

 or maybe I'm way too far behind on this thread.

Jason:
I hadn't thought about the Crossover route. Thanks for the tip. Looks like 
Grampa has got some work to do...
-- cmg


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


Re: [newbie] mozilla flash (again)

2003-06-02 Per discussione barting
I reinstalled Mozilla and Mozplugger.
However i can't find mozilla-flash. Do you mean 
mozilla-plugin-flash-04.10.6? But if I try to install that, there's a 
whole cascade of other things that need to be installed. Somewhere down 
the line the software-manager even uninstalled mozplugger (i didn't pay 
enough attention) so i had to start all over again... Which is rather a 
pain in the ass with a 56K-connection...
Could you point me to the right mozilla-flash thing?

barting wrote:

Thanks. I found Mozplugger. Tried installing it without reinstalling 
Mozilla but no go of course - it does appear in the about:plugins, but 
no flash.
So instead of trying to be a smart ass I'll just follow your advice.
More flashy news in a few hours...

Rob Blomquist wrote:

On Saturday 31 May 2003 11:54 am, barting wrote:

 

About: Plug-ins in Mozilla says:
  


 

Shockwave Flash
  
snip
 

AND I also followed the instructions on mozdev.org (copying files to 
the
plugins-dir etc.). I have libflashplayer.so, libnullplugin.so and a
symlink to libjavaplugin_oji.so in /usr/lib/mozilla-1.3.1/plugins, 
and
flashplayer.xpt (a.o.) in /usr/lib/mozilla-1.3.1/components. And
libflashplayer.so and flashplayer.xpt in
/home/barting/.mozilla/plugins.

Can't think of anything else to do...
  


Don't get hung up about this too much. You are handling this problem 
in the Windows way. Checking what is missing in about: plugins is a 
fine start, but then you need to uploads from Mandrake to cover them. 
Mandrake is very weird about not configuring Moz with the proprietary 
plugins due to something in their philosophy.

Now, my about:plugins states I have Mozplugger, and libnullplugin.so. 
You need these. Open Drakconf/Software Management/RPMDrake, and get 
mozplugger, libnullplugin.so should have come from the installation 
of Moz. Then you need mozilla-flash.

I would say that you should try uninstalling Mozilla with RPMDrake, 
then installing moz, mozplugger, and mozflash with RPMDrake. Then if 
you want them in Konqueror, update Konq's plugins in Konq.

Rob
 



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
 

--
Bart Van Audenhove
Registered Linux User #314712


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


Re: [newbie] mozilla flash (again)

2003-06-02 Per discussione barting
In fact, if I try to install mozilla-plugin-flash, software manager says 
that mozplugger has to be installed also. When I say OK, it then says 
that mozplugger (exact same version) has to be UNinstalled along with 
mozilla-mail and some other basic mozilla stuff !! (to which i say no of 
course)...
I installed mozilla-1.3.1-4.1mdk instead of just version 1.3-1 that 
comes with MDK. Could that be the problem?

Rob Blomquist wrote:

On Saturday 31 May 2003 11:54 am, barting wrote:

 

About: Plug-ins in Mozilla says:
   

 

Shockwave Flash
   

snip
 

AND I also followed the instructions on mozdev.org (copying files to the
plugins-dir etc.). I have libflashplayer.so, libnullplugin.so and a
symlink to libjavaplugin_oji.so in /usr/lib/mozilla-1.3.1/plugins, and
flashplayer.xpt (a.o.) in /usr/lib/mozilla-1.3.1/components. And
libflashplayer.so and flashplayer.xpt in
/home/barting/.mozilla/plugins.
Can't think of anything else to do...
   

Don't get hung up about this too much. You are handling this problem in the 
Windows way. Checking what is missing in about: plugins is a fine start, but 
then you need to uploads from Mandrake to cover them. Mandrake is very weird 
about not configuring Moz with the proprietary plugins due to something in 
their philosophy.

Now, my about:plugins states I have Mozplugger, and libnullplugin.so. You need 
these. Open Drakconf/Software Management/RPMDrake, and get mozplugger, 
libnullplugin.so should have come from the installation of Moz. Then you need 
mozilla-flash.

I would say that you should try uninstalling Mozilla with RPMDrake, then 
installing moz, mozplugger, and mozflash with RPMDrake. Then if you want them 
in Konqueror, update Konq's plugins in Konq.

Rob
 



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

--
Bart Van Audenhove
Registered Linux User #314712


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


Re: [newbie] mozilla flash (again) SOLVED

2003-06-02 Per discussione barting
O oh, I owe some apologies... It works already  :-[ 
It doesn't display anything when loading so I thought it didn't work... 
Very stupid of me.
So the solution, as you said Rob, is just reinstalling mozilla together 
with mozplugger...
Thanks again for the help.
Now i can go see my favorite artist's (cultural activists rather) site 
http://www.critical-art.net/  yippie!
Their books (freely downloadable) really rock. THERE's some theory for 
Billy Gate$ and consorts to chew on...

--
Bart Van Audenhove
Registered Linux User #314712


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


[newbie] mozilla flash (again)

2003-06-01 Per discussione barting
I'm sorry to get back to the Mozilla plugin thing; I know it has been discussed before, and I tried to use the information in that discussion, but i just can't get it working. :-( Help?

I downloaded and installed the swfdec-mozilla rpm without problems. No flash however when browsing. (Not sure what this rpm does in fact).

Then I downloaded install_flash_player_6_linux.tar.gz. When I tried to run the installer the first time, it said: NOTE: ttfonts and urwfonts needed. So I installed ttfonts-1.0-9.noarch.rpm and urw-fonts-2.0-29.noarch.rpm. 
When I retry the flash-installer the note about the fonts has gone. The installation completes without further messages, but still no flash in mozilla.

About: Plug-ins in Mozilla says:

Shockwave Flash

   File name: libmozswfdec.so
   Shockwave Flash 6.0 animation viewer handled by Swfdec-0.2.1. Plays
   SWF animations, commonly known as Macromedia® Flash®.
   This is alpha software. It will probably behave in many situations,
   but may also ride your motorcycle, drink all your milk, or use your
   computer to browse porn. Comments, feature requests, and patches are
   welcome.
   See http://swfdec.sourceforge.net/ for information.

   Flash, Shockwave, and Macromedia are trademarks of Macromedia, Inc.
   Swfdec is not affiliated with Macromedia, Inc.
MIME Type   Description SuffixesEnabled
application/x-shockwave-flash   Shockwave Flash swf Yes
Shockwave Flash

   File name: libflashplayer.so
   Shockwave Flash 6.0 r79
MIME Type   Description SuffixesEnabled
application/x-shockwave-flash   Shockwave Flash swf Yes
application/futuresplashFutureSplash Player spl Yes
AND I also followed the instructions on mozdev.org (copying files to the plugins-dir etc.).
I have libflashplayer.so, libnullplugin.so and a symlink to libjavaplugin_oji.so in /usr/lib/mozilla-1.3.1/plugins, and flashplayer.xpt (a.o.) in /usr/lib/mozilla-1.3.1/components. 
And libflashplayer.so and flashplayer.xpt in /home/barting/.mozilla/plugins.

Can't think of anything else to do...

--
Bart Van Audenhove
Registered Linux User #314712



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


Re: [newbie] mozilla flash (again)

2003-06-01 Per discussione Rob Blomquist
On Saturday 31 May 2003 11:54 am, barting wrote:

 About: Plug-ins in Mozilla says:

 Shockwave Flash
snip
 AND I also followed the instructions on mozdev.org (copying files to the
 plugins-dir etc.). I have libflashplayer.so, libnullplugin.so and a
 symlink to libjavaplugin_oji.so in /usr/lib/mozilla-1.3.1/plugins, and
 flashplayer.xpt (a.o.) in /usr/lib/mozilla-1.3.1/components. And
 libflashplayer.so and flashplayer.xpt in
 /home/barting/.mozilla/plugins.

 Can't think of anything else to do...

Don't get hung up about this too much. You are handling this problem in the 
Windows way. Checking what is missing in about: plugins is a fine start, but 
then you need to uploads from Mandrake to cover them. Mandrake is very weird 
about not configuring Moz with the proprietary plugins due to something in 
their philosophy.

Now, my about:plugins states I have Mozplugger, and libnullplugin.so. You need 
these. Open Drakconf/Software Management/RPMDrake, and get mozplugger, 
libnullplugin.so should have come from the installation of Moz. Then you need 
mozilla-flash.

I would say that you should try uninstalling Mozilla with RPMDrake, then 
installing moz, mozplugger, and mozflash with RPMDrake. Then if you want them 
in Konqueror, update Konq's plugins in Konq.

Rob
-- 

Linux: For the people, by the people.

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


Re: [newbie] mozilla flash (again)

2003-06-01 Per discussione barting
Thanks. I found Mozplugger. Tried installing it without reinstalling 
Mozilla but no go of course - it does appear in the about:plugins, but 
no flash.
So instead of trying to be a smart ass I'll just follow your advice.
More flashy news in a few hours...

Rob Blomquist wrote:

On Saturday 31 May 2003 11:54 am, barting wrote:

 

About: Plug-ins in Mozilla says:
   

 

Shockwave Flash
   

snip
 

AND I also followed the instructions on mozdev.org (copying files to the
plugins-dir etc.). I have libflashplayer.so, libnullplugin.so and a
symlink to libjavaplugin_oji.so in /usr/lib/mozilla-1.3.1/plugins, and
flashplayer.xpt (a.o.) in /usr/lib/mozilla-1.3.1/components. And
libflashplayer.so and flashplayer.xpt in
/home/barting/.mozilla/plugins.
Can't think of anything else to do...
   

Don't get hung up about this too much. You are handling this problem in the 
Windows way. Checking what is missing in about: plugins is a fine start, but 
then you need to uploads from Mandrake to cover them. Mandrake is very weird 
about not configuring Moz with the proprietary plugins due to something in 
their philosophy.

Now, my about:plugins states I have Mozplugger, and libnullplugin.so. You need 
these. Open Drakconf/Software Management/RPMDrake, and get mozplugger, 
libnullplugin.so should have come from the installation of Moz. Then you need 
mozilla-flash.

I would say that you should try uninstalling Mozilla with RPMDrake, then 
installing moz, mozplugger, and mozflash with RPMDrake. Then if you want them 
in Konqueror, update Konq's plugins in Konq.

Rob
 



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

--
Bart Van Audenhove
Registered Linux User #314712


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


[newbie-it] Flash + Linux

2003-04-02 Per discussione Vincenzo Scaccia
Cari ragazzi,
ho trovato il plug-in di flash per Linux.
L'ho anche installato ed è funzionante.
Grazie a tutti per la collaborazione

P.S.: Quando cerco di digitare delle frasi in modo veloce, le lettere mi 
vengono ripetute.  Sapete se c'è un modo per poterlo evitare?






Re: [newbie-it] Flash + Linux

2003-04-02 Per discussione syd
* Vincenzo Scaccia wrote:
 
 P.S.: Quando cerco di digitare delle frasi in modo veloce, le lettere mi 
 vengono ripetute.  Sapete se c'è un modo per poterlo evitare?


Vai piu' piano.



-- 
syd
LU 285930 * LM 167646
-


pgp0.pgp
Description: PGP signature


[newbie] Compact Flash Card in PCMCIA slot does not work in 9.0, it did work in Mdk 8.2

2003-02-15 Per discussione bones
Hi everyone,

now I just upgraded to Kernel:

#uname -a
Linux me 2.4.19-24mdk #1 Thu Jan 30 13:13:07 MST 2003 i686 unknown unknown 
GNU/Linux

Because I thought it might be a Kernel issue. As I said everthing worked fine 
in Mdk 8.2 but it is broken since 9.0. The issue is, that I cannot mount the 
card anymore. When I plug it in the Notebook (IBM Thinkpad A22p) I get the 
following output in /var/log/messages:

Feb 15 10:40:21 dclient217-162-39-126 kernel: cs: memory probe 
0xa000-0xa0ff: clean.
Feb 15 10:40:24 dclient217-162-39-126 kernel: hde: 3S SYSTEM, ATA DISK drive
Feb 15 10:40:24 dclient217-162-39-126 kernel: ide2 at 0x100-0x107,0x10e on irq 
3
Feb 15 10:40:24 dclient217-162-39-126 kernel: hde: 250368 sectors (128 MB) 
w/2KiB Cache, CHS=978/8/32
Feb 15 10:40:24 dclient217-162-39-126 kernel:  
/dev/ide/host2/bus0/target0/lun0: p1
Feb 15 10:40:24 dclient217-162-39-126 kernel: devfs_do_symlink(disc0): could 
not append to parent, err: -17
Feb 15 10:40:24 dclient217-162-39-126 kernel: ide_cs: hde: Vcc = 3.3, Vpp = 
0.0
Feb 15 10:40:24 dclient217-162-39-126 kernel:  
/dev/ide/host2/bus0/target0/lun0: p1
Feb 15 10:40:24 dclient217-162-39-126 kernel: devfs_do_symlink(disc0): could 
not append to parent, err: -17
Feb 15 10:40:25 dclient217-162-39-126 kernel:  
/dev/ide/host2/bus0/target0/lun0: p1
Feb 15 10:40:25 dclient217-162-39-126 kernel: devfs_do_symlink(disc0): could 
not append to parent, err: -17
Feb 15 10:40:25 dclient217-162-39-126 kernel:  
/dev/ide/host2/bus0/target0/lun0: p1
Feb 15 10:40:25 dclient217-162-39-126 kernel: devfs_do_symlink(disc0): could 
not append to parent, err: -17

The last two lines continue forever if I don't take out the CF card again. 
While the card is in the system monitor shows me 100% processor activity and 
top shows me that drakupdate_fstab is running at top but takes up only 10% of 
of CPU power, so I guess it is the Kernel that needs the rest.

# dmesg
VFS: Disk change detected on device 21:00
 /dev/ide/host2/bus0/target0/lun0: p1
devfs_do_symlink(disc0): could not append to parent, err: -17

which repeats itself again...


in my /etc/fstab I have:
/dev/hde1 /mnt/flash auto noauto,user 0 0

which worked just fine in Mdk 8.2. Anyway I think it is not an fstab business 
because of the /var/log/messages output...

I guess I will try to get the old kernel from 8.2 in 9.0 if that works it 
isn't such a big deal - I just need it to put some mp3 on the CF for the 
Zaurus, I can do that with a dual boot.

But help is still very much apreciated, there may be something wrong with 
Mdk9.0 or the Kernel they are using... Anyway that is my guess until someone 
shows me that I was really stupid and forgot the obvious again.

some more infos:
the 100% CPU use stays a few minutes after I took the CF card out and plugging 
in the card in the second slot does not help - tha same thing happens...

Kernel 2.4.19-16mdk (I guess) which is standard in 9.0 had the same issue, the 
only one that I tested and worked is the one in 8.2.

I keep my newbie and expert mails, it dates back until end of last year. I 
searched them for Compact Flash and CF card and got no useful messages 
that indicate this issue has already been addressed. But if it was - please 
point me to the right direction.

Thank you,
b.


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



Re: [newbie] Compact Flash Card in PCMCIA slot does not work in 9.0, it did work in Mdk 8.2

2003-02-15 Per discussione bones
Hi again, 

It seems to be a kernel issue, I just installed the old 8.2. Kernels (2.4.18 
doesn't work with the modules for 2.4.19) but 2.4.19 from Mdk 8.2. works just 
fine.

I copied the old Kernel sources for 2.4.19 to /usr/src/ together with the old 
initrd and vmlinuz (which go into /boot/) setup the new Kernel boot with the 
MCC boot-config tool.

Booted into it. And...
Now the Compact Flash Card works just fine. 

The vmware compilation to custom build the modules for this kernel also worked 
with the copied old sources. 

So I guess I just use the old 8.2. Kernel for work. Everything seems to work.

old-Kernel (with working CF card):
# uname -a 
Linux me 2.4.19-16mdk #1 Fri Sep 20 18:15:05 CEST 2002 i686 unknown unknown 
GNU/Linux


I don't really know how to proceed from here. Do I need to inform somebody 
that 2.4.19 kernels from Mandrake in Mdk 9.0 have a bug? Do they really? (The 
working 2.4.19 Kernel from Mdk 8.2 and the not-working 9.0 Kernels indicate 
this)...

Has anybody had the same problem with CF cards?

I hope somebody reads this and informs either me that I did something wrong or 
informs the people at Mandrake that there is a CF card issue with the new 
Kernels.


b.


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



Re: [newbie] disable Flash?

2002-12-06 Per discussione Mike Larson
Todd Slater wrote:

On Thu, 5 Dec 2002 11:59:53 -0500
Todd Slater [EMAIL PROTECTED] wrote:
snip


It seems that this should be an easy thing to do with a bash script,
then bind it to some key. In fact, that's all jTFlashManager
does--renames the libflashplayer.so and ShockwaveFlash.class.

For the script, all you'd have to do is make sure you have permissions
to rename the files, then write one script to rename them x-off (like
your example) and another to return them to their original names. Or, a
better idea, use a single script that toggles on/off (depending on which
filename exists). So, I might hit alt-f on my keyboard to enable/disable
Flash.

I'll work on it when I get home, now I'm curious about it!

Todd



It's not pretty, but it works! I'm using Fluxbox and I bound this script
to alt-f. Copy and paste into your favorite editor, save and make it
executable (chmod u+x flash.sh).

#!/bin/bash

# flash.sh -- toggle flash on/off

# Where is Flash located? Put all paths here
# You need write access to libflashplayer.so
# and ShockwaveFlash.class

fpath1=/home/todd/phoenix/plugins
#fpath2=/another/place
#fpath3=/still/another/place

# Where to move Flash (to turn it off?)
NotherPath=/home/todd

# Locate Flash files and make a list of them
# If you specified more than one path above,
# add them after $fpath1, i.e. 
# find $fpath1 $fpath2 etc.

if [ ! -f .libflashlocations ] ; then
find $fpath1 -name libflashplayer.so  .libflashlocations
find $fpath1 -name ShockwaveFlash.class  .shockflashlocations
fi
# If Flash is on, turn it off

if [ -f `head -1 .libflashlocations` ] ; then
for i in `cat .libflashlocations`
do
FileName=`basename $i`
mv $i $NotherPath/$FileName
done
for i in `cat .shockflashlocations`
do
FileName=`basename $i`
mv $i $NotherPath/$FileName
done
else# turn it back on  
for i in `cat .libflashlocations`
do
FileName=`basename $i`
mv $NotherPath/$FileName $i
done
for i in `cat .shockflashlocations`
do
FileName=`basename $i`
mv $NotherPath/$FileName $i
 done
fi
exit

Very interesting Todd. Thanks for yor help and input. I am still very 
much a newbie and not well versed at all in scripting. This will be an 
opportunity for me to learn something. :-)

Meanwhile, I have found that although simply renaming the Flash files 
seemed to stop Flash for a while it would reappear. I tracked down every 
single libflash.so and ShockwaveFlash.class file I could find and 
re-renamed them from libflash-off.so (I thought just adding -off might 
be too similar) to xl.so and xs.class. No help... flash would not die.

Finally, I created a new directory in /usr/local/mozilla and moved the 
Flash files from /usr/local/mozilla/plugins to the new directory. That 
seems to have done it. Flash was gone from Mozilla, but was still in 
Phoenix. After doing the same process in /usr/local/phoenix Flash was 
gone there also. I have no idea why renaming the files did not work. 
Could the paths have been recreated somehow after closing and reopening 
Mozilla, or rebooting?

Thanks again for your help and ideas.

Mike

--
---
Mike Larson
Registered Linux User # 246593 http://counter.li.org/
Linux Mandrake 9.0   KDE 3.0.3   Mozilla 1.2.1
---




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



Re: [newbie] disable Flash?

2002-12-06 Per discussione Todd Slater
On Fri, Dec 06, 2002 at 11:23:45AM -0600, Mike Larson wrote:
 Very interesting Todd. Thanks for yor help and input. I am still very 
 much a newbie and not well versed at all in scripting. This will be an 
 opportunity for me to learn something. :-)
 
 Meanwhile, I have found that although simply renaming the Flash files 
 seemed to stop Flash for a while it would reappear. I tracked down every 
 single libflash.so and ShockwaveFlash.class file I could find and 
 re-renamed them from libflash-off.so (I thought just adding -off might 
 be too similar) to xl.so and xs.class. No help... flash would not die.
 
 Finally, I created a new directory in /usr/local/mozilla and moved the 
 Flash files from /usr/local/mozilla/plugins to the new directory. That 
 seems to have done it. Flash was gone from Mozilla, but was still in 
 Phoenix. After doing the same process in /usr/local/phoenix Flash was 
 gone there also. I have no idea why renaming the files did not work. 
 Could the paths have been recreated somehow after closing and reopening 
 Mozilla, or rebooting?
 
 Thanks again for your help and ideas.

I noticed the same thing about renaming--I tried several different
schemes. When I typed about:plugins in the address bar, I would get
whatever I named it as the Flash and Shockwave plugins--weird, I
thought. Like you, I ended up moving them to another directory (out of
plugins), and that finally worked.

The more I think about it, it makes more sense to just keep a copy of
libflashplayer.so and ShockwaveFlash.class in one place, and copy it to
your plugins when you want to use it, and remove it when you don't want
it. That would work if you used several browsers or wanted it to work
across several user accounts. 

I'm still scratching my head over why renaming doesn't work.

Todd


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



Re: [newbie] disable Flash?

2002-12-06 Per discussione Mike Larson
Todd Slater wrote:

On Fri, Dec 06, 2002 at 11:23:45AM -0600, Mike Larson wrote:


snip



I noticed the same thing about renaming--I tried several different
schemes. When I typed about:plugins in the address bar, I would get
whatever I named it as the Flash and Shockwave plugins--weird, I
thought. Like you, I ended up moving them to another directory (out of
plugins), and that finally worked.

The more I think about it, it makes more sense to just keep a copy of
libflashplayer.so and ShockwaveFlash.class in one place, and copy it to
your plugins when you want to use it, and remove it when you don't want
it. That would work if you used several browsers or wanted it to work
across several user accounts. 

I'm still scratching my head over why renaming doesn't work.

Todd

I just moved xl.so (my renamed libflashplayer.so) back to 
/usr/local/mozilla/plugins from the new directory an sure enough: I have 
Flash again.

I did a ls -i on xl.so and got an inode number of 158648. I then changed 
the name to the original libflashplayer.so and did ls -i and the inode 
number is the same, 158648. Apparently this is a hard link and just 
changing the name does not matter. Does this make sense?

Mike

--
---
Mike Larson
Registered Linux User # 246593 http://counter.li.org/
Linux Mandrake 9.0   KDE 3.0.3   Mozilla 1.2.1
---




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



Re: [newbie] disable Flash?

2002-12-05 Per discussione Todd Slater
On Thu, 5 Dec 2002 11:59:53 -0500
Todd Slater [EMAIL PROTECTED] wrote:
snip
 It seems that this should be an easy thing to do with a bash script,
 then bind it to some key. In fact, that's all jTFlashManager
 does--renames the libflashplayer.so and ShockwaveFlash.class.
 
 For the script, all you'd have to do is make sure you have permissions
 to rename the files, then write one script to rename them x-off (like
 your example) and another to return them to their original names. Or, a
 better idea, use a single script that toggles on/off (depending on which
 filename exists). So, I might hit alt-f on my keyboard to enable/disable
 Flash.
 
 I'll work on it when I get home, now I'm curious about it!
 
 Todd

It's not pretty, but it works! I'm using Fluxbox and I bound this script
to alt-f. Copy and paste into your favorite editor, save and make it
executable (chmod u+x flash.sh).

#!/bin/bash

# flash.sh -- toggle flash on/off

# Where is Flash located? Put all paths here
# You need write access to libflashplayer.so
# and ShockwaveFlash.class

fpath1=/home/todd/phoenix/plugins
#fpath2=/another/place
#fpath3=/still/another/place

# Where to move Flash (to turn it off?)
NotherPath=/home/todd

# Locate Flash files and make a list of them
# If you specified more than one path above,
# add them after $fpath1, i.e. 
# find $fpath1 $fpath2 etc.

if [ ! -f .libflashlocations ] ; then
find $fpath1 -name libflashplayer.so  .libflashlocations
find $fpath1 -name ShockwaveFlash.class  .shockflashlocations
fi
# If Flash is on, turn it off

if [ -f `head -1 .libflashlocations` ] ; then
for i in `cat .libflashlocations`
do
FileName=`basename $i`
mv $i $NotherPath/$FileName
done
for i in `cat .shockflashlocations`
do
FileName=`basename $i`
mv $i $NotherPath/$FileName
done
else# turn it back on  
for i in `cat .libflashlocations`
do
FileName=`basename $i`
mv $NotherPath/$FileName $i
done
for i in `cat .shockflashlocations`
do
FileName=`basename $i`
mv $NotherPath/$FileName $i
 done
fi
exit



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



Re: [newbie] disable Flash?

2002-12-05 Per discussione Todd Slater
Doh! My flash plugins are only in one directory, so I didn't test on
multiple directories. As the script is written, it won't work for multiple
directories because I used mv.
 
 # Where is Flash located? Put all paths here
 # You need write access to libflashplayer.so
 # and ShockwaveFlash.class
 
 fpath1=/home/todd/phoenix/plugins
 #fpath2=/another/place
 #fpath3=/still/another/place


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



[newbie] disable Flash?

2002-12-04 Per discussione Mike Larson
A few days ago I installed Mozilla-xft 1.2.1 from Texstar's RPMs. It 
includes Java, Flash beta plugin  realplayer plugin. Works great, but 
does anyone know of an easy way to disable Flash for the 99% of the time 
I don't want it? I have popups and most ads blocked by Mozilla and life 
is good...except for those annoying Flash ads.

Mike Larson






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



Re: [newbie] disable Flash?

2002-12-04 Per discussione Todd Slater
On Wed, 04 Dec 2002 22:11:05 -0600
Mike Larson [EMAIL PROTECTED] wrote:

 A few days ago I installed Mozilla-xft 1.2.1 from Texstar's RPMs. It 
 includes Java, Flash beta plugin  realplayer plugin. Works great, but 
 does anyone know of an easy way to disable Flash for the 99% of the time
 
 I don't want it? I have popups and most ads blocked by Mozilla and life 
 is good...except for those annoying Flash ads.
 
 Mike Larson

You can block ads using a hosts file; or use a bookmarklet
(http://www.squarefree.com/bookmarklets/zap.html) , but that just zaps
the Flash and must be done on a per-page basis; or try jTFlashManager:
http://www.jtedley.com/jtflashmanager/index.php. It's supposed to be
platform independent, but has only been tested on Windoze
and Mac OSX.

Todd


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



[newbie-it] Flash in Linux

2002-12-03 Per discussione Enrico Teotti
Ciao,
volevo sapere se è in Mandrake 8.1 è disponibile la plugin per visualizzare contenuti 
di pagine HTML sviluppati in Flash.
Grazie!
Enrico


_
Get 25MB, POP3, Spam Filtering with LYCOS MAIL PLUS for $19.95/year.
http://login.mail.lycos.com/brandPage.shtml?pageId=plusref=lmtplus




Re: [newbie-it] Flash in Linux

2002-12-03 Per discussione nicola
On Tuesday 03 December 2002 04:20, you wrote:
 Ciao,
 volevo sapere se è in Mandrake 8.1 è disponibile la plugin per visualizzare
 contenuti di pagine HTML sviluppati in Flash. Grazie!
 Enrico
Basta che ti colleghi al sito di macromedia, cerchi la versione per linux (ad 
oggi la 5.0) e la installi, come da loro istruzioni. Funziona su molti siti, 
non su tutti (anche se ho il sospetto che quelli in cui non funziona 
richiedano la 6.0)

Ciao Nicola





Re: [newbie-it] Flash in Linux

2002-12-03 Per discussione nicola
On Tuesday 03 December 2002 04:46, you wrote:
 On Thursday 01 January 1970 01:00, nicola wrote:
  Basta che ti colleghi al sito di macromedia, cerchi la versione per linux
  (ad oggi la 5.0) e la installi, come da loro istruzioni. Funziona su
  molti siti, non su tutti (anche se ho il sospetto che quelli in cui non
  funziona richiedano la 6.0)

 la 6.0 e' disponibile in beta anche sotto Linux, ma credo funzioni solo con
 mozilla 1.2 (e 1.1). Io l'ho trovata facendo un po' di ricerche con google,
 anche perche' dal sito della macromedia non mi riesce arrivarci ;__;

 ciao.
 Alessandro.

 P.S.
 Aggiorna l'orologio.. le tue mail arrivano con una data del 1904 ^___^

Grazie per l'informazioine, provero' a cercarlo pure io (ne avrei proprio 
bisogno). per quanto riguarda l'orologio, mi scuso ma non dipende da me, in 
questo momento sono all'universita', e per qualche motivo che non ho capito, 
tutti i pc connessi alla rete hanno date assurde, e discordanti tutte tra 
loro. Inoltre anche l'ora e' di solito priva di senso. Mistero degli 
amministratori. 
Se ti ricordassi il link per la 6 (beta va bene) mi risarmieresti una 
ricerca...

Grazie Nicola




Re: [newbie-it] Flash in Linux

2002-12-03 Per discussione francesco.melo
nicola wrote:


On Tuesday 03 December 2002 04:46, you wrote:
 

On Thursday 01 January 1970 01:00, nicola wrote:
   

Basta che ti colleghi al sito di macromedia, cerchi la versione per linux
(ad oggi la 5.0) e la installi, come da loro istruzioni. Funziona su
molti siti, non su tutti (anche se ho il sospetto che quelli in cui non
funziona richiedano la 6.0)
 

la 6.0 e' disponibile in beta anche sotto Linux, ma credo funzioni solo con
mozilla 1.2 (e 1.1). Io l'ho trovata facendo un po' di ricerche con google,
anche perche' dal sito della macromedia non mi riesce arrivarci ;__;

ciao.
Alessandro.

P.S.
Aggiorna l'orologio.. le tue mail arrivano con una data del 1904 ^___^
   


Grazie per l'informazioine, provero' a cercarlo pure io (ne avrei proprio 
bisogno). per quanto riguarda l'orologio, mi scuso ma non dipende da me, in 
questo momento sono all'universita', e per qualche motivo che non ho capito, 
tutti i pc connessi alla rete hanno date assurde, e discordanti tutte tra 
loro. Inoltre anche l'ora e' di solito priva di senso. Mistero degli 
amministratori. 
Se ti ricordassi il link per la 6 (beta va bene) mi risarmieresti una 
ricerca...

Grazie Nicola


 

http://www.macromedia.com/software/flashplayer/special/beta/

:))







Re: [newbie-it] Flash in Linux

2002-12-03 Per discussione LukenShiro
Alle 16:20, martedì 3 dicembre 2002, Enrico Teotti ha scritto:
 volevo sapere se è in Mandrake 8.1 è disponibile la plugin per
 visualizzare contenuti di pagine HTML sviluppati in Flash.

In questo sito (e' un indirizzo unico anche se l'ho spezzettato):
http://www.macromedia.com/shockwave/download/download.cgi?P1_
Prod_Version=ShockwaveFlashP2_Platform=LinuxP3_Browser_Version
=Netscape4P5_Language=English
troverai cio' che devi scaricare (in versione 5) e come installarlo.
Fa riferimento solo a netscape, ma la stessa cosa funziona per konqueror 
(per via indiretta), mozilla e galeon, nonche' opera e phoenix (anzi 
dovrei dire ex phoenix, dato che sta cambiando nome per ragioni di 
copyright), che non sono compresi AFAIK nella distribuzione a vanno 
eventualmente scaricati a parte.

In aggiunta incollo una mia mail apparsa su altra lista:
Alle 22:12, domenica 24 novembre 2002, LukenShiro ha scritto:
 Se hai fatto quello che ho scritto l'unico problema (ahime' non
 risolvibile) dovrebbe essere solo quello di visualizzare le animazioni
 in flash 6 (dato che i simpatici signori Macromedia per linuzzo
 restano sempre indietro di un numero :-/)

A questo proposito ho notato che esiste la versione 6 (anche se in beta)
http://www.macromedia.com/software/flashplayer/special/beta/installers/linux/plugin/install_flash_player_6_linux.tar.gz
(unico indirizzo ovviamente)
Sembra che con questa sia stato risolto un bug che faceva crashare mozilla 
in presenza di animazioni flash sonore.
Invece di usare l'incerto installer, consiglio di copiare i file 
libflashplayer.so e flashplayer.xpt nelle solite directory di plugin

Per la cronaca la 6-beta funziona con mozilla 1.1 e successivi.

-- 
GNU/Linux Slackware 9.0beta1 ** LU #210970 LM #98222 SU #12583




Re: [newbie-it] flash (fwd)

2002-07-10 Per discussione CyberPenguin

LukenShiro wrote:
 
 Notare l'ora di invio originaria della mia risposta qui sotto,

[cut]

 Capita a qualcun altro? 

[cut]

Si, ma non in questa ML. 
Mi succede con altre due. A volte i miei messaggi arrivano addirittura
con qualche giorno di ritardo, ma almeno non sono mai stati persi. Mah
%-)

Bye-byte
Giovanni ;-)

-- 
~/~A
\// 
~o)GNU/Linux Powered
---
Software is like sex ... it's better when it's free ;-)






Re: [newbie-it] flash (fwd)

2002-07-10 Per discussione tom

Alle 23:29, martedì 9 luglio 2002, LukenShiro ha scritto:
 spesso
 devo spedirli due volte i messaggi, perche' in lista non arrivano o
 arrivano con _giorni_ di ritardo :-/// Capita a qualcun altro? con altre
 ML non mi e' mai successo, quindi direi che e' un problema di gestione,
 anche abbastanza recente, di questa lista.)

Prima capitava spesso e volentieri anche a me (spedivo la mattina e arrivava 
la notte o il giorno dopo).questo circa sei mesi fa! ora è tutto ok.

Ciao , Tom




[newbie-it] flash

2002-07-09 Per discussione Brunini Alessandro

Salve alla lista,
come mai quando ascolto un mp3 con xmms e contemporaneamente navigo con 
Mozilla/Netscape su un sito che ha qualche introduzione o animazione in 
flash, mi si pianta il browser?
In pratica lo devo killare.
Ciò non accade con xmms chiuso o con gli altri browser (Konqueror/Galeon).

Un saluto a tutti.




[newbie] Re: [newbie-it] flash

2002-07-09 Per discussione LukenShiro

In un altro luogo e in un altro tempo, LukenShiro esclamo':
[cut]

Sorry, I sent the message to the wrong mailing-list. It was supposed to
be sent to newbie-it.
My sincere apologizes :((

Bye, Lk





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



[newbie] Re: [newbie-it] flash

2002-07-09 Per discussione LukenShiro

In un altro luogo e in un altro tempo, Brunini Alessandro esclamo':
 come mai quando ascolto un mp3 con xmms e contemporaneamente navigo con
 Mozilla/Netscape su un sito che ha qualche introduzione o animazione in
 flash, mi si pianta il browser?

Dovresti provare ad avviarlo dal terminale di testo, per vedere se da'
qualche messaggio illuminante.

-- 
L.U. #210970 L.M. #98222 S.U. #12583 - K 2.4.18-puro [Slackware 8.1]
Aderisci alla campagna I Savoia-rdi sono, come i panda, a rischio
estinzione, quindi lasciamoli stare nel loro habitat naturale ed
evitiamo di farli sgattaiolare nel nostro Paese ...




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



Re: [newbie] compact flash card usb reader

2002-06-27 Per discussione Joseph Braddock


On Mon, 24 Jun 2002 22:47:58 -0500
Dennis Myers [EMAIL PROTECTED] wrote:
 All would work I bet if I didn't get the following message:
 mount: special device /dev/sda1 does not exist
 anyone have an idea of how to create sda1. All the usb and scsi modules are 
 loaded as far as I can tell. Hope Mandrakesoft is working on getting better 
 usb support for 9.0. Any help is always appreciated.
 -- 
 Dennis M. linux user #180842
 
 

Is it possible that you've disabled devfs?  I think the usb stuff uses it and if so, 
that could be your problem.

Joe



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



Re: [newbie] compact flash card usb reader

2002-06-26 Per discussione Chris Spackman

On Mon, 24 Jun 2002 22:47:58 -0500
Dennis Myers [EMAIL PROTECTED] wrote:

[big snip]

 All would work I bet if I didn't get the following message:
 mount: special device /dev/sda1 does not exist
 anyone have an idea of how to create sda1. All the usb and scsi
 modules are loaded as far as I can tell. Hope Mandrakesoft is working
 on getting better usb support for 9.0. Any help is always appreciated.

Maybe I missed it, but are you using supermount? I turned it off first
thing after installing and usb works just fine -- mounting exactly as
you have done. So one guess would be that supermount is causing
problems.

just a thought.

-- 
Chris Spackman

gpg: 9B6B 860E 7C06 787F 366F 5D3E 7152 DCB2 FC51 51B9




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



Re: [newbie] compact flash card usb reader

2002-06-24 Per discussione Dennis Myers

On Sunday 23 June 2002 12:33 pm, you wrote:
 On Sunday 23 June 2002 10:23 am, Dennis Myers did speak unto the huddled

 masses, saying:
  H, now it tells me wrong fs type, bad option,bad superblock on
  /dev/sda, or too many mounted file systems.
  I changed it to /dev/sda to see if that would overcome /dev/sda1 does not
  exist, but usbview shows:

 well mine is sda1 you might be sda0.  should have said that.

 i agree, USB is one of the places where linux is less than intuitive.  i
 also wish my scanner was supported :( but i so prefer it to the
 alternative
I was poking around and usb-storage says it is scsi1
I think, here is the /proc/scsi/usb-storage-0/1  file:

 Host scsi1: usb-storage
   Vendor: Unknown
  Product: USB Storage Device
Serial Number: None
 Protocol: Transparent SCSI
Transport: Bulk
 GUID: 05e30700
 Attached: Yes
So I am thinking this thing should be working.  Is there a stray file I need? 
I have the module usb-storage and usb-view and usblibs so what am I missing?  
Oh, I know usb works cause my HP Scanjet 5200c works like a champ.  We just 
keep on keeping on. TIA for any more suggestions. 
-- 
Dennis M. linux user #180842




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



Re: [newbie] compact flash card usb reader

2002-06-24 Per discussione Dennis Myers

On Saturday 22 June 2002 10:59 pm, you wrote:
 On Sat, 22 Jun 2002 21:30:09 -0500

 Dennis Myers [EMAIL PROTECTED] wrote:
  Hi all, I bought a PNY compact flash card reader, usb type and had seen
  where several folks were able to use it on Mandrake 8.2.  I tried
  mounting it but it is not coming up. I used mount -t  vfat /dev/sda1
  /mnt/compactflash reply is  /mnt/compactflash does not exist.  What or
  how do I create a mount point for the card reader and how do I find out
  what it's device name is? Harddrake doesn't tell me, just says unknown. 
  Hate to take it back the package is a pain to put back together. TIA for
  any help.
  --
  Dennis M. linux user #180842

 Did you actually make a directory under /mnt called compactflash?  If so,
 your mount command should work (assuming you don't have other SCSI devices,
 in which case, your reader might not be sda1).  Assuming your reader
 actually is sda1 and you have created the directory compactflash under
 /mnt, you can add the following line to your /etc/fstab file: /dev/sda1
 /mnt/compactflash vfat noauto,user

 Then you can just say mount /mnt/compactflash and it should work.  BTW, the
 noauto tells linux not to automatically mount it at startup, since it will
 generate an error unless the flash card is actually in it.  The user allows
 a regular user to mount/unmount it.

 Joe
All would work I bet if I didn't get the following message:
mount: special device /dev/sda1 does not exist
anyone have an idea of how to create sda1. All the usb and scsi modules are 
loaded as far as I can tell. Hope Mandrakesoft is working on getting better 
usb support for 9.0. Any help is always appreciated.
-- 
Dennis M. linux user #180842



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



Re: [newbie] compact flash card usb reader

2002-06-23 Per discussione Dennis Myers

On Sunday 23 June 2002 12:44 am, you wrote:
 Dennis Myers wrote:
 On Saturday 22 June 2002 10:47 pm, you wrote:
 On Saturday 22 June 2002 07:30 pm, Dennis Myers did speak unto the
  huddled
 
 masses, saying:
 Hi all, I bought a PNY compact flash card reader, usb type and had seen
 where several folks were able to use it on Mandrake 8.2.  I tried
 mounting it but it is not coming up. I used mount -t  vfat /dev/sda1
 /mnt/compactflash reply is  /mnt/compactflash does not exist.  What or
 how do I create a mount point for the card reader and how do I find out
 what it's device name is? Harddrake doesn't tell me, just says unknown.
 Hate to take it back the package is a pain to put back together. TIA for
 any help.
 
 if i understand you correctly (i likely don't) just make a
 /mnt/compactflash directory.
 
 I did that and I get  mount: fs type fs=vfat not supported by kernel. 
  So the line I have in fstab is: /dev/sda1 /mnt/compactflash fs=vfat
  noauto,user 0 0
 and that just doesn't feel right.   Oh I had previously done the
 mkdir /mnt/compactflash but nothing shows up in mtab. The directory is
 there in /mnt but nothing in it even though the card in the reader has a
 couple of pictures on it.  Any ideas? All help is appreciated.
 
 
 
 
 Want to buy your Pack or Services from MandrakeSoft?
 Go to http://www.mandrakestore.com

 What happens when you do

 rpm -qa | grep hotplug

 ??

 Civileme
I get:  
 [root@dennis dennis]# rpm -qa | grep hotplug
hotplug-2002_01_14-4mdk

so I guess hotplug is installed,  that's good right?
-- 
Dennis M. linux user #180842



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



Re: [newbie] compact flash card usb reader

2002-06-23 Per discussione Dennis Myers

On Sunday 23 June 2002 10:59 am, you wrote:
 On Saturday 22 June 2002 09:00 pm, Dennis Myers did speak unto the huddled

 masses, saying:
tried mounting it but it is not coming up. I used mount -t  vfat
/dev/sda1 /mnt/compactflash reply is  /mnt/compactflash does not
  
   if i understand you correctly (i likely don't) just make a
   /mnt/compactflash directory.
 
  I did that and I get  mount: fs type fs=vfat not supported by kernel.
  So the line I have in fstab is: /dev/sda1 /mnt/compactflash fs=vfat
  noauto,user 0 0

 well the line i use in fstab for my mmc is /dev/sda1 /mnt/floppy vfat user
 0 0

 i think maybe you don't need the fs= bit.  also i use kwikdisk to
 mount/unmount.  it works rather well.

H, now it tells me wrong fs type, bad option,bad superblock on /dev/sda, 
or too many mounted file systems. 
I changed it to /dev/sda to see if that would overcome /dev/sda1 does not 
exist, but usbview shows:

usb-storage
Speed: 12Mb/s (full)
USB Version:  1.10
Device Class: 00(ifc )
Device Subclass: 00
Device Protocol: 00
Maximum Default Endpoint Size: 8
Number of Configurations: 1
Vendor Id: 05e3
Product Id: 0700
Revision Number:  1.13

Config Number: 1
Number of Interfaces: 1
Attributes: 80
MaxPower Needed:  96mA

Interface Number: 0
Name: usb-storage
Alternate Number: 0
Class: 08(stor.) 
Sub Class: 6
Protocol: 50
Number of Endpoints: 2

Endpoint Address: 81
Direction: in
Attribute: 2
Type: Bulk
Max Packet Size: 64
Interval:   0ms

Endpoint Address: 02
Direction: out
Attribute: 2
Type: Bulk
Max Packet Size: 64
Interval:   0ms. 
The usb thing seems to be a stumbling block for the newbie who is not used to 
command line or knowing computers very well.  I seem to have a problem with 
it and I've been using linux for two years now.  Bummer, Any other 
suggestions or configs are appreciated. Thanks,

-- 
Dennis M. linux user #180842



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



Re: [newbie] compact flash card usb reader

2002-06-23 Per discussione shane

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Sunday 23 June 2002 10:23 am, Dennis Myers did speak unto the huddled 
masses, saying:

 H, now it tells me wrong fs type, bad option,bad superblock on
 /dev/sda, or too many mounted file systems.
 I changed it to /dev/sda to see if that would overcome /dev/sda1 does not
 exist, but usbview shows:

well mine is sda1 you might be sda0.  should have said that.

i agree, USB is one of the places where linux is less than intuitive.  i 
also wish my scanner was supported :( but i so prefer it to the 
alternative

- -- 
When everyone agrees around here, it means that something must be wrong.

shane
Profile at: http://dmoz.org/profiles/shen.html
Proud to be a DMOZ editor since 10-98
Mandrake Users Club Member http://www.linux-mandrake.com/en/club/
Registered linux user #101606  http://counter.li.org/
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.6 (GNU/Linux)
Comment: For info see http://www.gnupg.org

iD8DBQE9FgZMBwq+ZwvIN/oRAr9gAJ9D0zX2zfDeMZ7++0pMJQgtEQB1JACfUMEm
eB9kP0GIPcz9hZNkIr2mG+M=
=J2N+
-END PGP SIGNATURE-




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



Re: [newbie] compact flash card usb reader

2002-06-23 Per discussione Joseph Braddock

On Sat, 22 Jun 2002 23:00:58 -0500
Dennis Myers [EMAIL PROTECTED] wrote:
  if i understand you correctly (i likely don't) just make a
  /mnt/compactflash directory.
 
 I did that and I get  mount: fs type fs=vfat not supported by kernel.  So 
 the line I have in fstab is: /dev/sda1 /mnt/compactflash fs=vfat noauto,user 
 0 0
 and that just doesn't feel right.   Oh I had previously done the 
 mkdir /mnt/compactflash but nothing shows up in mtab. The directory is 
 there in /mnt but nothing in it even though the card in the reader has a 
 couple of pictures on it.  Any ideas? All help is appreciated. 
 -- 
 Dennis M. linux user #180842
 
First, I think you need to remove the fs= before the vfat.  Are you using the stock 
kernel and are you using LM 8.2?  I have the PNY SmartMedia reader (not the compact 
flash) and under 8.1, I had to use msdos or umsdos (I can't remember which) instead of 
vfat, so you might try one of them.  Also, although I don't think this is the problem, 
you might try a shorter directory name under mnt.  Something 8 characters or less.  
Finally, and I know this is a stupid questions, so I ask for forgiveness up front, you 
do have the compact flash in the reader and it has been formatted by the camera, right?

Joe




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



[newbie] compact flash card usb reader

2002-06-22 Per discussione Dennis Myers

Hi all, I bought a PNY compact flash card reader, usb type and had seen where 
several folks were able to use it on Mandrake 8.2.  I tried mounting it but 
it is not coming up. I used mount -t  vfat /dev/sda1 /mnt/compactflash
reply is  /mnt/compactflash does not exist.  What or how do I create a mount 
point for the card reader and how do I find out what it's device name is? 
Harddrake doesn't tell me, just says unknown.  Hate to take it back the 
package is a pain to put back together. TIA for any help.
-- 
Dennis M. linux user #180842



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



Re: [newbie] compact flash card usb reader

2002-06-22 Per discussione shane

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Saturday 22 June 2002 07:30 pm, Dennis Myers did speak unto the huddled 
masses, saying:

 Hi all, I bought a PNY compact flash card reader, usb type and had seen
 where several folks were able to use it on Mandrake 8.2.  I tried
 mounting it but it is not coming up. I used mount -t  vfat /dev/sda1
 /mnt/compactflash reply is  /mnt/compactflash does not exist.  What or
 how do I create a mount point for the card reader and how do I find out
 what it's device name is? Harddrake doesn't tell me, just says unknown. 
 Hate to take it back the package is a pain to put back together. TIA for
 any help.

if i understand you correctly (i likely don't) just make a /mnt/compactflash 
directory.

- -- 
To live is to war with trolls -Isben

shane
Profile at: http://dmoz.org/profiles/shen.html
Proud to be a DMOZ editor since 10-98
Mandrake Users Club Member http://www.linux-mandrake.com/en/club/
Registered linux user #101606  http://counter.li.org/
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.6 (GNU/Linux)
Comment: For info see http://www.gnupg.org

iD8DBQE9FUTkBwq+ZwvIN/oRAv1TAJ9OWlViOPei5Pv2qSmYxtm/wdc0XgCbBZ4C
njmHDTH3irOt+7lQCJsl++c=
=rQXE
-END PGP SIGNATURE-




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



Re: [newbie] compact flash card usb reader

2002-06-22 Per discussione Joseph Braddock

On Sat, 22 Jun 2002 21:30:09 -0500
Dennis Myers [EMAIL PROTECTED] wrote:

 Hi all, I bought a PNY compact flash card reader, usb type and had seen where 
 several folks were able to use it on Mandrake 8.2.  I tried mounting it but 
 it is not coming up. I used mount -t  vfat /dev/sda1 /mnt/compactflash
 reply is  /mnt/compactflash does not exist.  What or how do I create a mount 
 point for the card reader and how do I find out what it's device name is? 
 Harddrake doesn't tell me, just says unknown.  Hate to take it back the 
 package is a pain to put back together. TIA for any help.
 -- 
 Dennis M. linux user #180842
 
 


Did you actually make a directory under /mnt called compactflash?  If so, your mount 
command should work (assuming you don't have other SCSI devices, in which case, your 
reader might not be sda1).  Assuming your reader actually is sda1 and you have created 
the directory compactflash under /mnt, you can add the following line to your 
/etc/fstab file:
  /dev/sda1 /mnt/compactflash vfat noauto,user

Then you can just say mount /mnt/compactflash and it should work.  BTW, the noauto 
tells linux not to automatically mount it at startup, since it will generate an error 
unless the flash card is actually in it.  The user allows a regular user to 
mount/unmount it.

Joe



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



Re: [newbie] compact flash card usb reader

2002-06-22 Per discussione Dennis Myers

On Saturday 22 June 2002 10:47 pm, you wrote:
 On Saturday 22 June 2002 07:30 pm, Dennis Myers did speak unto the huddled

 masses, saying:
  Hi all, I bought a PNY compact flash card reader, usb type and had seen
  where several folks were able to use it on Mandrake 8.2.  I tried
  mounting it but it is not coming up. I used mount -t  vfat /dev/sda1
  /mnt/compactflash reply is  /mnt/compactflash does not exist.  What or
  how do I create a mount point for the card reader and how do I find out
  what it's device name is? Harddrake doesn't tell me, just says unknown.
  Hate to take it back the package is a pain to put back together. TIA for
  any help.

 if i understand you correctly (i likely don't) just make a
 /mnt/compactflash directory.

I did that and I get  mount: fs type fs=vfat not supported by kernel.  So 
the line I have in fstab is: /dev/sda1 /mnt/compactflash fs=vfat noauto,user 
0 0
and that just doesn't feel right.   Oh I had previously done the 
mkdir /mnt/compactflash but nothing shows up in mtab. The directory is 
there in /mnt but nothing in it even though the card in the reader has a 
couple of pictures on it.  Any ideas? All help is appreciated. 
-- 
Dennis M. linux user #180842



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



Re: [newbie] compact flash card usb reader

2002-06-22 Per discussione civileme

Dennis Myers wrote:

On Saturday 22 June 2002 10:47 pm, you wrote:

On Saturday 22 June 2002 07:30 pm, Dennis Myers did speak unto the huddled

masses, saying:

Hi all, I bought a PNY compact flash card reader, usb type and had seen
where several folks were able to use it on Mandrake 8.2.  I tried
mounting it but it is not coming up. I used mount -t  vfat /dev/sda1
/mnt/compactflash reply is  /mnt/compactflash does not exist.  What or
how do I create a mount point for the card reader and how do I find out
what it's device name is? Harddrake doesn't tell me, just says unknown.
Hate to take it back the package is a pain to put back together. TIA for
any help.

if i understand you correctly (i likely don't) just make a
/mnt/compactflash directory.


I did that and I get  mount: fs type fs=vfat not supported by kernel.  So 
the line I have in fstab is: /dev/sda1 /mnt/compactflash fs=vfat noauto,user 
0 0
and that just doesn't feel right.   Oh I had previously done the 
mkdir /mnt/compactflash but nothing shows up in mtab. The directory is 
there in /mnt but nothing in it even though the card in the reader has a 
couple of pictures on it.  Any ideas? All help is appreciated. 




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

What happens when you do

rpm -qa | grep hotplug

??

Civileme






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



Re: [newbie-it] Flash Plugins

2002-02-27 Per discussione Daniele Micci

Il giorno 19:53, mercoledì 27 febbraio 2002 hai scritto:
 anch'io con la mandrake 8.1 ho lo stesso problema!
 Solo con konqueror, con netscape tutto funziona egregiamente
 mentre con la redhat 7.2 e copiati come da istruzioni tutto funzionava
 egregiamente, anke konqueror

Ciao, devi installare un modulo dai CD di Mandrake.
Cerca nsplugin utilizzando il Software Manager. Installa il pacchetto RPM 
che viene elencato, e vai nelle Impostazioni del Konqueror. Troverai una 
nuova voce nella colonna di sinistra, relativa ai plugin di Netscape. Abilita 
il supporto, ed il gioco è fatto.

Daniele




Re: [newbie-it] Flash Plugins

2002-02-27 Per discussione michele

Alle 18:05, lunedì 25 febbraio 2002, hai scritto:
 Ho scaricato e installato i plugins di Flash 5.0 per netscape, li ho
 installati come scritto nel file readme incluso con essi, lanciando
 netscape e immettendo l'inidrizzo about:plugin effettivamente mi dice
 che ho installato Shockwave Flash 5.0 r47! E' tutto corretto, peccato
 che quando mi collego a qualche sito chr richiede flash 5.0 non mi si
 apre la pagina. Nello specifico il sito è www.paolabarale.it Qualcuno a
 verificato il mio stesso problema?

 Grazie, Pollo.
Mi correggo dal mio precedente messaggio ma alcuni siti tipo
www.esposi.it li visualizza perfettamente netscape mentre anche a me nel sito 
detto da pollo www.paolabarale.it mi dice che che rivela solo i plugins di 
flash 4!
Mistero
grazie michele




Re: [newbie-it] Flash Plugins

2002-02-27 Per discussione Daniele Micci

Il giorno 20:12, mercoledì 27 febbraio 2002 hai scritto:
 Mi correggo dal mio precedente messaggio ma alcuni siti tipo
 www.esposi.it li visualizza perfettamente netscape mentre anche a me nel
 sito detto da pollo www.paolabarale.it mi dice che che rivela solo i
 plugins di flash 4!
 Mistero
 grazie michele

Ciao, il plugin più recente per Linux è il 5.0 (che immagino sia quello che 
hai installato tu). Non è che magari il problema dipende dallo script del 
sito che fa confusione? Prova a contattare il webmaster...

Daniele




[newbie-it] Flash Plugins

2002-02-25 Per discussione Pollo

Ho scaricato e installato i plugins di Flash 5.0 per netscape, li ho
installati come scritto nel file readme incluso con essi, lanciando
netscape e immettendo l'inidrizzo about:plugin effettivamente mi dice
che ho installato Shockwave Flash 5.0 r47! E' tutto corretto, peccato
che quando mi collego a qualche sito chr richiede flash 5.0 non mi si
apre la pagina. Nello specifico il sito è www.paolabarale.it Qualcuno a
verificato il mio stesso problema?

Grazie, Pollo.







[newbie] SanDisk Flash Card Reader

2001-12-23 Per discussione Bob Bomar

Mandrake 8.1 found the SanDisk Flash Card reader, but I can not figure out 
how to access it to read the cards.  Can any body point me in the right 
direction? 

Thanks 
Bob



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



Re: [newbie] SanDisk Flash Card Reader

2001-12-23 Per discussione Bryan S. Tyson

On Sun, 23 Dec 2001, Bob wrote:

 Mandrake 8.1 found the SanDisk Flash Card reader, but I can not figure out 
 how to access it to read the cards.  Can any body point me in the right 
 direction? 

modprobe usb-storage
mount -t vfat /dev/sda1 /compactflash (or whatever mount point you want)

***
Powered by SuSE Linux 7.0 Professional
KMail 1.0.29.2

Bryan S. Tyson
[EMAIL PROTECTED]
***



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



  1   2   >