I was able to mount it using
$ mount -t fuse "obexfs#-b00:11:22:33:44:55" /media/phone
as mentioned on
http://ru.gentoo-wiki.com/wiki/%D0%A0%D0%B0%D0%B1%D0%BE%D1%82%D0%B0_%D1%81_%D0%BC%D0%BE%D0%B1%D0%B8%D0%BB%D1%8C%D0%BD%D1%8B%D0%BC%D0%B8_%D1%82%D0%B5%D0%BB%D0%B5%D1%84%D0%BE%D0%BD%D0%B0%D0%BC%D0%
I have similar problems with DUN for months, see bug #822311
However, it works after 5-10 attempts (I've written a script for it).
Should I add bluez to affected projects?
Are there any non-Nokia devices affected?
--
You received this bug notification because you are a member of Ubuntu
Desktop Bu
What is your other device with bluetooth, BTW?
Mine is Nokia N900.
And I just noticed I have problem with obexfs too.
Possibly related to bug #839157
--
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-bluetooth in Ubuntu.
https://b
--
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-control-center in Ubuntu.
https://bugs.launchpad.net/bugs/901862
Title:
XF86ScreenSaver button is not overridden if set to custom action
To manage notifications about this bug go
Public bug reported:
Steps to reproduce:
1. Launch gnome-control-center
2. Go to Keyboard - Shortcuts - Custom shortcuts
3. Add any command and set XF86ScreenSaver as shortcut button
4. Press XF86ScreenSaver
Expected result:
Custom command being run.
Actual result:
Custom command runs and the se
So, why did you switch it back to Invalid?
--
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-bluetooth in Ubuntu.
https://bugs.launchpad.net/bugs/822311
Title:
bluetooth-applet fails to connect to DUN randomly
To manage notific
Here is the script, but I didn't even store UUID as variable, it was
just a hack.
** Summary changed:
- bluetooth-applet does not store DUN connection information correctly
+ bluetooth-applet fails to connect to DUN randomly
** Attachment added: "connect_life_bruteforce.sh"
https://bugs.laun
Changing to Confirmed as it affects multiple people and works normal
with previous versions.
--
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-bluetooth in Ubuntu.
https://bugs.launchpad.net/bugs/822311
Title:
bluetooth-applet d
** Changed in: gnome-bluetooth (Ubuntu)
Status: Invalid => Confirmed
--
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-bluetooth in Ubuntu.
https://bugs.launchpad.net/bugs/822311
Title:
bluetooth-applet does not store DUN
Try to connect multiple times. I think the problem was with the mobile
operator refusing to connect. I've just written a script with nm-cli
that tries to connect until success and it worked. BTW, I was in a rural
area while experiencing this, are you too?
--
You received this bug notification bec
mody, do you have kdm installed?
For me lightdm and gdm both work but it failed the same when I tried to use kdm.
--
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-screensaver in Ubuntu.
https://bugs.launchpad.net/bugs/868660
Titl
Public bug reported:
Tried to reconfigure the system to use kdm and change user from lockscreen. It
failed and showed me a message after I unlocked the session:
The name org.gnome.DisplayManager was not provided by any .service files.
It may be connected to bug #868660, but both lightdm and gdm
--
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-screensaver in Ubuntu.
https://bugs.launchpad.net/bugs/878545
Title:
Unable to switch user when using kdm: The name
org.gnome.DisplayManager was not provided by any .service fil
Just updated my oneiric installation. It's still reproducible.
--
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-settings-daemon in Ubuntu.
https://bugs.launchpad.net/bugs/805747
Title:
Unnecessary gst-keyboard-xkb appearing in
--
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-utils in Ubuntu.
https://bugs.launchpad.net/bugs/821476
Title:
gnome-system-log empty
To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnom
Public bug reported:
It is reproducible always and without any errors in stderr or stdout. Whenever
I try to run
$ gnome-system-log
it shows just an empty window.
ProblemType: Bug
DistroRelease: Ubuntu 11.10
Package: gnome-system-log 3.1.2-0ubuntu2
ProcVersionSignature: Ubuntu 3.0.0-7.9-generic
--
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-disk-utility in Ubuntu.
https://bugs.launchpad.net/bugs/817502
Title:
palimpsest does not reports the missing mdadm package while trying to
start RAID array
To manage notificat
Public bug reported:
When I boot from LiveUSB and try to start RAID0 array in Gnome-disk-utility it
just says
"Not enough components to start the RAID array".
The problem is gone after installing mdadm (BTW it's installing postfix
alongside, which is not necessary and can be avoided with
--no-i
Thanks, I've reported it and added a watch.
--
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to zenity in Ubuntu.
https://bugs.launchpad.net/bugs/815869
Title:
zenity's text-info mistakes encoding from stdin
To manage notifications abo
** Bug watch added: GNOME Bug Tracker #655267
https://bugzilla.gnome.org/show_bug.cgi?id=655267
** Also affects: zenity (Arch Linux) via
https://bugzilla.gnome.org/show_bug.cgi?id=655267
Importance: Unknown
Status: Unknown
--
You received this bug notification because you are a m
Workaround is to pipe it through
head -c 1023
--
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to zenity in Ubuntu.
https://bugs.launchpad.net/bugs/815869
Title:
zenity's text-info mistakes encoding from stdin
To manage notifications
Yes, just what I thought:
$ for i in {1..341}; do echo "а" >> test2; done; wc -c test2; rm test2
1023 test2
$ for i in {1..342}; do echo "а" >> test2; done; wc -c test2; rm test2
1026 test2
It happens when the input exceeds 1024 bytes.
--
You received this bug notification because you are a
Here is the reproducible code for those without /usr/share/dict/ukrainian :
for i in {1..342}; do echo "а" >> test2; done; cat test2 | zenity --text-info;
rm test2
And when you reduce the number it detects right encoding:
for i in {1..341}; do echo "а" >> test2; done; cat test2 | zenity --text-
--
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to zenity in Ubuntu.
https://bugs.launchpad.net/bugs/815869
Title:
zenity's text-info mistakes encoding from stdin
To manage notifications about this bug go to:
https://bugs.launchpad.net
Public bug reported:
It is reproducible with the following bash script:
mkfifo test
grep "аванс" /usr/share/dict/ukrainian > test &
cat test | zenity --text-info
grep "аванс" /usr/share/dict/ukrainian > test &
zenity --text-info --filename test
rm test
On the first time it outputs about 50 first
--
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-disk-utility in Ubuntu.
https://bugs.launchpad.net/bugs/775958
Title:
Wrong password error for encrypted volume instead of cryptsetup
absence notification.
--
desktop-bugs mai
Public bug reported:
Binary package hint: gnome-disk-utility
I have an encrypted partition with a lot of data on it. Just installed the
system and tried to mount it.
And it says "Wrong password" when I'm 99% sure that the password is right. I
just thought that it's the end and everything is los
27 matches
Mail list logo