[Bug 1862854] [NEW] srun with pmix plugin searches .so file at wrong location

2020-02-11 Thread segler
Public bug reported:

Which version of ubuntu:
distribution is newest daily of ubuntu focal with all updates as of today.

What i want to accomplish:
use slurm-wlm in combination with openmpi with a simple test.

How to reproduce:
1) Use slurm-wlm on a small single node test setup, with just the example slurm 
conf copied, and the server name changed accordingly in the slurm.conf file at
> SlurmctldHost=srv0
and
> NodeName=srv0 State=UNKNOWN
2) start slurmctld and slurmd daemons
3) create small sample hello world for mpi test
#include 
#include 

int main(int argc, char** argv) {
// Initialize the MPI environment
MPI_Init(NULL, NULL);

// Get the number of processes
int world_size;
MPI_Comm_size(MPI_COMM_WORLD, &world_size);

// Get the rank of the process
int world_rank;
MPI_Comm_rank(MPI_COMM_WORLD, &world_rank);

// Get the name of the processor
char processor_name[MPI_MAX_PROCESSOR_NAME];
int name_len;
MPI_Get_processor_name(processor_name, &name_len);

// Print off a hello world message
printf("Hello world from processor %s, rank %d out of %d processors\n",
   processor_name, world_rank, world_size);

// Finalize the MPI environment.
MPI_Finalize();
}
4) mpicc test.c
5) mpirun ./a.out works correctly

6) trying the same with slurm: srun --mpi=pmix ./a.out
which gives me
> srun: error: (null) [0] /mpi_pmix.c:133 [init] mpi/pmix: ERROR: pmi/pmix: can 
> not load PMIx library
> srun: error: Couldn't load specified plugin name for mpi/pmix: Plugin init() 
> callback failed
> srun: error: cannot create mpi context for mpi/pmix
> srun: error: invalid MPI type 'pmix', --mpi=list for acceptable types

7) test if the pmix plugin is really supported with: srun --mpi=list
gives me
> srun: MPI types are...
> srun: pmix_v3
> srun: none
> srun: pmi2
> srun: pmix
> srun: openmpi

8) more verbose output of the failing command: strace srun --mpi=pmix ./a.out
shorter output: (tells me that the library is actually not at the path that 
slurm expects it to be)

openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/pmix/lib/libpmix.so", 
O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
poll([{fd=2, events=POLLOUT}], 1, 5000) = 1 ([{fd=2, revents=POLLOUT}])
fstat(2, {st_mode=S_IFCHR|0620, st_rdev=makedev(0x88, 0), ...}) = 0
write(2, "srun: error: (null) [0] /mpi_pmi"..., 100srun: error: (null) [0] 
/mpi_pmix.c:133 [init] mpi/pmix: ERROR: pmi/pmix: can not load PMIx library
) = 100

9) check the real content of the directory of the library with: ls -lh
/usr/lib/x86_64-linux-gnu/pmix/lib/

total 2,6M
lrwxrwxrwx 1 root root   29 Okt 19 19:57 libmca_common_dstore.so.1 -> 
libmca_common_dstore.so.1.0.1
-rw-r--r-- 1 root root  59K Okt 19 19:57 libmca_common_dstore.so.1.0.1
lrwxrwxrwx 1 root root   16 Okt 19 19:57 libpmi2.so.1 -> libpmi2.so.1.0.0
-rw-r--r-- 1 root root 863K Okt 19 19:57 libpmi2.so.1.0.0
lrwxrwxrwx 1 root root   15 Okt 19 19:57 libpmi.so.1 -> libpmi.so.1.0.1
-rw-r--r-- 1 root root 863K Okt 19 19:57 libpmi.so.1.0.1
lrwxrwxrwx 1 root root   17 Okt 19 19:57 libpmix.so.2 -> libpmix.so.2.2.24
-rw-r--r-- 1 root root 847K Okt 19 19:57 libpmix.so.2.2.24
drwxr-xr-x 3 root root 4,0K Feb 11 21:43 pmix

10) it seems the library is actually there, but the name is not perfectly 
correct:
slurm wants "libpmix.so" but the real name is "libpmix.so.2"

11) try to make a link with the name:
ln -s /usr/lib/x86_64-linux-gnu/pmix/lib/libpmix.so.2.2.24 
/usr/lib/x86_64-linux-gnu/pmix/lib/libpmix.so

12) try slurm again: 
$ srun --mpi=pmix -n4 ~segler/a.out 
Hello world from processor srv0, rank 0 out of 4 processors
Hello world from processor srv0, rank 2 out of 4 processors
Hello world from processor srv0, rank 1 out of 4 processors
Hello world from processor srv0, rank 3 out of 4 processors

13) it works!!! :)

could you add the library link to the package of libpmix2?

$ dpkg -S /usr/lib/x86_64-linux-gnu/pmix/lib/libpmix.so.2.2.24
libpmix2:amd64: /usr/lib/x86_64-linux-gnu/pmix/lib/libpmix.so.2.2.24

thank you!

ProblemType: Bug
DistroRelease: Ubuntu 20.04
Package: slurm-wlm 19.05.5-1
ProcVersionSignature: Ubuntu 5.4.0-12.15-generic 5.4.8
Uname: Linux 5.4.0-12-generic x86_64
ApportVersion: 2.20.11-0ubuntu16
Architecture: amd64
Date: Tue Feb 11 23:01:18 2020
InstallationDate: Installed on 2020-02-11 (0 days ago)
InstallationMedia: Ubuntu-Server 20.04 LTS "Focal Fossa" - Alpha amd64 
(20200124)
ProcEnviron:
 SHELL=/bin/bash
 LANG=de_DE.UTF-8
 TERM=xterm-256color
 PATH=(custom, no user)
SourcePackage: slurm-llnl
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: slurm-llnl (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug focal

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launch

[Bug 1616009] Re: gpg agent not present after upgrade to yakkety

2016-11-23 Thread segler
if you don't need an password cache i think you could just deactivate the use 
of gpg-agent in 
~/.gnupg/gpg.conf by removing "use-agent"

but i need gpg-agent because of my smartcard and use of SSH emulation
with gpg-agent

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1616009

Title:
  gpg agent not present after upgrade to yakkety

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnupg2/+bug/1616009/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1616009] Re: gpg agent not present after upgrade to yakkety

2016-11-23 Thread segler
also a new install does not help. gpg-agent is running, but the environment 
variable it normally sets with the normal start:
$ eval $(gpg-agent --daemon)
is NOT set

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1616009

Title:
  gpg agent not present after upgrade to yakkety

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnupg2/+bug/1616009/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1616009] Re: gpg agent not present after upgrade to yakkety

2016-11-23 Thread segler
even
$ set | grep GPG
does not show anything

so something broke here

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1616009

Title:
  gpg agent not present after upgrade to yakkety

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnupg2/+bug/1616009/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1241439] Re: no sound/audio, traps: pulseaudio[25921] trap divide error ip:7fe46a303a57 sp:7fff825b91d0 error:0 in libavutil.so.51.22.1

2013-10-20 Thread segler
i use ubuntu 13.10 64bit too
without using a52 plugin, all works. but when i saw you guys packaged it i 
really had to try it :)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1241439

Title:
  no sound/audio,  traps: pulseaudio[25921] trap divide error
  ip:7fe46a303a57 sp:7fff825b91d0 error:0 in libavutil.so.51.22.1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/1241439/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1241439] Re: no sound/audio, traps: pulseaudio[25921] trap divide error ip:7fe46a303a57 sp:7fff825b91d0 error:0 in libavutil.so.51.22.1

2013-10-20 Thread segler
i did forget to mention that i did not compile anything myself, i only
installed libasound2-plugins-extra

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1241439

Title:
  no sound/audio,  traps: pulseaudio[25921] trap divide error
  ip:7fe46a303a57 sp:7fff825b91d0 error:0 in libavutil.so.51.22.1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/1241439/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1241439] Re: no sound/audio, traps: pulseaudio[25921] trap divide error ip:7fe46a303a57 sp:7fff825b91d0 error:0 in libavutil.so.51.22.1

2013-10-20 Thread segler
i get this error after trying a52 plugin for alsa
(https://help.ubuntu.com/community/DigitalAC-3Pulseaudio)

[ 1018.821102] traps: pulseaudio[4609] trap divide error ip:7ffa52100a57 
sp:7fff053ea510 error:0 in libavutil.so.51.22.1[7ffa520ed000+1c000]
[ 1019.662313] traps: pulseaudio[4616] trap divide error ip:7fe8c003da57 
sp:7fff5672fd30 error:0 in libavutil.so.51.22.1[7fe8c002a000+1c000]
[ 1023.878323] traps: pulseaudio[4682] trap divide error ip:7f4b285d2a57 
sp:7fff34c1bfe0 error:0 in libavutil.so.51.22.1[7f4b285bf000+1c000]
[ 1026.173589] traps: pulseaudio[4690] trap divide error ip:7f0ff55dda57 
sp:7fff73481b70 error:0 in libavutil.so.51.22.1[7f0ff55ca000+1c000]
[ 1032.169982] traps: pulseaudio[4698] trap divide error ip:7fc5a2c13a57 
sp:7fff827c2070 error:0 in libavutil.so.51.22.1[7fc5a2c0+1c000]

this error only appears if if add the following to  ~/.asound.rc

pcm.a52 {
@args [ CARD ]
@args.CARD {
   type string
   default 0
}
type plug
slave {
   pcm {
   type a52
   card $CARD
   }
}
}

maybe this will help geting to the error

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1241439

Title:
  no sound/audio,  traps: pulseaudio[25921] trap divide error
  ip:7fe46a303a57 sp:7fff825b91d0 error:0 in libavutil.so.51.22.1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/1241439/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 768455] Re: apt-get update of grub did not work today

2011-04-21 Thread segler
** Attachment added: "grub-probe-error.log"
   
https://bugs.launchpad.net/ubuntu/+source/grub2/+bug/768455/+attachment/2080202/+files/grub-probe-error.log

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/768455

Title:
  apt-get update of grub did not work today

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 768455] Re: apt-get update of grub did not work today

2011-04-21 Thread segler
i did 
# /usr/sbin/grub-probe --device-map="/boot/grub/device.map" --target=fs -vv 
/boot/grub > grub-probe.log 2> grub-probe-error.log
again, and got the error again, hm :( why it worked one time i do not 
know...


** Attachment added: "grub-probe.log"
   
https://bugs.launchpad.net/ubuntu/+source/grub2/+bug/768455/+attachment/2080201/+files/grub-probe.log

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/768455

Title:
  apt-get update of grub did not work today

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 768455] Re: apt-get update of grub did not work today

2011-04-21 Thread segler
hmmm, but  this does not work:

# grub-install /dev/sda
/usr/sbin/grub-probe: error: file not found.
Auto-detection of a filesystem of /dev/sda2 failed.
Please report this together with the output of "/usr/sbin/grub-probe 
--device-map="/boot/grub/device.map" --target=fs -v /boot/grub" to 


-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/768455

Title:
  apt-get update of grub did not work today

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 768455] Re: apt-get update of grub did not work today

2011-04-21 Thread segler
i did
# apt-get upgrade
again.

the problem mysteriously disappeared. thank you for fast help

# apt-get upgrade
Paketlisten werden gelesen... Fertig
Abhängigkeitsbaum wird aufgebaut   
Statusinformationen werden eingelesen... Fertig
0 aktualisiert, 0 neu installiert, 0 zu entfernen und 0 nicht aktualisiert.
1 nicht vollständig installiert oder entfernt.
Nach dieser Operation werden 0 B Plattenplatz zusätzlich benutzt.
Möchten Sie fortfahren [J/n]? 
grub-pc (1.99~rc1-13ubuntu2) wird eingerichtet ...
Generating grub.cfg ...
Found linux image: /boot/vmlinuz-2.6.38-8-generic
Found initrd image: /boot/initrd.img-2.6.38-8-generic
Found memtest86+ image: /@/boot/memtest86+.bin
Found Microsoft Windows XP Professional on /dev/sda1
done

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/768455

Title:
  apt-get update of grub did not work today

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 768455] Re: apt-get update of grub did not work today

2011-04-21 Thread segler
** Attachment added: "grub-probe-error.log"
   
https://bugs.launchpad.net/ubuntu/+source/grub2/+bug/768455/+attachment/2080176/+files/grub-probe-error.log

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/768455

Title:
  apt-get update of grub did not work today

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 768455] Re: apt-get update of grub did not work today

2011-04-21 Thread segler
output of
/usr/sbin/grub-probe --device-map="/boot/grub/device.map" --target=fs -vv 
/boot/grub > grub-probe.log 2> grub-probe-error.log

** Attachment added: "grub-probe.log"
   
https://bugs.launchpad.net/ubuntu/+source/grub2/+bug/768455/+attachment/2080175/+files/grub-probe.log

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/768455

Title:
  apt-get update of grub did not work today

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 768455] Re: apt-get update of grub did not work today

2011-04-21 Thread segler
dpkg.log of today

** Attachment added: "dpkg.log"
   
https://bugs.launchpad.net/ubuntu/+source/grub2/+bug/768455/+attachment/2080163/+files/dpkg.log

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/768455

Title:
  apt-get update of grub did not work today

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 768455] [NEW] apt-get update of grub did not work today

2011-04-21 Thread segler
Public bug reported:

Binary package hint: grub

i did:
# apt-get update
Paketlisten werden gelesen... Fertig
Abhängigkeitsbaum wird aufgebaut   
Statusinformationen werden eingelesen... Fertig
0 aktualisiert, 0 neu installiert, 0 zu entfernen und 0 nicht aktualisiert.
1 nicht vollständig installiert oder entfernt.
Nach dieser Operation werden 0 B Plattenplatz zusätzlich benutzt.
Möchten Sie fortfahren [J/n]? 
grub-pc (1.99~rc1-13ubuntu2) wird eingerichtet ...
Generating grub.cfg ...
/usr/sbin/grub-probe: error: file not found.
dpkg: Fehler beim Bearbeiten von grub-pc (--configure):
 Unterprozess installiertes post-installation-Skript gab den Fehlerwert 1 zurück
Fehler traten auf beim Bearbeiten von:
 grub-pc
E: Sub-process /usr/bin/dpkg returned an error code (1)

then i tried:
# grub-install /dev/sda
/usr/sbin/grub-probe: error: file not found.
Auto-detection of a filesystem of /dev/sda2 failed.
Please report this together with the output of "/usr/sbin/grub-probe 
--device-map="/boot/grub/device.map" --target=fs -v /boot/grub" to 


then i did as it told me:
# /usr/sbin/grub-probe --device-map="/boot/grub/device.map" --target=fs -v 
/boot/grub
/usr/sbin/grub-probe: info: »/boot/grub/device.map« kann nicht geöffnet werden.
/usr/sbin/grub-probe: info: the size of hd0 is 976773168.
/usr/sbin/grub-probe: info: the size of hd0 is 976773168.
/usr/sbin/grub-probe: info: the size of hd1 is 3907029168.
/usr/sbin/grub-probe: info: the size of hd1 is 3907029168.
/usr/sbin/grub-probe: info: the size of hd2 is 3907029168.
/usr/sbin/grub-probe: info: the size of hd2 is 3907029168.
/usr/sbin/grub-probe: info: the size of hd3 is 1953525168.
/usr/sbin/grub-probe: info: the size of hd3 is 1953525168.
/usr/sbin/grub-probe: info: scanning hd0 for LVM.
/usr/sbin/grub-probe: info: the size of hd0 is 976773168.
/usr/sbin/grub-probe: info: no LVM signature found
.
/usr/sbin/grub-probe: info: the size of hd0 is 976773168.
/usr/sbin/grub-probe: info: scanning hd1 for LVM.
/usr/sbin/grub-probe: info: the size of hd1 is 3907029168.
/usr/sbin/grub-probe: info: no LVM signature found
.
/usr/sbin/grub-probe: info: the size of hd1 is 3907029168.
/usr/sbin/grub-probe: info: scanning hd2 for LVM.
/usr/sbin/grub-probe: info: the size of hd2 is 3907029168.
/usr/sbin/grub-probe: info: no LVM signature found
.
/usr/sbin/grub-probe: info: the size of hd2 is 3907029168.
/usr/sbin/grub-probe: info: scanning hd3 for LVM.
/usr/sbin/grub-probe: info: the size of hd3 is 1953525168.
/usr/sbin/grub-probe: info: no LVM signature found
.
/usr/sbin/grub-probe: info: the size of hd3 is 1953525168.
/usr/sbin/grub-probe: info: the size of hd0 is 976773168.
/usr/sbin/grub-probe: info: the size of hd0 is 976773168.
/usr/sbin/grub-probe: info: the size of hd1 is 3907029168.
/usr/sbin/grub-probe: info: the size of hd1 is 3907029168.
/usr/sbin/grub-probe: info: the size of hd2 is 3907029168.
/usr/sbin/grub-probe: info: the size of hd2 is 3907029168.
/usr/sbin/grub-probe: info: the size of hd3 is 1953525168.
/usr/sbin/grub-probe: info: the size of hd3 is 1953525168.
/usr/sbin/grub-probe: info: the size of hd0 is 976773168.
/usr/sbin/grub-probe: info: the size of hd0 is 976773168.
/usr/sbin/grub-probe: info: the size of hd1 is 3907029168.
/usr/sbin/grub-probe: info: the size of hd1 is 3907029168.
/usr/sbin/grub-probe: info: the size of hd2 is 3907029168.
/usr/sbin/grub-probe: info: the size of hd2 is 3907029168.
/usr/sbin/grub-probe: info: the size of hd3 is 1953525168.
/usr/sbin/grub-probe: info: the size of hd3 is 1953525168.
/usr/sbin/grub-probe: info: the size of hd0 is 976773168.
/usr/sbin/grub-probe: info: the size of hd0 is 976773168.
/usr/sbin/grub-probe: info: the size of hd0 is 976773168.
/usr/sbin/grub-probe: info: the size of hd0 is 976773168.
/usr/sbin/grub-probe: info: the size of hd0 is 976773168.
/usr/sbin/grub-probe: info: the size of hd0 is 976773168.
/usr/sbin/grub-probe: info: the size of hd1 is 3907029168.
/usr/sbin/grub-probe: info: the size of hd1 is 3907029168.
/usr/sbin/grub-probe: info: the size of hd1 is 3907029168.
/usr/sbin/grub-probe: info: the size of hd2 is 3907029168.
/usr/sbin/grub-probe: info: the size of hd2 is 3907029168.
/usr/sbin/grub-probe: info: the size of hd2 is 3907029168.
/usr/sbin/grub-probe: info: the size of hd3 is 1953525168.
/usr/sbin/grub-probe: info: the size of hd3 is 1953525168.
/usr/sbin/grub-probe: info: the size of hd3 is 1953525168.
/usr/sbin/grub-probe: info: the size of hd0 is 976773168.
/usr/sbin/grub-probe: info: the size of hd0 is 976773168.
/usr/sbin/grub-probe: info: the size of hd0 is 976773168.
/usr/sbin/grub-probe: info: the size of hd0 is 976773168.
/usr/sbin/grub-probe: info: the size of hd0 is 976773168.
/usr/sbin/grub-probe: info: the size of hd0 is 976773168.
/usr/sbin/grub-probe: info: the size of hd1 is 3907029168.
/usr/sbin/grub-probe: info: the size of hd1 is 3907029168.
/usr/sbin/grub-probe: info: the size of hd1 is 3907029168.
/usr/sbin/grub-probe: info: the size of hd2 is 39070291

[Bug 691552] Re: [natty] Shoutcast stations almost always fail to download

2011-02-15 Thread segler
do you think law enforcement thinks that way?
i don't really trust aol.
but if someone is willing to register with aol, give them all data they want 
and gave me a key, i will add it to activate shoutcast again.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/691552

Title:
  [natty] Shoutcast stations almost always fail to download

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 691552] Re: [natty] Shoutcast stations almost always fail to download

2010-12-31 Thread segler
source: http://dev.aol.com/SHOUTcast

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/691552

Title:
  [natty] Shoutcast stations almost always fail to download

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 691552] Re: [natty] Shoutcast stations almost always fail to download

2010-12-31 Thread segler
they changed the api and i think i cannot use the new api because: (my
plugin provides recording features). what do you think?

4. LICENSE RESTRICTIONS.
4.1. You shall enable the Integrated Product only to playback Content 
accessible through the
Directory Information, and You shall not enable the Integrated Product to 
record Content available
through the Directory Information. Nothing herein shall be deemed to grant You 
the right to alter,
download, or record Content available through the Directory Information or 
SHOUTcast Radio, or to
implement any functionality that would supersede, circumvent, contravene, or 
otherwise
contradict the anti-circumvention provisions of the Digital Millennium 
Copyright Act (“DMCA”) and
applicable laws within the Territories in which You will distribute the 
Integrated Products with respect
to the Content available through the Directory Information.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/691552

Title:
  [natty] Shoutcast stations almost always fail to download

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 691552] Re: [natty] Shoutcast stations almost always fail to download

2010-12-17 Thread segler
hmm, but it is interesting, why the link works with firefox for example
but not with wget  maybe they check user agent string.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/691552

Title:
  [natty] Shoutcast stations almost always fail to download

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 691552] Re: [natty] Shoutcast stations almost always fail to download

2010-12-17 Thread segler
wget http://www.shoutcast.com/sbin/newxml.phtml
does not work either :(
something stinks here, can somebody confirm this?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/691552

Title:
  [natty] Shoutcast stations almost always fail to download

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 691552] Re: [natty] Shoutcast stations almost always fail to download

2010-12-17 Thread segler
have the same problem
2 possibilities:
1) i had problem with shoutcast before, it is not very responsive -> maybe will 
get better tomorrow
2) but i tried it with firefox downloading the same address to, which works. 
maybe they startet filtering downloading bots, needs investigation

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/691552

Title:
  [natty] Shoutcast stations almost always fail to download

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 592538] Re: Please update the package to 2.1.1

2010-11-24 Thread segler
thank you for your help.
here is my next attempt :)

** Patch added: "rhythmbox-radio-browser_2.3.1-0ubuntu1.debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/rhythmbox-radio-browser/+bug/592538/+attachment/1743639/+files/rhythmbox-radio-browser_2.3.1-0ubuntu1.debdiff

-- 
Please update the package to 2.1.1
https://bugs.launchpad.net/bugs/592538
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 592538] Re: Please update the package to 2.1.1

2010-11-24 Thread segler
if it is possible to get this package into lucid too, the other bug can
be discarded. but i don't know if this would be possible

-- 
Please update the package to 2.1.1
https://bugs.launchpad.net/bugs/592538
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 592538] Re: Please update the package to 2.1.1

2010-11-24 Thread segler
this version (2.3.1) i uploaded, already uses the new server

-- 
Please update the package to 2.1.1
https://bugs.launchpad.net/bugs/592538
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 676620] Re: radio station board in the rhythmbox radio browser package will move to another server shortly

2010-11-24 Thread segler
the new version in the other bug, already has the right server

-- 
radio station board in the rhythmbox radio browser package will move to another 
server shortly
https://bugs.launchpad.net/bugs/676620
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 676620] Re: radio station board in the rhythmbox radio browser package will move to another server shortly

2010-11-23 Thread segler
i hope this is the right thing :)

** Patch added: "rhythmbox-radio-browser-2.0-0ubuntu2.debdiff"
   
https://bugs.launchpad.net/ubuntu/+bug/676620/+attachment/1742696/+files/rhythmbox-radio-browser-2.0-0ubuntu2.debdiff

-- 
radio station board in the rhythmbox radio browser package will move to another 
server shortly
https://bugs.launchpad.net/bugs/676620
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 592538] Re: Please update the package to 2.1.1

2010-11-23 Thread segler
oh yes, i forgot to mention that i removed the old patches, because they
are not needed anymore

-- 
Please update the package to 2.1.1
https://bugs.launchpad.net/bugs/592538
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 592538] Re: Please update the package to 2.1.1

2010-11-23 Thread segler
another attempt :)
i did nothing invasive only followed this 
"https://wiki.ubuntu.com/PackagingGuide/Complete#Updating%20an%20Ubuntu%20Package";
 now:

apt-get source rhythmbox-radio-browser
cd rhythmbox-radio-browser-2.0
uscan
uupdate ../rhythmbox-radio-browser_2.3.1.orig.tar.gz
cd ../rhythmbox-radio-browser-2.3.1
dch -e
debuild -S -sa

and i changed "segler_alex" to my real name in control and copyright file
hope that is all ok
please have another look at it
but i did not find anything on installing the gconf.defaults file

** Attachment added: "rhythmbox-radio-browser_2.0-0ubuntu1.debian.tar.gz"
   
https://bugs.launchpad.net/ubuntu/+source/rhythmbox-radio-browser/+bug/592538/+attachment/1742691/+files/rhythmbox-radio-browser_2.0-0ubuntu1.debian.tar.gz

-- 
Please update the package to 2.1.1
https://bugs.launchpad.net/bugs/592538
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 592538] Re: Please update the package to 2.1.1

2010-11-17 Thread segler
i did it the same way i do it for the ppa, i copied the things from
there. i think i changed to cdbs because some tutorial told me to, so i
can use stuff like this file: "rhythmbox-radio-browser.gconf-defaults"

-- 
Please update the package to 2.1.1
https://bugs.launchpad.net/bugs/592538
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 592538] Re: Please update the package to 2.1.1

2010-11-17 Thread segler
would it be possible to upgrade the package in maverick too?
my uploaded package is for natty but it would be nicer to have it in maverick 
too.

-- 
Please update the package to 2.1.1
https://bugs.launchpad.net/bugs/592538
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 592538] Re: Please update the package to 2.1.1

2010-11-17 Thread segler
hmmm, yes this is a patch

** Attachment added: "the same again, marked as patch"
   
https://bugs.launchpad.net/ubuntu/+source/rhythmbox-radio-browser/+bug/592538/+attachment/1736434/+files/rhythmbox-radio-browser_2.3.1-0ubuntu1.debian.tar.gz

-- 
Please update the package to 2.1.1
https://bugs.launchpad.net/bugs/592538
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 592538] Re: Please update the package to 2.1.1

2010-11-17 Thread segler
Please ignore these lintian warnings, the image files are needed exactly
at this place:

W: rhythmbox-radio-browser: image-file-in-usr-lib 
usr/lib/rhythmbox/plugins/radio-browser/local-logo.png
W: rhythmbox-radio-browser: image-file-in-usr-lib 
usr/lib/rhythmbox/plugins/radio-browser/note.png
W: rhythmbox-radio-browser: image-file-in-usr-lib 
usr/lib/rhythmbox/plugins/radio-browser/radio-browser.png
W: rhythmbox-radio-browser: image-file-in-usr-lib 
usr/lib/rhythmbox/plugins/radio-browser/shoutcast-logo.png
W: rhythmbox-radio-browser: image-file-in-usr-lib 
usr/lib/rhythmbox/plugins/radio-browser/xiph-logo.png

rhythmbox cannot load them if they are elsewhere. if you do not believe
me look at the package: "rhythmbox-ubuntuone-music-store". they do the
same. its rhythmbox's fault not mine ;)

-- 
Please update the package to 2.1.1
https://bugs.launchpad.net/bugs/592538
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 592538] Re: Please update the package to 2.1.1

2010-11-17 Thread segler
sorry, i meant "i packaged the version 2.3.1 not 2.1.3" these numbers ;)

-- 
Please update the package to 2.1.1
https://bugs.launchpad.net/bugs/592538
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 592538] Re: Please update the package to 2.1.1

2010-11-17 Thread segler
i packaged the current version 2.1.3


** Attachment added: "rhythmbox-radio-browser_2.3.1-0ubuntu1.debian.tar.gz"
   
https://bugs.launchpad.net/ubuntu/+source/rhythmbox-radio-browser/+bug/592538/+attachment/1736404/+files/rhythmbox-radio-browser_2.3.1-0ubuntu1.debian.tar.gz

-- 
Please update the package to 2.1.1
https://bugs.launchpad.net/bugs/592538
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 676620] Re: radio station board in the rhythmbox radio browser package will move to another server shortly

2010-11-17 Thread segler

** Attachment added: "new changelog file, if needed"
   
https://bugs.launchpad.net/ubuntu/+bug/676620/+attachment/1736339/+files/changelog

-- 
radio station board in the rhythmbox radio browser package will move to another 
server shortly
https://bugs.launchpad.net/bugs/676620
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 676620] Re: radio station board in the rhythmbox radio browser package will move to another server shortly

2010-11-17 Thread segler

** Patch added: "changed old server to new one which is already working"
   
https://bugs.launchpad.net/bugs/676620/+attachment/1736336/+files/board-server-change.patch

-- 
radio station board in the rhythmbox radio browser package will move to another 
server shortly
https://bugs.launchpad.net/bugs/676620
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 676620] [NEW] radio station board in the rhythmbox radio browser package will move to another server shortly

2010-11-17 Thread segler
Public bug reported:

the radio station board of the rhythmbox-radio-browser package will move
to a new server shortly. the new one is already working, so the switch
can be made without problems.

** Affects: ubuntu
 Importance: Undecided
 Status: New

-- 
radio station board in the rhythmbox radio browser package will move to another 
server shortly
https://bugs.launchpad.net/bugs/676620
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 360818] Re: NetworkManager.vpn fails -- nm-vpn-connection.c.900: NeedSecrets

2010-04-30 Thread segler
this bug is still there in lucid

-- 
NetworkManager.vpn fails -- nm-vpn-connection.c.900: NeedSecrets 
https://bugs.launchpad.net/bugs/360818
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 562067] Re: voice call feature, cause psi to crash

2010-04-25 Thread segler
the same happens with the package psi-plus

-- 
voice call feature, cause psi to crash
https://bugs.launchpad.net/bugs/562067
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 567106] Re: [lucid] gpg-agent prevents unprotection of passphrases

2010-04-24 Thread segler
please add this patch to lucid, it is really important to me

-- 
[lucid] gpg-agent prevents unprotection of passphrases
https://bugs.launchpad.net/bugs/567106
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 568518] [NEW] python-xml package disappeared from universe in lucid

2010-04-22 Thread segler
Public bug reported:

why did the python-xml package get removed from universe repository?
if you use freevo with tvtime, it is needed. maybe some other packages need it 
too.

** Affects: ubuntu
 Importance: Undecided
 Status: New

-- 
python-xml package disappeared from universe in lucid
https://bugs.launchpad.net/bugs/568518
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 566782] Re: tangerine does not work in lucid

2010-04-19 Thread segler
*** This bug is a duplicate of bug 530409 ***
https://bugs.launchpad.net/bugs/530409


** Attachment added: "Dependencies.txt"
   http://launchpadlibrarian.net/44831751/Dependencies.txt

** This bug has been marked a duplicate of bug 530409
   tangerine config doesn't work

-- 
tangerine does not work in lucid
https://bugs.launchpad.net/bugs/566782
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 566782] [NEW] tangerine does not work in lucid

2010-04-19 Thread segler
*** This bug is a duplicate of bug 530409 ***
https://bugs.launchpad.net/bugs/530409

Public bug reported:

Binary package hint: tangerine

tangerine does never display the config dialog. it starts, and does
something, i can see the new share in rhythmbox, but it is empty.

the console displays this (I terminated the prog after some time with
STRG-C):

2010-04-19 18:38:07,518 INFO Tangerine started
2010-04-19 18:38:07,529 WARN Config file '/home/segler/.tangerine' was not 
found, using defaults
2010-04-19 18:38:07,535 INFO Server name: segler's Music

** (/usr/lib/tangerine/tangerine-daemon.exe:9100): WARNING **: The following 
assembly referenced from /usr/lib/tangerine/plugins/Banshee.dll could not be 
loaded:
 Assembly:   Banshee.CollectionIndexer(assemblyref_index=1)
 Version:1.5.0.0
 Public Key: (none)
The assembly was not found in the Global Assembly Cache, a path listed in the 
MONO_PATH environment variable, or in the location of the executing assembly 
(/usr/lib/tangerine/plugins/).


** (/usr/lib/tangerine/tangerine-daemon.exe:9100): WARNING **: Could not load 
file or assembly 'Banshee.CollectionIndexer, Version=1.5.0.0, Culture=neutral, 
PublicKeyToken=null' or one of its dependencies.

** (/usr/lib/tangerine/tangerine-daemon.exe:9100): WARNING **: Cannot load type 
'Tangerine.Plugins.BansheePlugin'
2010-04-19 18:38:07,538 ERROR Failed to load plugin assembly 
'/usr/lib/tangerine/plugins/Banshee.dll': Could not load file or assembly 
'Banshee.CollectionIndexer, Version=1.5.0.0, Culture=neutral, 
PublicKeyToken=null' or one of its dependencies.

** (/usr/lib/tangerine/tangerine-daemon.exe:9100): WARNING **: The class 
Beagle.Query could not be loaded, used in Beagle, Version=0.0.0.0, 
Culture=neutral, PublicKeyToken=null
2010-04-19 18:38:07,543 ERROR Failed to load 'file': Exception has been thrown 
by the target of an invocation.
2010-04-19 18:38:07,544 INFO Loaded plugin 'session'
^C2010-04-19 18:38:12,545 WARN Shutting down

ProblemType: Bug
DistroRelease: Ubuntu 10.04
Package: tangerine 0.3.2.2-2
ProcVersionSignature: Ubuntu 2.6.32-21.32-generic 2.6.32.11+drm33.2
Uname: Linux 2.6.32-21-generic x86_64
NonfreeKernelModules: nvidia
Architecture: amd64
CheckboxSubmission: 735cccf182970ee1d30c05b384978bb2
CheckboxSystem: da9af3b901b5569a389df6337f3d812f
Date: Mon Apr 19 18:38:22 2010
InstallationMedia: Ubuntu 10.04 "Lucid Lynx" - Alpha amd64 (20100223.2)
ProcEnviron:
 LANG=de_AT.utf8
 SHELL=/bin/bash
SourcePackage: tangerine

** Affects: tangerine (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug lucid

-- 
tangerine does not work in lucid
https://bugs.launchpad.net/bugs/566782
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 565849] [NEW] paprefs do not let me activate upnp lucid

2010-04-18 Thread segler
Public bug reported:

Binary package hint: pulseaudio

i use lucid amd64 with latest updates, and there is no package
"pulseaudio-module-rygel-media-server" any more.

** Affects: pulseaudio (Ubuntu)
 Importance: Undecided
 Status: New

-- 
paprefs do not let me activate upnp lucid
https://bugs.launchpad.net/bugs/565849
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 546660] Re: Rhythmbox Radio browser plugin unable to download Shoutcast/Icecast server

2010-04-14 Thread segler
** Changed in: rhythmbox-radio-browser (Ubuntu)
   Status: In Progress => Fix Released

-- 
Rhythmbox Radio browser plugin unable to download Shoutcast/Icecast server
https://bugs.launchpad.net/bugs/546660
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 544416] Re: new upstream release

2010-04-14 Thread segler

** Attachment added: "rhythmbox-radio-browser_2.0-0ubuntu1.dsc"
   
http://launchpadlibrarian.net/44194307/rhythmbox-radio-browser_2.0-0ubuntu1.dsc

-- 
new upstream release
https://bugs.launchpad.net/bugs/544416
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 544416] Re: new upstream release

2010-04-14 Thread segler

** Attachment removed: "rhythmbox-radio-browser_2.0-0ubuntu1.dsc"
   
http://launchpadlibrarian.net/44192040/rhythmbox-radio-browser_2.0-0ubuntu1.dsc

** Attachment removed: "rhythmbox-radio-browser_2.0-0ubuntu1.debian.tar.gz"
   
http://launchpadlibrarian.net/44192015/rhythmbox-radio-browser_2.0-0ubuntu1.debian.tar.gz

** Attachment added: "rhythmbox-radio-browser_2.0-0ubuntu1.debian.tar.gz"
   
http://launchpadlibrarian.net/44194303/rhythmbox-radio-browser_2.0-0ubuntu1.debian.tar.gz

-- 
new upstream release
https://bugs.launchpad.net/bugs/544416
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 544416] Re: new upstream release

2010-04-14 Thread segler

** Attachment added: "rhythmbox-radio-browser_2.0-0ubuntu1.dsc"
   
http://launchpadlibrarian.net/44192040/rhythmbox-radio-browser_2.0-0ubuntu1.dsc

-- 
new upstream release
https://bugs.launchpad.net/bugs/544416
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 544416] Re: new upstream release

2010-04-14 Thread segler

** Attachment added: "rhythmbox-radio-browser_2.0-0ubuntu1.debian.tar.gz"
   
http://launchpadlibrarian.net/44192015/rhythmbox-radio-browser_2.0-0ubuntu1.debian.tar.gz

** Attachment removed: "rhythmbox-radio-browser_2.0-1.dsc"
   http://launchpadlibrarian.net/43660561/rhythmbox-radio-browser_2.0-1.dsc

** Attachment removed: "rhythmbox-radio-browser_2.0-1.debian.tar.gz"
   
http://launchpadlibrarian.net/43660476/rhythmbox-radio-browser_2.0-1.debian.tar.gz

-- 
new upstream release
https://bugs.launchpad.net/bugs/544416
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 132791] Re: cups smb logon fails quietly

2010-04-12 Thread segler
it works for me in lucid, thanks

-- 
cups smb logon fails quietly
https://bugs.launchpad.net/bugs/132791
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 561363] Re: keysharing does not work in lucid

2010-04-12 Thread segler

** Attachment added: "keysharing.png"
   http://launchpadlibrarian.net/43907324/keysharing.png

-- 
keysharing does not work in lucid
https://bugs.launchpad.net/bugs/561363
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 561363] [NEW] keysharing does not work in lucid

2010-04-12 Thread segler
Public bug reported:

Binary package hint: seahorse

i activated keysharing of my gpg key in seahorse, but it does not show
up in avahi-discover

** Affects: seahorse (Ubuntu)
 Importance: Undecided
 Status: New

-- 
keysharing does not work in lucid
https://bugs.launchpad.net/bugs/561363
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 544416] Re: new upstream release

2010-04-11 Thread segler
Why I would like to add this upstream release in lucid:
* much more stable, than the one in universe repository
* no risk (it is only a plugin)
* changed code to find possible bugs easier, supporting it would be easier for 
me
* i tested it and am using it since then
* it has multilanguage support, which the old version hadn't

-- 
new upstream release
https://bugs.launchpad.net/bugs/544416
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 544416] Re: new upstream release

2010-04-10 Thread segler

** Attachment added: "rhythmbox-radio-browser_2.0-1.dsc"
   http://launchpadlibrarian.net/43660561/rhythmbox-radio-browser_2.0-1.dsc

-- 
new upstream release
https://bugs.launchpad.net/bugs/544416
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 544416] Re: new upstream release

2010-04-10 Thread segler
Install Log:

Wähle vormals abgewähltes Paket rhythmbox-radio-browser.
(Lese Datenbank ... 148942 Dateien und Verzeichnisse sind derzeit installiert.)
Entpacke rhythmbox-radio-browser (aus 
.../rhythmbox-radio-browser_2.0-1_amd64.deb) ...
Richte rhythmbox-radio-browser ein (2.0-1) ...

** Attachment added: "rhythmbox-radio-browser_2.0-1.debian.tar.gz"
   
http://launchpadlibrarian.net/43660476/rhythmbox-radio-browser_2.0-1.debian.tar.gz

-- 
new upstream release
https://bugs.launchpad.net/bugs/544416
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 544416] Re: new upstream release

2010-04-10 Thread segler
Changelog

** Attachment added: "Changelog"
   http://launchpadlibrarian.net/43655800/CHANGELOG

-- 
new upstream release
https://bugs.launchpad.net/bugs/544416
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 546660] Re: Rhythmbox Radio browser plugin unable to download Shoutcast/Icecast server

2010-04-08 Thread segler
ok, thanks
i will close it after pushing 2.0 to lucid

** Changed in: rhythmbox-radio-browser (Ubuntu)
 Assignee: (unassigned) => segler (segler-alex)

** Changed in: rhythmbox-radio-browser (Ubuntu)
   Status: New => In Progress

-- 
Rhythmbox Radio browser plugin unable to download Shoutcast/Icecast server
https://bugs.launchpad.net/bugs/546660
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 546660] Re: Rhythmbox Radio browser plugin unable to download Shoutcast/Icecast server

2010-04-08 Thread segler
is the current release 2.0 working for all of you? please comment!

-- 
Rhythmbox Radio browser plugin unable to download Shoutcast/Icecast server
https://bugs.launchpad.net/bugs/546660
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 546660] Re: Rhythmbox Radio browser plugin unable to download Shoutcast/Icecast server

2010-04-08 Thread segler
i am the maintainer, please use the deb-package from my homepage, until i get 
the new version into lucid. 
http://www.programmierecke.net/programmed/rhythmbox-radio-browser.html
i am hoping, it is still possible to update my lucid package.
nobody has to fidle arround with git!!

-- 
Rhythmbox Radio browser plugin unable to download Shoutcast/Icecast server
https://bugs.launchpad.net/bugs/546660
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 532898] Re: lucid: Failure to bring up cryptsetup devices by key files (when not using "splash")

2010-03-27 Thread segler
i have the same problem, but without using keyfiles. i am using password input, 
and after i typed and pressed enter it waits indefinitelly. i have a desktop 
computer and a notebook, and both show the same behaviour. they are perfectly 
updated (latest kernel, mountall, plymouth, cryptsetup,...), since the question 
occured before.
if i press "s" after some waiting, it works. that means all gets mounted and i 
can use the machine. so it comes to one keypress more than it should be, but 
this has to be a bug, you should only press "s" if you want to skip. and it 
does not skip at all.

-- 
lucid: Failure to bring up cryptsetup devices by key files (when not using 
"splash")
https://bugs.launchpad.net/bugs/532898
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 544416] [NEW] new upstream release

2010-03-22 Thread segler
Public bug reported:

Binary package hint: rhythmbox-radio-browser

it fixes a bug, that sometimes occurs, where it keeps trying to download
a feed, even if it is not reachable.

** Affects: rhythmbox-radio-browser (Ubuntu)
 Importance: Undecided
 Status: New

-- 
new upstream release
https://bugs.launchpad.net/bugs/544416
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 540685] [NEW] lucid boot disc check info gets overlapped by cryptsetup password input field

2010-03-17 Thread segler
Public bug reported:

Binary package hint: plymouth

in lucid latest updates installed on boot:
i have an encrypted homes partitions and today the main partition got 
automatically checked on boot.
first the disk check info is displayed, and then a few seconds later it is 
overlapped with the password entry field of cryptsetup.
the first problem is that you cannot see the progress of the disk check 
anymore, until you input the password and press enter.
the second problem is that password input is getting very hard because half of 
the keypresses get magically discarded

** Affects: plymouth (Ubuntu)
 Importance: Undecided
 Status: New

-- 
lucid boot disc check info gets overlapped by cryptsetup password input field
https://bugs.launchpad.net/bugs/540685
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 426184] Re: [needs-packaging] rhythmbox-radio-browser

2010-02-24 Thread segler
** Changed in: ubuntu
   Status: New => Fix Released

** Changed in: ubuntu
 Assignee: (unassigned) => segler (segler-alex)

-- 
[needs-packaging] rhythmbox-radio-browser
https://bugs.launchpad.net/bugs/426184
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 426184] Re: [needs-packaging] rhythmbox-radio-browser

2009-11-10 Thread segler
hi, is there anything else i should do now to get this package into lucid?
i ask because i was too late for karmic, and i don't want to make that mistake 
again.
i uploaded the package to revu already.
http://revu.ubuntuwire.com/p/rhythmbox-radio-browser
how do i get advocates?

-- 
[needs-packaging] rhythmbox-radio-browser
https://bugs.launchpad.net/bugs/426184
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 113693] Re: rhythmbox should provide more music radio stations

2009-10-25 Thread segler
there is a plugin for rhythmbox which adds a huge variety of radio stations.
would be nice if it would be added to default repositories.
http://programmierecke.net/programmed/

-- 
rhythmbox should provide more music radio stations
https://bugs.launchpad.net/bugs/113693
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 445333] Re: remember password on printing to windows printers does not work

2009-10-12 Thread segler
and another thing to add is that:
if i print with openoffice, the print icon appears before the dialog (the one 
that shows the active print jobs on click on it) in the statusbar 
if i print with evince or gedit this icon does not appear before the dialog

-- 
remember password on printing to windows printers does not work
https://bugs.launchpad.net/bugs/445333
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 445333] Re: remember password on printing to windows printers does not work

2009-10-12 Thread segler
i think it is important to add:
if i print with openoffice i have to wait some time for the dialog to appear
if i print with evince or gedit, it appears instantly

-- 
remember password on printing to windows printers does not work
https://bugs.launchpad.net/bugs/445333
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 445333] Re: remember password on printing to windows printers does not work

2009-10-11 Thread segler

** Attachment added: "gedit dialog"
   http://launchpadlibrarian.net/33458236/Bildschirmfoto-Legitimation2.png

-- 
remember password on printing to windows printers does not work
https://bugs.launchpad.net/bugs/445333
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 445333] Re: remember password on printing to windows printers does not work

2009-10-11 Thread segler
you are right, the checkbox is only there, if i print from openoffice.
if i print from gedit or from evince, then there is no checkbox

** Attachment added: "openoffice dialog"
   http://launchpadlibrarian.net/33458228/Bildschirmfoto-Authentication.png

-- 
remember password on printing to windows printers does not work
https://bugs.launchpad.net/bugs/445333
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 445333] [NEW] remember password on printing to windows printers does not work

2009-10-07 Thread segler
Public bug reported:

i am printing from my ubuntu karmic to a windows box. everytime i print
i get asked to input username and password to windows box, then the
document gets printed. there is a "remember password" checkbox, but it
keeps asking me when printing the next document.

** Affects: ubuntu
 Importance: Undecided
 Status: New

-- 
remember password on printing to windows printers does not work
https://bugs.launchpad.net/bugs/445333
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 430684] Re: stuck on standard fstab

2009-09-17 Thread segler
thanks, works again now!!! :)

-- 
stuck on standard fstab
https://bugs.launchpad.net/bugs/430684
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 431082] [NEW] mountall blocks boot (fstab supplied)

2009-09-16 Thread segler
Public bug reported:

Binary package hint: mountall

i use an unecrypted root partitition and an encrypted homes partition with 
karmic
2 days ago after the latest updates, booting stopped working.
it just hangs. if i remove the fstab entry for the home partition, it boots 
again. but gdm startup doesn't wait for the user to input the password for 
luks. (crypttab entry is still there) i can change the current tty to  1 and 
write my password, then the normal boot continues.

i have to point out that tty 1 is waiting for input of the passwort but
i have only a few seconds to write, because gdm is starting without
waiting for the user to finish.

** Affects: mountall (Ubuntu)
 Importance: Undecided
 Status: New

-- 
mountall blocks boot (fstab supplied)
https://bugs.launchpad.net/bugs/431082
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 431082] Re: mountall blocks boot (fstab supplied)

2009-09-16 Thread segler
my crypttab

** Attachment added: "my crypttab"
   http://launchpadlibrarian.net/31931562/crypttab

-- 
mountall blocks boot (fstab supplied)
https://bugs.launchpad.net/bugs/431082
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 431082] Re: mountall blocks boot (fstab supplied)

2009-09-16 Thread segler
my fstab

** Attachment added: "my fstab"
   http://launchpadlibrarian.net/31931553/fstab

-- 
mountall blocks boot (fstab supplied)
https://bugs.launchpad.net/bugs/431082
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 430684] Re: mountall blocks boot

2009-09-16 Thread segler
i have a similar problem.
i use fstab instead of pam_mount and since a day or two it does not boot 
anymore, it hangs in boot.
if i remove the entry from fstab, it does not hang but the console does wait 
for password. the interesting thing is that gdm is loaded before i can finish 
entering my password :)

-- 
mountall blocks boot
https://bugs.launchpad.net/bugs/430684
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 430684] Re: mountall blocks boot

2009-09-16 Thread segler
i forgot to mention that i use latest karmic as well :)

-- 
mountall blocks boot
https://bugs.launchpad.net/bugs/430684
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 426184] [NEW] [needs-packaging] rhythmbox-radio-browser

2009-09-08 Thread segler
Public bug reported:

rhythmbox-radio-browser is a plugin for rhythmbox which makes it possible to 
easily search radio streams from dir.xiph.org or shoutcast.com
the source can be downloaded from 
http://programmierecke.net/programmed/rhythmbox-radio-browser.html

** Affects: ubuntu
 Importance: Undecided
 Status: New


** Tags: needs-packaging

-- 
[needs-packaging] rhythmbox-radio-browser
https://bugs.launchpad.net/bugs/426184
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 413118] [NEW] move files to smb-network-share -> nautilus crash

2009-08-13 Thread segler
Public bug reported:

if i move a file from somewhere (only tested local folder) to a smb-
network folder then the file gets moved but after that, the desktop
icons disappear. If I start nautilus, it works again. I can reproduce
that everytime. I use jaunty.

If I copy a file to the same location it works without problems. It only
happens when I move files.

** Affects: nautilus (Ubuntu)
 Importance: Undecided
 Status: New

** Description changed:

  if i move a file from somewhere (only tested local folder) to a smb-
  network folder then the file gets moved but after that, the desktop
  icons disappear. If I start nautilus, it works again. I can reproduce
  that everytime. I use jaunty.
+ 
+ If I copy a file to the same location it works without problems. It only
+ happens when I move files.

-- 
move files to smb-network-share -> nautilus crash
https://bugs.launchpad.net/bugs/413118
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 284686] Re: links to smb hosts in places of gnome-panel do not work

2008-10-17 Thread segler
I reproduced it on my desktop and on my laptop computer.
to reproduce just:
* open nautilus and type something like "smb://servername" for a working smb 
server
* nautilus displays the shares as it should
* click bookmarks -> add bookmark
* click gnome-panel -> places -> bookmarks -> the new bookmark
* the error occurs

* but!!!: if i click on the same new bookmark in places of a nautilus
window, it works without problems

-- 
links to smb hosts in places of gnome-panel do not work
https://bugs.launchpad.net/bugs/284686
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 284686] Re: links to smb hosts in places of gnome-panel do not work

2008-10-16 Thread segler
** Tags added: 8.10

-- 
links to smb hosts in places of gnome-panel do not work
https://bugs.launchpad.net/bugs/284686
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 284686] Re: links to smb hosts in places of gnome-panel do not work

2008-10-16 Thread segler
i forgot to say that i'm using latest ubuntu 8.10

-- 
links to smb hosts in places of gnome-panel do not work
https://bugs.launchpad.net/bugs/284686
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 284686] Re: links to smb hosts in places of gnome-panel do not work

2008-10-16 Thread segler

** Attachment added: "dialog i get when i press the link"
   http://launchpadlibrarian.net/18622333/dialog.png

-- 
links to smb hosts in places of gnome-panel do not work
https://bugs.launchpad.net/bugs/284686
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 284686] [NEW] links to smb hosts in places of gnome-panel do not work

2008-10-16 Thread segler
Public bug reported:

if i click on a link in places -> bookmarks which points to a smb server like 
so: "smb://myserver" i get a message in the attachment.
if i click on a link which is like "smb://myserver/myshare" it works. this is 
really strange :)

** Affects: ubuntu
 Importance: Undecided
 Status: New

-- 
links to smb hosts in places of gnome-panel do not work
https://bugs.launchpad.net/bugs/284686
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs