[Bug 1194791] Re: gufw does not start from System Settings -> Firewall Configuration

2013-09-26 Thread costales
For me, python is using this path: /usr/lib/python2.7/dist-packages/

http://docs.python.org/2/install/index.html#modifying-python-s-search-path
Could you try this?
python
import sys
sys.path
This will give your current paths.

I think you will have python2.X too, because some programs are using that.
I think an install corrupted your python paths:
http://stackoverflow.com/questions/9753730/how-to-fix-default-python-path-after-installing-virtualenv


** Summary changed:

- gufw does not start from System Settings -> Firewall Configuration
+ Python doesn't find modules

** Summary changed:

- Python doesn't find modules
+ Python doesn't find modules in Ubuntu 13.04

** Also affects: python
   Importance: Undecided
   Status: New

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

Title:
  Python doesn't find modules in Ubuntu 13.04

To manage notifications about this bug go to:
https://bugs.launchpad.net/gui-ufw/+bug/1194791/+subscriptions

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

[Bug 1194791] Re: gufw does not start from System Settings -> Firewall Configuration

2013-09-26 Thread jean-christophe manciot
But when I use the command "python -v", all the paths are within
usr/local/lib/python2.7/ and there's no other packages than GNS3 inside
dist-packages

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

Title:
  gufw does not start from System Settings -> Firewall Configuration

To manage notifications about this bug go to:
https://bugs.launchpad.net/gui-ufw/+bug/1194791/+subscriptions

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

[Bug 1194791] Re: gufw does not start from System Settings -> Firewall Configuration

2013-09-26 Thread jean-christophe manciot
I begin to understand where the problem lies.

I use python ***3.3*** (latest release) and there's no such thing as
"dist-packages" inside "/usr/lib/python3.3/"

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

Title:
  gufw does not start from System Settings -> Firewall Configuration

To manage notifications about this bug go to:
https://bugs.launchpad.net/gui-ufw/+bug/1194791/+subscriptions

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

[Bug 1194791] Re: gufw does not start from System Settings -> Firewall Configuration

2013-09-26 Thread costales
Wow :O It appears to be something about the python paths, I think python
is not finding their modules.

Could you confirm me these paths?
/usr/lib/python_anything/dist-packages/dbus???
By example, I have dbus in "python2.7":
/usr/lib/python2.7/dist-packages/dbus
/usr/lib/python2.7/dist-packages/netifaces.so

I discovered a interesting tool, could you run these commands?
python -v
import dbus
from netifaces import interfaces

We'll see a dump will the paths and maybe see the problem :)

** No longer affects: python-dbus

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

Title:
  gufw does not start from System Settings -> Firewall Configuration

To manage notifications about this bug go to:
https://bugs.launchpad.net/gui-ufw/+bug/1194791/+subscriptions

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

[Bug 1194791] Re: gufw does not start from System Settings -> Firewall Configuration

2013-09-26 Thread jean-christophe manciot
After having installed your 13.10 gufw package and resolved a dependency
issue (python-netifaces is now installed), I have this error after
having launched "sudo gnome-control-center/gufw":

Traceback (most recent call last):
  File "/usr/share/gufw/gufw/gufw.py", line 19, in 
from controller  import Controller 
  File "/usr/share/gufw/gufw/controller.py", line 18, in 
from frontend import Frontend
  File "/usr/share/gufw/gufw/frontend.py", line 21, in 
from model.utils import UtilsGUI
  File "/usr/share/gufw/gufw/model/utils.py", line 19, in 
from netifaces import interfaces, ifaddresses, AF_INET
ImportError: No module named netifaces

It has the look and smell of previous "dbus" issue.

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

Title:
  gufw does not start from System Settings -> Firewall Configuration

To manage notifications about this bug go to:
https://bugs.launchpad.net/gui-ufw/+bug/1194791/+subscriptions

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

[Bug 1194791] Re: gufw does not start from System Settings -> Firewall Configuration

2013-09-26 Thread costales
I'm so sorry Jean, It's really strange :( I recommend you a fresh Ubuntu
install (for Virtualbox you could use a preinstalled images downloaded
from here, by example http://virtualboxes.org/images/ubuntu/) :O because
I think you can't run dbus applications (not just Gufw).

If you just want to use Gufw in your current system, I really recommend the new 
Gufw version, it has a lot of improvements and it's stable, it is working 
perfect in Ubuntu 12.04 and higher.
Download this package 
https://launchpad.net/gui-ufw/gufw-13.10/13.10/+download/gufw_13.10.2-0ubuntu1_all.deb
And run in the terminal:
sudo dpkg -i gufw_13.10.2-0ubuntu1_all.deb

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

Title:
  gufw does not start from System Settings -> Firewall Configuration

To manage notifications about this bug go to:
https://bugs.launchpad.net/gui-ufw/+bug/1194791/+subscriptions

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

[Bug 1194791] Re: gufw does not start from System Settings -> Firewall Configuration

2013-09-26 Thread jean-christophe manciot
a "sudo apt-get dist-upgrade" does not change anything.

I appreciate the time and effort you've put into trying to solve this case.
I feel it won't be solved.
You said that there's no "import dbus" in the 13.10 release. I'll wait for 
Ubuntu 13.10 then.

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

Title:
  gufw does not start from System Settings -> Firewall Configuration

To manage notifications about this bug go to:
https://bugs.launchpad.net/gui-ufw/+bug/1194791/+subscriptions

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

[Bug 1194791] Re: gufw does not start from System Settings -> Firewall Configuration

2013-09-25 Thread costales
I'm lost :( Your system has a problem with the python-dbus package (it could be 
a disk error, a lost python path in the system, or something similar).
If you search in Google: "ImportError: No module named dbus" some bugs appears, 
but there isn't a solution.

Maybe a dist-upgrade will reinstall/reset python-dbus? (This will update your 
version, it's not an upgrade to the next Ubuntu version):
sudo apt-get dist-upgrade
http://askubuntu.com/questions/194651/why-use-apt-get-upgrade-instead-of-apt-get-dist-upgrade

Could you ask in askubuntu.com?

** Also affects: python-dbus
   Importance: Undecided
   Status: New

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

Title:
  gufw does not start from System Settings -> Firewall Configuration

To manage notifications about this bug go to:
https://bugs.launchpad.net/gui-ufw/+bug/1194791/+subscriptions

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

[Bug 1194791] Re: gufw does not start from System Settings -> Firewall Configuration

2013-09-24 Thread jean-christophe manciot
"sudo update-python-modules -f" did NOT change anything.

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

Title:
  gufw does not start from System Settings -> Firewall Configuration

To manage notifications about this bug go to:
https://bugs.launchpad.net/gui-ufw/+bug/1194791/+subscriptions

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

[Bug 1194791] Re: gufw does not start from System Settings -> Firewall Configuration

2013-09-23 Thread costales
Hi! By the step 4º, the problem is not from Gufw, it's from dbus:
>>> import dbus
Traceback (most recent call last):
  File "", line 1, in 
ImportError: No module named dbus


I don't know how you could fix this.
https://bugs.launchpad.net/ubuntu/+source/dbus-python/+bug/59775
Could you try this and test it again?
sudo update-python-modules -f


By the step 2º, I recommend this permission: drwx-- to 
/home/actionmystique/.config/ibus/bus
chown actionmystique:actionmystique /home/actionmystique/.config/ibus/bus ; 
chmod 0700 /home/actionmystique/.config/ibus/bus

Could you confirm if "sudo update-python-modules -f" fix this problem?
Thanks

** Changed in: gui-ufw
   Status: Confirmed => Invalid

** Changed in: gui-ufw (Ubuntu)
   Status: Confirmed => Invalid

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

Title:
  gufw does not start from System Settings -> Firewall Configuration

To manage notifications about this bug go to:
https://bugs.launchpad.net/gui-ufw/+bug/1194791/+subscriptions

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

[Bug 1194791] Re: gufw does not start from System Settings -> Firewall Configuration

2013-09-22 Thread jean-christophe manciot
1. same

2. it should work as root as well.
without it: 

actionmystique@ACER-Aspire:/$ gnome-control-center

(gnome-control-center:3913): IBUS-WARNING **: The owner of 
/home/actionmystique/.config/ibus/bus is not actionmystique!
Traceback (most recent call last):
  File "/usr/share/gufw/gufw/gufw.py", line 20, in 
from controller   import Controller 
  File "/usr/share/gufw/gufw/controller.py", line 18, in 
from model.Firewall import Firewall
  File "/usr/share/gufw/gufw/model/Firewall.py", line 22, in 
import dbus
ImportError: No module named dbus

4. "python
import dbus":

Python 2.7.5 (default, Jun 18 2013, 13:54:40) 
[GCC 4.7.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import dbus
Traceback (most recent call last):
  File "", line 1, in 
ImportError: No module named dbus

After having reinstalled all recommended packages, the result is ... exactly 
the same:
Traceback (most recent call last):
  File "/usr/share/gufw/gufw/gufw.py", line 20, in 
from controller   import Controller 
  File "/usr/share/gufw/gufw/controller.py", line 18, in 
from model.Firewall import Firewall
  File "/usr/share/gufw/gufw/model/Firewall.py", line 22, in 
import dbus
ImportError: No module named dbus

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

Title:
  gufw does not start from System Settings -> Firewall Configuration

To manage notifications about this bug go to:
https://bugs.launchpad.net/gui-ufw/+bug/1194791/+subscriptions

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

[Bug 1194791] Re: gufw does not start from System Settings -> Firewall Configuration

2013-09-22 Thread costales
Well... We need more tests :P I'm so sorry about that, but it's the
unique way.

PREVIOUS QUESTIONS:

1. I'm supposing you can't run Gufw from the Unity menu too?? Ubuntu
icon + Gufw search > Click in Gufw.

2. Please, don't use "sudo" with gnome-control-center :) Maybe root user hasn't 
the same paths as a normal user.
actionmystique@ACER-Aspire:~$ sudo gnome-control-center
Change for this:
actionmystique@ACER-Aspire:~$ gnome-control-center

3. Please, don't edit the Gufw code for testing purposes :) Recovery the right 
code with this:
 sudo apt-get purge gufw ; sudo apt-get install gufw


ABOUT THE BUG:

4. About this line: "ImportError: No module named dbus".
Could you try this in a Terminal as normal user?
python
import dbus
exit()
Please, put the result here :)


http://ubuntuforums.org/showthread.php?t=1241529
Uhm, I think it's not a Gufw problem, Gufw is not finding dbus. Sometimes, 
while you're installing an app, some depedencies can't be downloaded by a 
network problem, the system show a confirm dialog about that. Sometimes it 
could be a problem in the hard disk too. Could it be possible in your system?
Could you reinstall all the Gufw dependencies and try it again?
sudo apt-get install --reinstall gir1.2-gtk-3.0 gir1.2-polkit-1.0 
gnome-icon-theme-symbolic notify-osd policykit-1 python python-dbus 
python-gobject ufw gufw


5. The new version http://gufw.org/new (I recommend it to your system because 
it has a lot of improvements) are not using dbus, then it has to work, but if 
the problem is in dbus, the problem will be persist for other applications (I 
don't remember any dbus app :$).

Thanks in advance!

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

Title:
  gufw does not start from System Settings -> Firewall Configuration

To manage notifications about this bug go to:
https://bugs.launchpad.net/gui-ufw/+bug/1194791/+subscriptions

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

[Bug 1194791] Re: gufw does not start from System Settings -> Firewall Configuration

2013-09-22 Thread costales
** Changed in: gui-ufw
   Status: Invalid => Confirmed

** Changed in: gui-ufw (Ubuntu)
   Status: Invalid => Confirmed

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

Title:
  gufw does not start from System Settings -> Firewall Configuration

To manage notifications about this bug go to:
https://bugs.launchpad.net/gui-ufw/+bug/1194791/+subscriptions

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

[Bug 1194791] Re: gufw does not start from System Settings -> Firewall Configuration

2013-09-22 Thread jean-christophe manciot
If I remove the dbus call, another error pops up:

actionmystique@ACER-Aspire:/usr/share/gufw/gufw/model$ sudo 
gnome-control-center 
Traceback (most recent call last):
  File "/usr/share/gufw/gufw/gufw.py", line 21, in 
from view.guiGufw import GuiGufw
  File "/usr/share/gufw/gufw/view/guiGufw.py", line 23, in 
from gi.repository import Gtk, Gdk, GLib
ImportError: No module named gi.repository

I can't believe I'm the only one experiencing bugs with gufw 13.04 ...

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

Title:
  gufw does not start from System Settings -> Firewall Configuration

To manage notifications about this bug go to:
https://bugs.launchpad.net/gui-ufw/+bug/1194791/+subscriptions

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

[Bug 1194791] Re: gufw does not start from System Settings -> Firewall Configuration

2013-09-22 Thread jean-christophe manciot
No, No, No
Never installed 13.10 from the sources.

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

Title:
  gufw does not start from System Settings -> Firewall Configuration

To manage notifications about this bug go to:
https://bugs.launchpad.net/gui-ufw/+bug/1194791/+subscriptions

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

Re: [Bug 1194791] Re: gufw does not start from System Settings -> Firewall Configuration

2013-09-22 Thread costales
Did you have Gufw installed and then you installed the new version from the
code? From a deb? Could you tell me something about it? Thanks :)
I think you had Gufw 13.04 and the you updated to 13.10. Maybe?
On Sep 22, 2013 11:35 AM, "jean-christophe manciot" <
manciot.jeanchristo...@gmail.com> wrote:

> I've just uninstalled and installed gufw as suggested. And my system is up
> to date.
> Nothing has changed after running gufw:
>
> actionmystique@ACER-Aspire:~$ sudo gnome-control-center
> Traceback (most recent call last):
>   File "/usr/share/gufw/gufw/gufw.py", line 20, in 
> from controller   import Controller
>   File "/usr/share/gufw/gufw/controller.py", line 18, in 
> from model.Firewall import Firewall
>   File "/usr/share/gufw/gufw/model/Firewall.py", line 22, in 
> import dbus
> ImportError: No module named dbus
>
> --
> You received this bug notification because you are subscribed to gui-ufw
> in Ubuntu.
> https://bugs.launchpad.net/bugs/1194791
>
> Title:
>   gufw does not start from System Settings -> Firewall Configuration
>
> To manage notifications about this bug go to:
> https://bugs.launchpad.net/gui-ufw/+bug/1194791/+subscriptions
>

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

Title:
  gufw does not start from System Settings -> Firewall Configuration

To manage notifications about this bug go to:
https://bugs.launchpad.net/gui-ufw/+bug/1194791/+subscriptions

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

[Bug 1194791] Re: gufw does not start from System Settings -> Firewall Configuration

2013-09-22 Thread jean-christophe manciot
Extracts from "/usr/share/gufw/gufw/model/Firewall.py"

# Gufw 13.04.0 - http://gufw.org
# Copyright (C) 2008-2011 Marcos Alvarez Costales 
https://launchpad.net/~costales
...

import commands
import time
import os

import dbus

So dbus is not used anymore?

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

Title:
  gufw does not start from System Settings -> Firewall Configuration

To manage notifications about this bug go to:
https://bugs.launchpad.net/gui-ufw/+bug/1194791/+subscriptions

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

[Bug 1194791] Re: gufw does not start from System Settings -> Firewall Configuration

2013-09-22 Thread jean-christophe manciot
I've just uninstalled and installed gufw as suggested. And my system is up to 
date.
Nothing has changed after running gufw:

actionmystique@ACER-Aspire:~$ sudo gnome-control-center 
Traceback (most recent call last):
  File "/usr/share/gufw/gufw/gufw.py", line 20, in 
from controller   import Controller 
  File "/usr/share/gufw/gufw/controller.py", line 18, in 
from model.Firewall import Firewall
  File "/usr/share/gufw/gufw/model/Firewall.py", line 22, in 
import dbus
ImportError: No module named dbus

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

Title:
  gufw does not start from System Settings -> Firewall Configuration

To manage notifications about this bug go to:
https://bugs.launchpad.net/gui-ufw/+bug/1194791/+subscriptions

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

Re: [Bug 1194791] Re: gufw does not start from System Settings -> Firewall Configuration

2013-09-21 Thread costales
Uhm...
Gufw is not using dbus any more.
Could you try this in terninal?
sudo apt-get purge gufw ; sudo apt-get install gufw

This will reinstall gufw. And please try again.
Thanks :)
On Sep 21, 2013 12:25 PM, "jean-christophe manciot" <
manciot.jeanchristo...@gmail.com> wrote:

> @costales: Here's what you've requested:
>
> actionmystique@ACER-Aspire:~$ sudo gnome-control-center
> [sudo] password for actionmystique:
> Traceback (most recent call last):
>   File "/usr/share/gufw/gufw/gufw.py", line 20, in 
> from controller   import Controller
>   File "/usr/share/gufw/gufw/controller.py", line 18, in 
> from model.Firewall import Firewall
>   File "/usr/share/gufw/gufw/model/Firewall.py", line 22, in 
> import dbus
> ImportError: No module named dbus
>
> And "dbus" is installed on my system...
>
> --
> You received this bug notification because you are subscribed to gui-ufw
> in Ubuntu.
> https://bugs.launchpad.net/bugs/1194791
>
> Title:
>   gufw does not start from System Settings -> Firewall Configuration
>
> To manage notifications about this bug go to:
> https://bugs.launchpad.net/gui-ufw/+bug/1194791/+subscriptions
>

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

Title:
  gufw does not start from System Settings -> Firewall Configuration

To manage notifications about this bug go to:
https://bugs.launchpad.net/gui-ufw/+bug/1194791/+subscriptions

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

[Bug 1194791] Re: gufw does not start from System Settings -> Firewall Configuration

2013-09-21 Thread jean-christophe manciot
@costales: Here's what you've requested:

actionmystique@ACER-Aspire:~$ sudo gnome-control-center
[sudo] password for actionmystique: 
Traceback (most recent call last):
  File "/usr/share/gufw/gufw/gufw.py", line 20, in 
from controller   import Controller 
  File "/usr/share/gufw/gufw/controller.py", line 18, in 
from model.Firewall import Firewall
  File "/usr/share/gufw/gufw/model/Firewall.py", line 22, in 
import dbus
ImportError: No module named dbus

And "dbus" is installed on my system...

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

Title:
  gufw does not start from System Settings -> Firewall Configuration

To manage notifications about this bug go to:
https://bugs.launchpad.net/gui-ufw/+bug/1194791/+subscriptions

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

[Bug 1194791] Re: gufw does not start from System Settings -> Firewall Configuration

2013-09-20 Thread costales
Yes, I'm so sorry, but if I can't reproduce it then I can't fix it :( If
more users have this problem, maybe I could get a pattern.

Could you run the system settings from the terminal? Maybe a dump will give us 
more info :) I don't know which program is the system setting in Ubuntu, 
because I'm using Xubuntu. Could you try this in a Terminal:
gnome-control-center
Then, click again in Gufw. If something is wrong, you have to see a dump in the 
Terminal. Please, paste it here.

Thanks and best regards.

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

Title:
  gufw does not start from System Settings -> Firewall Configuration

To manage notifications about this bug go to:
https://bugs.launchpad.net/gui-ufw/+bug/1194791/+subscriptions

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

[Bug 1194791] Re: gufw does not start from System Settings -> Firewall Configuration

2013-09-18 Thread jean-christophe manciot
Invalid status? How convenient!

I've noticed a current trend in the software industry and open-source
community: denying a bug to avoid to have to solve it as long as only a
few users are affected by it. Nowadays, quantity surpasses quality by
far in people's mind.

I guess no one even tried to reproduce it in the same environment: Ubuntu 13.04 
VirtualBox VM in Windows 7 host. 
What you're missing is that this bug could hide other weaknesses.

You can see by yourself in these very short silent videos that nothing happens 
when the firewall configuration is pressed:
- MP4: 
https://docs.google.com/file/d/0B6XxNd5c3zV_ekp3amdZbFRlNHM/edit?usp=sharing
- WebM: 
https://docs.google.com/file/d/0B6XxNd5c3zV_YkY5eUN6SHptZVU/edit?usp=sharing

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

Title:
  gufw does not start from System Settings -> Firewall Configuration

To manage notifications about this bug go to:
https://bugs.launchpad.net/gui-ufw/+bug/1194791/+subscriptions

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

[Bug 1194791] Re: gufw does not start from System Settings -> Firewall Configuration

2013-09-18 Thread costales
I'll close it. Please, if more users have this problem, reopen the bug :)
Thanks jean for the report :)

** Changed in: gui-ufw
   Status: New => Invalid

** Changed in: gui-ufw (Ubuntu)
   Status: New => Invalid

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

Title:
  gufw does not start from System Settings -> Firewall Configuration

To manage notifications about this bug go to:
https://bugs.launchpad.net/gui-ufw/+bug/1194791/+subscriptions

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

[Bug 1194791] Re: gufw does not start from System Settings -> Firewall Configuration

2013-07-05 Thread Marc Deslauriers
** Information type changed from Public Security to Public

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

Title:
  gufw does not start from System Settings -> Firewall Configuration

To manage notifications about this bug go to:
https://bugs.launchpad.net/gui-ufw/+bug/1194791/+subscriptions

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

Re: [Bug 1194791] Re: gufw does not start from System Settings -> Firewall Configuration

2013-06-29 Thread costales
It has to work too ;)
On Jun 29, 2013 10:45 AM, "jean-christophe manciot" <
manciot.jeanchristo...@gmail.com> wrote:

> @costales (costales): It might be important to note that my Ubuntu is
> used as a VM under Windows 7/VirtualBox 4.2.14
>
> --
> You received this bug notification because you are subscribed to gui-ufw
> in Ubuntu.
> https://bugs.launchpad.net/bugs/1194791
>
> Title:
>   gufw does not start from System Settings -> Firewall Configuration
>
> To manage notifications about this bug go to:
> https://bugs.launchpad.net/gui-ufw/+bug/1194791/+subscriptions
>

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

Title:
  gufw does not start from System Settings -> Firewall Configuration

To manage notifications about this bug go to:
https://bugs.launchpad.net/gui-ufw/+bug/1194791/+subscriptions

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

[Bug 1194791] Re: gufw does not start from System Settings -> Firewall Configuration

2013-06-29 Thread jean-christophe manciot
@costales (costales): It might be important to note that my Ubuntu is
used as a VM under Windows 7/VirtualBox 4.2.14

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

Title:
  gufw does not start from System Settings -> Firewall Configuration

To manage notifications about this bug go to:
https://bugs.launchpad.net/gui-ufw/+bug/1194791/+subscriptions

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

[Bug 1194791] Re: gufw does not start from System Settings -> Firewall Configuration

2013-06-27 Thread costales
Thanks for your report Jean :)
It's working right for me :O
Could more users confirm us if they can launch Gufw from the System Settings 
launcher? Thanks in advance!

** Also affects: gui-ufw
   Importance: Undecided
   Status: New

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

Title:
  gufw does not start from System Settings -> Firewall Configuration

To manage notifications about this bug go to:
https://bugs.launchpad.net/gui-ufw/+bug/1194791/+subscriptions

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

[Bug 1194791] Re: gufw does not start from System Settings -> Firewall Configuration

2013-06-26 Thread Seth Arnold
** Information type changed from Private Security to Public Security

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

Title:
  gufw does not start from System Settings -> Firewall Configuration

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gui-ufw/+bug/1194791/+subscriptions

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