[Bug 284427] Re: Evince jumps to other screen in dual monitor setup after file is loaded

2016-03-23 Thread sefs
This is not fixed in 14.04

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

Title:
  Evince jumps to other screen in dual monitor setup after file is
  loaded

To manage notifications about this bug go to:
https://bugs.launchpad.net/evince/+bug/284427/+subscriptions

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


[Bug 1193614] Re: Openvpn is unable to assign dhcp from remote LAN in up/down scripts

2013-06-23 Thread sefs
Although this seems to be automatic in MS Windows, it does not appear
the same for linux.

Possible Workaround: http://ubuntuforums.org/showthread.php?t=2156126

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openvpn in Ubuntu.
https://bugs.launchpad.net/bugs/1193614

Title:
  Openvpn is unable to assign dhcp from remote LAN in up/down scripts

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1193614] Re: Openvpn is unable to assign dhcp from remote LAN in up/down scripts

2013-06-23 Thread sefs
Although this seems to be automatic in MS Windows, it does not appear
the same for linux.

Possible Workaround: http://ubuntuforums.org/showthread.php?t=2156126

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

Title:
  Openvpn is unable to assign dhcp from remote LAN in up/down scripts

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

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


[Bug 1193614] Re: Openvpn is unable to assign dhcp from remote LAN in up/down scripts

2013-06-22 Thread sefs
** Package changed: ubuntu = openvpn (Ubuntu)

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openvpn in Ubuntu.
https://bugs.launchpad.net/bugs/1193614

Title:
  Openvpn is unable to assign dhcp from remote LAN in up/down scripts

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1193614] Re: Openvpn is unable to assign dhcp from remote LAN in up/down scripts

2013-06-22 Thread sefs
** Description changed:

  Hi,
  
  When setting up Openvpn in bridged mode, openvpn is unable to configure
  the tap interface on the client for dhcp from the remote LAN.
  
  Server:
  -
  ...
  server-bridge
  push route-gateway 192.168.1.1
  push redirect-gateway def1 bypass-dhcp
  client-to-client
  ...
  
  Client:
  -
  ...
  
  up /etc/openvpn/dhcp.sh
  down /etc/openvpn/dhcp.sh
  ...
  
  dhcp.sh:
  -
  #!/bin/bash
- # 
- [ -x /sbin/dhclient] || exit 0
+ #
+ [ -x /sbin/dhclient ] || exit 0
  
  case $script_type in
  
  up)
-   dhclient -v ${dev}
-   ;;
+  dhclient -v ${dev}
+  ;;
  down)
-   dhclient -r ${dev}
-   ;;
+  dhclient -r ${dev}
+  ;;
  esac
  
  dhclient attempts to configure tap interface on client but eventually
  times out.
  
  Errors:
  -
  ...
  Sat Jun 22 07:40:02 2013 TUN/TAP device tap0 opened
  Sat Jun 22 07:40:02 2013 TUN/TAP TX queue length set to 100
  Sat Jun 22 07:40:02 2013 /sbin/route add -net xxx.xxx.xxx.xxx netmask 
255.255.255.255 gw 192.168.2.1
  Sat Jun 22 07:40:02 2013 /sbin/route add -net 0.0.0.0 netmask 128.0.0.0 gw 
192.168.1.1
  SIOCADDRT: No such process
  Sat Jun 22 07:40:02 2013 ERROR: Linux route add command failed: external 
program exited with error status: 7
  Sat Jun 22 07:40:02 2013 /sbin/route add -net 128.0.0.0 netmask 128.0.0.0 gw 
192.168.1.1
  SIOCADDRT: No such process
  Sat Jun 22 07:40:02 2013 ERROR: Linux route add command failed: external 
program exited with error status: 7
  Sat Jun 22 07:40:02 2013 Initialization Sequence Completed
  
  and on shutting down connection:
  Errors:
  -
  Sat Jun 22 07:42:28 2013 event_wait : Interrupted system call (code=4)
  Sat Jun 22 07:42:28 2013 SIGTERM received, sending exit notification to peer
  Sat Jun 22 07:42:31 2013 TCP/UDP: Closing socket
- Sat Jun 22 07:42:31 2013 /sbin/route del -net 69.73.224.249 netmask 
255.255.255.255
+ Sat Jun 22 07:42:31 2013 /sbin/route del -net xxx.xxx.xxx.xxx netmask 
255.255.255.255
  Sat Jun 22 07:42:31 2013 /sbin/route del -net 0.0.0.0 netmask 128.0.0.0
  SIOCDELRT: No such process
  Sat Jun 22 07:42:31 2013 ERROR: Linux route delete command failed: external 
program exited with error status: 7
  Sat Jun 22 07:42:31 2013 /sbin/route del -net 128.0.0.0 netmask 128.0.0.0
  SIOCDELRT: No such process
  Sat Jun 22 07:42:31 2013 ERROR: Linux route delete command failed: external 
program exited with error status: 7
  Sat Jun 22 07:42:31 2013 Closing TUN/TAP interface
  Sat Jun 22 07:42:31 2013 SIGTERM[soft,exit-with-notification] received, 
process exiting

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openvpn in Ubuntu.
https://bugs.launchpad.net/bugs/1193614

Title:
  Openvpn is unable to assign dhcp from remote LAN in up/down scripts

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1193614] [NEW] Openvpn is unable to assign dhcp from remote LAN in up/down scripts

2013-06-22 Thread sefs
Public bug reported:

Hi,

When setting up Openvpn in bridged mode, openvpn is unable to configure
the tap interface on the client for dhcp from the remote LAN.

Server:
-
...
server-bridge
push route-gateway 192.168.1.1
push redirect-gateway def1 bypass-dhcp
client-to-client
...

Client:
-
...

up /etc/openvpn/dhcp.sh
down /etc/openvpn/dhcp.sh
...

dhcp.sh:
-
#!/bin/bash
# 
[ -x /sbin/dhclient] || exit 0

case $script_type in

up)
dhclient -v ${dev}
;;
down)
dhclient -r ${dev}
;;
esac

dhclient attempts to configure tap interface on client but eventually
times out.

Errors:
-
...
Sat Jun 22 07:40:02 2013 TUN/TAP device tap0 opened
Sat Jun 22 07:40:02 2013 TUN/TAP TX queue length set to 100
Sat Jun 22 07:40:02 2013 /sbin/route add -net xxx.xxx.xxx.xxx netmask 
255.255.255.255 gw 192.168.2.1
Sat Jun 22 07:40:02 2013 /sbin/route add -net 0.0.0.0 netmask 128.0.0.0 gw 
192.168.1.1
SIOCADDRT: No such process
Sat Jun 22 07:40:02 2013 ERROR: Linux route add command failed: external 
program exited with error status: 7
Sat Jun 22 07:40:02 2013 /sbin/route add -net 128.0.0.0 netmask 128.0.0.0 gw 
192.168.1.1
SIOCADDRT: No such process
Sat Jun 22 07:40:02 2013 ERROR: Linux route add command failed: external 
program exited with error status: 7
Sat Jun 22 07:40:02 2013 Initialization Sequence Completed

and on shutting down connection:
Errors:
-
Sat Jun 22 07:42:28 2013 event_wait : Interrupted system call (code=4)
Sat Jun 22 07:42:28 2013 SIGTERM received, sending exit notification to peer
Sat Jun 22 07:42:31 2013 TCP/UDP: Closing socket
Sat Jun 22 07:42:31 2013 /sbin/route del -net 69.73.224.249 netmask 
255.255.255.255
Sat Jun 22 07:42:31 2013 /sbin/route del -net 0.0.0.0 netmask 128.0.0.0
SIOCDELRT: No such process
Sat Jun 22 07:42:31 2013 ERROR: Linux route delete command failed: external 
program exited with error status: 7
Sat Jun 22 07:42:31 2013 /sbin/route del -net 128.0.0.0 netmask 128.0.0.0
SIOCDELRT: No such process
Sat Jun 22 07:42:31 2013 ERROR: Linux route delete command failed: external 
program exited with error status: 7
Sat Jun 22 07:42:31 2013 Closing TUN/TAP interface
Sat Jun 22 07:42:31 2013 SIGTERM[soft,exit-with-notification] received, process 
exiting

** Affects: ubuntu
 Importance: Undecided
 Status: New


** Tags: dhcp openvpn

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

Title:
  Openvpn is unable to assign dhcp from remote LAN in up/down scripts

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

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


[Bug 1193614] Re: Openvpn is unable to assign dhcp from remote LAN in up/down scripts

2013-06-22 Thread sefs
** Package changed: ubuntu = openvpn (Ubuntu)

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

Title:
  Openvpn is unable to assign dhcp from remote LAN in up/down scripts

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

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


[Bug 1193614] Re: Openvpn is unable to assign dhcp from remote LAN in up/down scripts

2013-06-22 Thread sefs
** Description changed:

  Hi,
  
  When setting up Openvpn in bridged mode, openvpn is unable to configure
  the tap interface on the client for dhcp from the remote LAN.
  
  Server:
  -
  ...
  server-bridge
  push route-gateway 192.168.1.1
  push redirect-gateway def1 bypass-dhcp
  client-to-client
  ...
  
  Client:
  -
  ...
  
  up /etc/openvpn/dhcp.sh
  down /etc/openvpn/dhcp.sh
  ...
  
  dhcp.sh:
  -
  #!/bin/bash
- # 
- [ -x /sbin/dhclient] || exit 0
+ #
+ [ -x /sbin/dhclient ] || exit 0
  
  case $script_type in
  
  up)
-   dhclient -v ${dev}
-   ;;
+  dhclient -v ${dev}
+  ;;
  down)
-   dhclient -r ${dev}
-   ;;
+  dhclient -r ${dev}
+  ;;
  esac
  
  dhclient attempts to configure tap interface on client but eventually
  times out.
  
  Errors:
  -
  ...
  Sat Jun 22 07:40:02 2013 TUN/TAP device tap0 opened
  Sat Jun 22 07:40:02 2013 TUN/TAP TX queue length set to 100
  Sat Jun 22 07:40:02 2013 /sbin/route add -net xxx.xxx.xxx.xxx netmask 
255.255.255.255 gw 192.168.2.1
  Sat Jun 22 07:40:02 2013 /sbin/route add -net 0.0.0.0 netmask 128.0.0.0 gw 
192.168.1.1
  SIOCADDRT: No such process
  Sat Jun 22 07:40:02 2013 ERROR: Linux route add command failed: external 
program exited with error status: 7
  Sat Jun 22 07:40:02 2013 /sbin/route add -net 128.0.0.0 netmask 128.0.0.0 gw 
192.168.1.1
  SIOCADDRT: No such process
  Sat Jun 22 07:40:02 2013 ERROR: Linux route add command failed: external 
program exited with error status: 7
  Sat Jun 22 07:40:02 2013 Initialization Sequence Completed
  
  and on shutting down connection:
  Errors:
  -
  Sat Jun 22 07:42:28 2013 event_wait : Interrupted system call (code=4)
  Sat Jun 22 07:42:28 2013 SIGTERM received, sending exit notification to peer
  Sat Jun 22 07:42:31 2013 TCP/UDP: Closing socket
- Sat Jun 22 07:42:31 2013 /sbin/route del -net 69.73.224.249 netmask 
255.255.255.255
+ Sat Jun 22 07:42:31 2013 /sbin/route del -net xxx.xxx.xxx.xxx netmask 
255.255.255.255
  Sat Jun 22 07:42:31 2013 /sbin/route del -net 0.0.0.0 netmask 128.0.0.0
  SIOCDELRT: No such process
  Sat Jun 22 07:42:31 2013 ERROR: Linux route delete command failed: external 
program exited with error status: 7
  Sat Jun 22 07:42:31 2013 /sbin/route del -net 128.0.0.0 netmask 128.0.0.0
  SIOCDELRT: No such process
  Sat Jun 22 07:42:31 2013 ERROR: Linux route delete command failed: external 
program exited with error status: 7
  Sat Jun 22 07:42:31 2013 Closing TUN/TAP interface
  Sat Jun 22 07:42:31 2013 SIGTERM[soft,exit-with-notification] received, 
process exiting

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

Title:
  Openvpn is unable to assign dhcp from remote LAN in up/down scripts

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

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

[Bug 516016] Re: [karmic] openvpn service starts before dhclient

2012-10-18 Thread sefs
I just ran into this problem on Ubuntu Server 10.04.4.  Glad to see
there is a work-around.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openvpn in Ubuntu.
https://bugs.launchpad.net/bugs/516016

Title:
  [karmic] openvpn service starts before dhclient

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 516016] Re: [karmic] openvpn service starts before dhclient

2012-10-18 Thread sefs
I just ran into this problem on Ubuntu Server 10.04.4.  Glad to see
there is a work-around.

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

Title:
  [karmic] openvpn service starts before dhclient

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

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


[Bug 994862] Re: Random Waiting for network configuration

2012-09-08 Thread sefs
I need to have this as I boot computers over the LAN to admin them and
if one boots with this bug then I would actually have to go to the
machine or ask someone at the location to reboot until the message goes
away.

A temporary measure I am using to get around this problem is this

create a file in /etc/init.d that  forces the network to restart on each
boot so no matter what after it reaches the login screen ever after the
60 second time out I will have a working network connection with out
having to manually log in and restart the network to bring up ethX.

 sudo -i
 cd /etc/init.d
 nano forcenetworkrestartonboot


in this file place the script

  #!/bin/bash
  /etc/init.d/networking restart
  exit
-
 chmod a+x forcenetworkrestartonboot
 update-rc.d -f forcenetworkrestartonboot defaults


So if I get that bug after the 60 seconds the network will restart by
the time it hits the login screen I believe.

to remove this from runing on start up ...
 update-rc.d -f forcenetworkrestartonboot remove 

and then delete /etc/init.d/forcenetworkrestartonboot

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

Title:
  Random Waiting for network configuration

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

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


[Bug 844103] Re: GDM 3.0 and higher ignores /etc/environment

2012-09-07 Thread sefs
This bug is present and unfixed on Precise 12.04 is there a fix for it?

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

Title:
  GDM 3.0 and higher ignores /etc/environment

To manage notifications about this bug go to:
https://bugs.launchpad.net/gdm/+bug/844103/+subscriptions

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


[Bug 994862] Re: Random Waiting for network configuration

2012-09-07 Thread sefs
Are you sure it's a dup? In that other case the guy does not seem to be
concerned about the bug in itself, just that he can't skip it.

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

Title:
  Random Waiting for network configuration

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

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


[Bug 994862] [NEW] Random Waiting for network configuration

2012-05-04 Thread sefs
Public bug reported:

While booting (it does not happen all the time but enough to be
annoying) I get the error...

Waiting for network configuration

After a few moments it would then say

Waiting up to 60 more seconds for network configuration

Then after it would say something along the lines of booting without a
complete network configuration.

If i did a ifconfig then my network interface eth0 is not present.  I
would have to do a /etc/init.d/networking restart and then eth0 would
appear in the ifconfig.

This does not happen all the time but enough to be an annoyance.

ProblemType: Bug
DistroRelease: Ubuntu 12.04
Package: upstart 1.5-0ubuntu5
ProcVersionSignature: Ubuntu 3.2.0-24.37-generic 3.2.14
Uname: Linux 3.2.0-24-generic x86_64
ApportVersion: 2.0.1-0ubuntu7
Architecture: amd64
Date: Fri May  4 17:52:56 2012
InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Release amd64 
(20120425)
ProcEnviron:
 SHELL=/bin/bash
 TERM=xterm
 PATH=(custom, no user)
 LANG=en_US.UTF-8
SourcePackage: upstart
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug precise

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

Title:
  Random Waiting for network configuration

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

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


[Bug 994862] Re: Random Waiting for network configuration

2012-05-04 Thread sefs
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/994862

Title:
  Random Waiting for network configuration

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

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


[Bug 994862] Re: Random Waiting for network configuration

2012-05-04 Thread sefs
interfaces

** Attachment added: interfaces
   
https://bugs.launchpad.net/ubuntu/+source/upstart/+bug/994862/+attachment/3130828/+files/interfaces

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

Title:
  Random Waiting for network configuration

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

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


[Bug 939833] [NEW] Dialogs appear in wrong screen (the extended screen) with multiple monitors, two to be exact.

2012-02-23 Thread sefs
Public bug reported:

Hi I have a laptop with an external LCD monitor attached.

I want to use the external as primary display. So I have extended the
desktop with the external on the left (primary), and laptop screen on
the right (extended).

The problem is when some dialogs appear they appear in the extended area
first and not the primary area. I then have to open the laptop cover
drag them over, close laptop cover, rinse and repeat.

ProblemType: Bug
DistroRelease: Ubuntu 10.04
Package: xorg 1:7.5+5ubuntu1.1
ProcVersionSignature: Ubuntu 2.6.38-13.54~lucid1-generic 2.6.38.8
Uname: Linux 2.6.38-13-generic i686
Architecture: i386
Date: Thu Feb 23 17:27:15 2012
DkmsStatus:
 bcmwl, 5.60.48.36+bdcom, 2.6.32-37-generic, i686: installed 
 bcmwl, 5.60.48.36+bdcom, 2.6.32-38-generic, i686: installed
InstallationMedia: Ubuntu 10.04 LTS Lucid Lynx - Release i386 (20100427.1)
MachineType: LENOVO 1068AFU
ProcCmdLine: BOOT_IMAGE=/vmlinuz root=UUID=0fae35a9-35cc-4a50-9167-03b893ac1faf 
ro quiet splash
ProcEnviron:
 SHELL=/bin/bash
 PATH=(custom, no user)
 LANG=en_US.UTF-8
 LANGUAGE=en_US:en
SourcePackage: xorg
Symptom: display
dmi.bios.date: 10/27/2011
dmi.bios.vendor: LENOVO
dmi.bios.version: 44CN43WW
dmi.board.asset.tag: Base Board Asset Tag
dmi.board.name: Emerald Lake
dmi.board.vendor: LENOVO
dmi.board.version: FAB1
dmi.chassis.asset.tag: Asset Tag
dmi.chassis.type: 10
dmi.chassis.vendor: LENOVO
dmi.chassis.version: 0.1
dmi.modalias: 
dmi:bvnLENOVO:bvr44CN43WW:bd10/27/2011:svnLENOVO:pn1068AFU:pvrLenovoB570:rvnLENOVO:rnEmeraldLake:rvrFAB1:cvnLENOVO:ct10:cvr0.1:
dmi.product.name: 1068AFU
dmi.product.version: Lenovo B570
dmi.sys.vendor: LENOVO
system:
 distro: Ubuntu
 codename:   lucid
 architecture:   i686
 kernel: 2.6.38-13-generic

** Affects: ubuntu
 Importance: Undecided
 Status: New


** Tags: apport-bug i386 lucid

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

Title:
  Dialogs appear in wrong screen (the extended screen) with multiple
  monitors, two to be exact.

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

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


[Bug 939833] Re: Dialogs appear in wrong screen (the extended screen) with multiple monitors, two to be exact.

2012-02-23 Thread sefs
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/939833

Title:
  Dialogs appear in wrong screen (the extended screen) with multiple
  monitors, two to be exact.

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

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


[Bug 919185] Re: package bcmwl-kernel-source 5.60.48.36+bdcom-0ubuntu3 failed to install/upgrade: bcmwl kernel module failed to build

2012-01-20 Thread sefs
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/919185

Title:
  package bcmwl-kernel-source 5.60.48.36+bdcom-0ubuntu3 failed to
  install/upgrade: bcmwl kernel module failed to build

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

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


[Bug 919185] [NEW] package bcmwl-kernel-source 5.60.48.36+bdcom-0ubuntu3 failed to install/upgrade: bcmwl kernel module failed to build

2012-01-20 Thread sefs
Public bug reported:

bcmwl-kernel-source 5.60.48.36+bdcom-0ubuntu3  does not seem to install
on 2.6.38-13-generic

ProblemType: Package
DistroRelease: Ubuntu 10.04
Package: bcmwl-kernel-source 5.60.48.36+bdcom-0ubuntu3
ProcVersionSignature: Ubuntu 2.6.38-13.53~lucid1-generic 2.6.38.8
Uname: Linux 2.6.38-13-generic i686
Architecture: i386
Date: Fri Jan 20 08:58:25 2012
ErrorMessage: bcmwl kernel module failed to build
InstallationMedia: Ubuntu 10.04 LTS Lucid Lynx - Release i386 (20100427.1)
PackageVersion: 5.60.48.36+bdcom-0ubuntu3
SourcePackage: bcmwl
Title: package bcmwl-kernel-source 5.60.48.36+bdcom-0ubuntu3 failed to 
install/upgrade: bcmwl kernel module failed to build

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


** Tags: apport-package i386 lucid

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

Title:
  package bcmwl-kernel-source 5.60.48.36+bdcom-0ubuntu3 failed to
  install/upgrade: bcmwl kernel module failed to build

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

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


[Bug 729780] Re: bind9 fails to create pid file.

2011-05-21 Thread sefs
I just upgraded from 8.04.2 to 10.04.2, and when I look into /var/run  I
see no named.pid file.  BUT bind is happily running.  How can we solve
this bug.

Thanks.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to bind9 in Ubuntu.
https://bugs.launchpad.net/bugs/729780

Title:
  bind9 fails to create pid file.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 729780] Re: bind9 fails to create pid file.

2011-05-21 Thread sefs
Ok, I found it in /var/run/named/named.pid.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to bind9 in Ubuntu.
https://bugs.launchpad.net/bugs/729780

Title:
  bind9 fails to create pid file.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 729780] Re: bind9 fails to create pid file.

2011-05-21 Thread sefs
I just upgraded from 8.04.2 to 10.04.2, and when I look into /var/run  I
see no named.pid file.  BUT bind is happily running.  How can we solve
this bug.

Thanks.

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

Title:
  bind9 fails to create pid file.

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


[Bug 729780] Re: bind9 fails to create pid file.

2011-05-21 Thread sefs
Ok, I found it in /var/run/named/named.pid.

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

Title:
  bind9 fails to create pid file.

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


[Bug 590925] Re: broken version of netcat installed by default

2011-03-26 Thread sefs
Hi all,

How does this fix the bug in lucid.

I wish to perform this command in lucid

nc -l -p . which would have been a normal nc command.

what do I have to do in lucid to have this work.

Thanks.

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

Title:
  broken version of netcat installed by default

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


[Bug 92869] Re: no new mail icon is ugly

2010-12-01 Thread sefs
@karlrt ... you busted me.  My apologies too all. :)

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

Title:
  no new mail icon is ugly

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


[Bug 683985] [NEW] no icon is displayed when there is no mail

2010-12-01 Thread sefs
Public bug reported:

Binary package hint: mail-notification

I have to admit this is a strange one

I have mail-notification working well on a desktop machine running lucid
no problem.

I have an acer aspire one aoa-150 also running the same lucid but with
vastly different results for mail-notification.

After installing and loging off and logging back in there is no 
mail-notification icon in the tray.
Further more the menu item created is mail-notification --sm-disable.  Clicking 
on this does nothing as it is already running.  Maybe it should have been put 
in there as mail-notification -p --sm-disable (bug or oversight?)

Now the icon will only appear if new mail comes in then it disappears
when I click on consider new mail as read.

the i have also changed the stock_inbox.png icon to something that looks
nicer. Where as the desktop picks up the new icon the laptop does now
and some how pulls in the old stock_inbox.png icon.  not even sure where
it got it from.

Thanks.

** Affects: mail-notification (Ubuntu)
 Importance: Undecided
 Status: New

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

Title:
  no icon is displayed when there is no mail

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


[Bug 494082] [NEW] no Trash folder for root user

2009-12-08 Thread sefs
Public bug reported:

This bug is not new to karmic i have seen it in jaunty but it never
bother me until now.

This is a fresh install of Karmic from the Alternate CD

There is NO root user trash folder.

That is, /root/.local/share/Trash does not exist.

If i launch nautilus with the gksudo command I get this error...

***
The folder contents could not be displayed.
Sorry, could not display all the contents of trash: Operation not supported
***

Browsing via the terminal does not reveal a  /root/.local/share/Trash

Unto my problem...
Where do delete files go when deleted in nautilus when nautilus is launched 
with gksudo.

I deleted a sizable file but the diskspace was not returned to me from
this deleted file which means it is still on the disk, I know not where.

Can someone tell me where to look.

Thanks.

ProblemType: Bug
Architecture: i386
Date: Tue Dec  8 12:00:27 2009
DistroRelease: Ubuntu 9.10
NonfreeKernelModules: nvidia
Package: gnome (not installed)
ProcEnviron:
 SHELL=/bin/bash
 LANG=en_US.UTF-8
ProcVersionSignature: Ubuntu 2.6.31-16.52-generic
SourcePackage: meta-gnome2
Uname: Linux 2.6.31-16-generic i686

** Affects: meta-gnome2 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug i386

-- 
no Trash folder for root user
https://bugs.launchpad.net/bugs/494082
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 494082] Re: no Trash folder for root user

2009-12-08 Thread sefs

** Attachment added: XsessionErrors.txt
   http://launchpadlibrarian.net/36594518/XsessionErrors.txt

-- 
no Trash folder for root user
https://bugs.launchpad.net/bugs/494082
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 362927] Re: rkhunter pulls in exim and a whole bunch of stuff I do not need installed

2009-12-06 Thread sefs
Yes it does, but at the time I filed this report, rkhunter never
required me to install this extra stuff.  So it could have mean that
they were already installed by default in previous versions of ubuntu.

Thanks.

-- 
rkhunter pulls in exim and a whole bunch of stuff I do not need installed
https://bugs.launchpad.net/bugs/362927
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 488558] [NEW] Ettercap causes internet loss when directed against other machines on ubuntu 9.04

2009-11-25 Thread sefs
Public bug reported:

Binary package hint: ettercap

Hi

Ettercap does not perform it's function on 9.04

I have tested with the below

echo 1  /proc/sys/net/ipv4/ip_forward
ettercap -T -q -o -i wlan0 -M arp:remote /192.168.1.2/ /192.168.1.1/

When this is launched from against a target system ... the target system
looses internet connectivity.  This should not be.

I have tested this also on ubuntu 9.10 and Ubuntu 8.10 and it performs
as expected.  That is the target system DOES NOT loose Internet
connectivity.

So something (a regression?) went awry in ubuntu 9.04

ProblemType: Bug
Architecture: i386
DistroRelease: Ubuntu 9.04
Package: ettercap 1:0.7.3-1.2ubuntu4
ProcEnviron:
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: ettercap
Uname: Linux 2.6.28-16-generic i686

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


** Tags: apport-bug i386

-- 
Ettercap causes internet loss when directed against other machines on ubuntu 
9.04
https://bugs.launchpad.net/bugs/488558
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 488558] Re: Ettercap causes internet loss when directed against other machines on ubuntu 9.04

2009-11-25 Thread sefs

** Attachment added: Dependencies.txt
   http://launchpadlibrarian.net/36090183/Dependencies.txt

-- 
Ettercap causes internet loss when directed against other machines on ubuntu 
9.04
https://bugs.launchpad.net/bugs/488558
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 309183] Re: no mic with Sound Blaster Live 5.1 and ubuntu and pulse audio

2009-11-17 Thread sefs
No it was resolved with a fresh install of 9.04 and also works in a
fresh install of 9.10.

Thanks.

-- 
no mic with Sound Blaster Live 5.1 and ubuntu and pulse audio
https://bugs.launchpad.net/bugs/309183
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 462249] Re: Right ALT key does not work

2009-11-17 Thread sefs
What the heck

It worked!

What the heck

Thank you kindly.

-- 
Right ALT key does not work
https://bugs.launchpad.net/bugs/462249
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 461275] Re: udev does not appear to be working correctly

2009-11-17 Thread sefs
Hello I am still having problems with this what is the status?

Thanks.

-- 
udev does not appear to be working correctly
https://bugs.launchpad.net/bugs/461275
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 461265] Re: Tremulous occasionally will not start when launched

2009-11-01 Thread sefs
Ubuntu thread with someone else experiencing the same issue.  This seems
to be a Karmic issue.

-- 
Tremulous occasionally will not start when launched
https://bugs.launchpad.net/bugs/461265
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 461265] Re: Tremulous occasionally will not start when launched

2009-11-01 Thread sefs
http://ubuntuforums.org/showthread.php?p=8214454  ... forgot to post the
thread.

-- 
Tremulous occasionally will not start when launched
https://bugs.launchpad.net/bugs/461265
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 462243] Re: Letter L and letter U do not work when at the remote computer log in screen

2009-10-30 Thread sefs
Ignore this.  The problem seems to have been on the Windows XP computer.

Thanks.

-- 
Letter L and letter U do not work when at the remote computer log in screen
https://bugs.launchpad.net/bugs/462243
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 461265] Re: Tremulous occasionally will not start when launched

2009-10-30 Thread sefs
Your suggestion did not help.

Thanks.

-- 
Tremulous occasionally will not start when launched
https://bugs.launchpad.net/bugs/461265
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 461265] Re: Tremulous occasionally will not start when launched

2009-10-29 Thread sefs
I am not sure what you mean by I see you are not running a stock client
though, so please try reproducing your problem with the binary that
comes with the ubuntu package.  The tremulous installed on the system
came thru the ubuntu synaptic repository.  After doing a clean install
of Karmic. I installed it immediately after via synaptic.

Can you elaborate as to why you would think it did not come from the
repos?

I will try your suggestion and delete the 3rd party maps.

-- 
Tremulous occasionally will not start when launched
https://bugs.launchpad.net/bugs/461265
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 461265] Re: Tremulous occasionally will not start when launched

2009-10-28 Thread sefs
Hi,

I just started it up, and was lucky to get output where it begins to
start and then falls back immediately to the desktop.  Sometimes when
this happens it leaves the desktop in the wrong resolution too.  Here is
the attachment.

Thanks.

-- 
Tremulous occasionally will not start when launched
https://bugs.launchpad.net/bugs/461265
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 461265] Re: Tremulous occasionally will not start when launched

2009-10-28 Thread sefs
Tremulous Terminal output from crash.

** Attachment added: Tremulous Terminal output from crash.
   http://launchpadlibrarian.net/34583516/trem_crash.txt

-- 
Tremulous occasionally will not start when launched
https://bugs.launchpad.net/bugs/461265
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 461275] Re: udev does not appear to be working correctly

2009-10-27 Thread sefs
I never knew that.   Does the file have to be any particular name?  What
is the %k

Thanks for the tip.

-- 
udev does not appear to be working correctly
https://bugs.launchpad.net/bugs/461275
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 462243] [NEW] Letter L and letter U do not work when at the remote computer log in screen

2009-10-27 Thread sefs
Public bug reported:

Connecting to a remote machine using vnc over ssh.  When the remote
computer screen loads and I am in the password (our username) box I
cannot type the letters L or the letter U in lowercase.  I can
however type them in uppercase using the shift key, or turning on the
caps lock.

ProblemType: Bug
Architecture: i386
Date: Tue Oct 27 18:06:06 2009
DistroRelease: Ubuntu 9.10
NonfreeKernelModules: nvidia
Package: xvnc4viewer 4.1.1+xorg1.0.2-0ubuntu7
ProcEnviron:
 SHELL=/bin/bash
 LANG=en_US.UTF-8
ProcVersionSignature: Ubuntu 2.6.31-14.48-generic
SourcePackage: vnc4
Uname: Linux 2.6.31-14-generic i686
XsessionErrors:
 (gnome-settings-daemon:2796): GLib-CRITICAL **: g_propagate_error: assertion 
`src != NULL' failed
 (polkit-gnome-authentication-agent-1:2849): GLib-CRITICAL **: 
g_once_init_leave: assertion `initialization_value != 0' failed
 (nautilus:2847): Eel-CRITICAL **: eel_preferences_get_boolean: assertion 
`preferences_is_initialized ()' failed
 (gnome-panel:2822): Gdk-WARNING **: 
/build/buildd/gtk+2.0-2.18.3/gdk/x11/gdkdrawable-x11.c:952 drawable is not a 
pixmap or window
 (nautilus:7193): Eel-CRITICAL **: eel_preferences_get_boolean: assertion 
`preferences_is_initialized ()' failed

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


** Tags: apport-bug i386

-- 
Letter L and letter U do not work when at the remote computer log in screen
https://bugs.launchpad.net/bugs/462243
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 462243] Re: Letter L and letter U do not work when at the remote computer log in screen

2009-10-27 Thread sefs

** Attachment added: Dependencies.txt
   http://launchpadlibrarian.net/34502065/Dependencies.txt

-- 
Letter L and letter U do not work when at the remote computer log in screen
https://bugs.launchpad.net/bugs/462243
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 462249] [NEW] Right ALT key does not work

2009-10-27 Thread sefs
Public bug reported:

Right ALT key does nothing.  It does not work.

It cannot be related to this bug
https://bugs.launchpad.net/ubuntu/+source/gnome-control-
center/+bug/438520  as the fix suggested here does not work.

I installed using the Alternate CD.

Thanks.

ProblemType: Bug
Architecture: i386
Date: Tue Oct 27 18:14:41 2009
DistroRelease: Ubuntu 9.10
NonfreeKernelModules: nvidia
Package: gnome (not installed)
ProcEnviron:
 SHELL=/bin/bash
 LANG=en_US.UTF-8
ProcVersionSignature: Ubuntu 2.6.31-14.48-generic
SourcePackage: meta-gnome2
Uname: Linux 2.6.31-14-generic i686
XsessionErrors:
 (gnome-settings-daemon:2796): GLib-CRITICAL **: g_propagate_error: assertion 
`src != NULL' failed
 (polkit-gnome-authentication-agent-1:2849): GLib-CRITICAL **: 
g_once_init_leave: assertion `initialization_value != 0' failed
 (nautilus:2847): Eel-CRITICAL **: eel_preferences_get_boolean: assertion 
`preferences_is_initialized ()' failed
 (gnome-panel:2822): Gdk-WARNING **: 
/build/buildd/gtk+2.0-2.18.3/gdk/x11/gdkdrawable-x11.c:952 drawable is not a 
pixmap or window
 (nautilus:7193): Eel-CRITICAL **: eel_preferences_get_boolean: assertion 
`preferences_is_initialized ()' failed

** Affects: meta-gnome2 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug i386

-- 
Right ALT key does not work
https://bugs.launchpad.net/bugs/462249
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 461271] [NEW] zenmap not installed to menus properly

2009-10-26 Thread sefs
Public bug reported:

Binary package hint: nmap

After installing zenmap and looking in the internet menu

1) The icons are incorrect. Instead of the blue eye I see a gray box
with a question mark

2) There is no launch as root icon.  That means I can only launch it as
current user which is almost useless.

ProblemType: Bug
Architecture: i386
Date: Mon Oct 26 13:30:56 2009
DistroRelease: Ubuntu 9.10
NonfreeKernelModules: nvidia
Package: zenmap 5.00-2
ProcEnviron:
 SHELL=/bin/bash
 LANG=en_US.UTF-8
ProcVersionSignature: Ubuntu 2.6.31-14.48-generic
SourcePackage: nmap
Uname: Linux 2.6.31-14-generic i686

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


** Tags: apport-bug i386

-- 
zenmap not installed to menus properly
https://bugs.launchpad.net/bugs/461271
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to nmap in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 461271] Re: zenmap not installed to menus properly

2009-10-26 Thread sefs

** Attachment added: Dependencies.txt
   http://launchpadlibrarian.net/34420693/Dependencies.txt

** Attachment added: XsessionErrors.txt
   http://launchpadlibrarian.net/34420695/XsessionErrors.txt

-- 
zenmap not installed to menus properly
https://bugs.launchpad.net/bugs/461271
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to nmap in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 461265] [NEW] Tremulous occasionally will not start when launched

2009-10-26 Thread sefs
Public bug reported:

Binary package hint: tremulous

Occasionally on launching tremulous it does not start.  I have to launch
it 2 or 3 times to get it to start.  It usually would then start on the
second or third attempt.

I am going to try launching it from the terminal from now on to see what
msgs I get when this occurs.

ProblemType: Bug
Architecture: i386
Date: Mon Oct 26 13:26:03 2009
DistroRelease: Ubuntu 9.10
NonfreeKernelModules: nvidia
Package: tremulous 1.1.0-4.1build1
ProcEnviron:
 SHELL=/bin/bash
 LANG=en_US.UTF-8
ProcVersionSignature: Ubuntu 2.6.31-14.48-generic
SourcePackage: tremulous
Uname: Linux 2.6.31-14-generic i686

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


** Tags: apport-bug i386

-- 
Tremulous occasionally will not start when launched
https://bugs.launchpad.net/bugs/461265
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 461265] Re: Tremulous occasionally will not start when launched

2009-10-26 Thread sefs

** Attachment added: Dependencies.txt
   http://launchpadlibrarian.net/34420586/Dependencies.txt

** Attachment added: XsessionErrors.txt
   http://launchpadlibrarian.net/34420587/XsessionErrors.txt

-- 
Tremulous occasionally will not start when launched
https://bugs.launchpad.net/bugs/461265
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 461271] [NEW] zenmap not installed to menus properly

2009-10-26 Thread sefs
Public bug reported:

Binary package hint: nmap

After installing zenmap and looking in the internet menu

1) The icons are incorrect. Instead of the blue eye I see a gray box
with a question mark

2) There is no launch as root icon.  That means I can only launch it as
current user which is almost useless.

ProblemType: Bug
Architecture: i386
Date: Mon Oct 26 13:30:56 2009
DistroRelease: Ubuntu 9.10
NonfreeKernelModules: nvidia
Package: zenmap 5.00-2
ProcEnviron:
 SHELL=/bin/bash
 LANG=en_US.UTF-8
ProcVersionSignature: Ubuntu 2.6.31-14.48-generic
SourcePackage: nmap
Uname: Linux 2.6.31-14-generic i686

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


** Tags: apport-bug i386

-- 
zenmap not installed to menus properly
https://bugs.launchpad.net/bugs/461271
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 461271] Re: zenmap not installed to menus properly

2009-10-26 Thread sefs

** Attachment added: Dependencies.txt
   http://launchpadlibrarian.net/34420693/Dependencies.txt

** Attachment added: XsessionErrors.txt
   http://launchpadlibrarian.net/34420695/XsessionErrors.txt

-- 
zenmap not installed to menus properly
https://bugs.launchpad.net/bugs/461271
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 461275] [NEW] udev does not appear to be working correctly

2009-10-26 Thread sefs
Public bug reported:

Binary package hint: udev

It worked correctly for me under jaunty.

Here is the problem.

I installed vmware.  vmnet0 was created in /dev with ownership root:root

I want to have vmnet0 with ownership root:vmware-vmnet0

So I cp -rp /dev/vmnet0 /lib/udev/devices/  which created vmnet0 in
/lib/udev/devices then I set the ownership and permissions as I want.

But on reboot vmnet0 is created in /dev with incorrect ownership and
permissions and does not reflect the vmnet0 changes found in
/lib/udev/devices/vmnet0.

This would have worked in jaunty but not karmic.

ProblemType: Bug
Architecture: i386
Date: Mon Oct 26 13:35:04 2009
DistroRelease: Ubuntu 9.10
MachineType: MICRO-STAR INTERNATIONAL CO., LTD MS-7142
NonfreeKernelModules: nvidia
Package: udev 147~-6
ProcCmdLine: BOOT_IMAGE=/boot/vmlinuz-2.6.31-14-generic 
root=UUID=17b89f23-33cc-4795-b718-b29262632273 ro quiet splash
ProcEnviron:
 SHELL=/bin/bash
 LANG=en_US.UTF-8
ProcVersionSignature: Ubuntu 2.6.31-14.48-generic
SourcePackage: udev
Uname: Linux 2.6.31-14-generic i686
dmi.bios.date: 01/18/2006
dmi.bios.vendor: Phoenix Technologies, LTD
dmi.bios.version: 6.00 PG
dmi.board.name: MS-7142
dmi.board.vendor: MICRO-STAR INTERNATIONAL CO., LTD
dmi.board.version: 1.00
dmi.chassis.type: 3
dmi.modalias: 
dmi:bvnPhoenixTechnologies,LTD:bvr6.00PG:bd01/18/2006:svnMICRO-STARINTERNATIONALCO.,LTD:pnMS-7142:pvr1.00:rvnMICRO-STARINTERNATIONALCO.,LTD:rnMS-7142:rvr1.00:cvn:ct3:cvr:
dmi.product.name: MS-7142
dmi.product.version: 1.00
dmi.sys.vendor: MICRO-STAR INTERNATIONAL CO., LTD

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


** Tags: apport-bug i386

-- 
udev does not appear to be working correctly
https://bugs.launchpad.net/bugs/461275
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 461275] Re: udev does not appear to be working correctly

2009-10-26 Thread sefs

** Attachment added: BootDmesg.txt
   http://launchpadlibrarian.net/34420841/BootDmesg.txt

** Attachment added: CurrentDmesg.txt
   http://launchpadlibrarian.net/34420842/CurrentDmesg.txt

** Attachment added: Dependencies.txt
   http://launchpadlibrarian.net/34420843/Dependencies.txt

** Attachment added: Lspci.txt
   http://launchpadlibrarian.net/34420844/Lspci.txt

** Attachment added: Lsusb.txt
   http://launchpadlibrarian.net/34420845/Lsusb.txt

** Attachment added: ProcCpuinfo.txt
   http://launchpadlibrarian.net/34420846/ProcCpuinfo.txt

** Attachment added: ProcInterrupts.txt
   http://launchpadlibrarian.net/34420847/ProcInterrupts.txt

** Attachment added: ProcModules.txt
   http://launchpadlibrarian.net/34420848/ProcModules.txt

** Attachment added: UdevDb.txt
   http://launchpadlibrarian.net/34420849/UdevDb.txt

** Attachment added: UdevLog.txt
   http://launchpadlibrarian.net/34420850/UdevLog.txt

** Attachment added: XsessionErrors.txt
   http://launchpadlibrarian.net/34420852/XsessionErrors.txt

-- 
udev does not appear to be working correctly
https://bugs.launchpad.net/bugs/461275
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 438520] Re: Right Alt key is always selected under key to choose 3rd level

2009-10-26 Thread sefs
I commented out and still the right alt key does not work for me.  I
rebooted also.

-- 
Right Alt key is always selected under key to choose 3rd level
https://bugs.launchpad.net/bugs/438520
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 423653] Re: Openvpn + rkhunter + postfix = openvpn client not able to start

2009-09-03 Thread sefs
I posted the below to the openvpn-users list:

---

Hi all,

I need some help

After using openvpn with some measure of success, it suddenly went
south.

The symptom is that it would connect on ever even numbered attempt.
That is if i try to connect the first time it would give me and error, if i try 
to connect the second time it would connect successfully. If i tried a third, 
error, if I tried a fourth, success and so on.

The error in question was this

***
script failed: external program exited with error status: 1
***


via gopenvpn a gui for openvpn on linux.

It then occur to me that I always had success at seeing what was really
going on when ever I ran it straight from the command line.

The command line spit out this ever odd numbered attempt to connect to
the server...

It would start to connect then give this error...

***
/usr/sbin/postconf: fatal: open /etc/postfix/main.cf: No such file or directory
cp: `/etc/resolv.conf' and `/etc/resolv.conf' are the same file
run-parts: /etc/resolvconf/update-libc.d/postfix exited with return code 1
run-parts: /etc/resolvconf/update.d/libc exited with return code 1
Wed Sep  2 23:07:19 2009 script failed: external program exited with error 
status: 1
***

and there we have it ... it's postfix!!!

I recalled that I had installed rkhunter .. a rootkit checker for ubuntu
linux.  It had for some ungodly reason insisted that it need postfix and
by extension mailx and bsd-mailx to be able to operate.  This I believe
are only recent dependancies in Jaunty.  And it was about the time of
the installed that openvpn began to misbehave.  So I uninstalled
postfix, mailx and bsd-mailx (I hope they are not of importance to have
on the systerm) and was back in business.  The errors were gone.

I somehow suspect thought that openvpn and postfix should be able to co-
exist on the same machine.  I remember when installing it I chose a no
configuration option since i did not know why it was being forced on me
and did not want to waste time configuring something i did not need.

So... does anyone know if these two things can coexist peacefully and
what would need to be done for that to happen given the above error?

Thanks.

-- 
Openvpn + rkhunter + postfix = openvpn client not able to start 
https://bugs.launchpad.net/bugs/423653
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openvpn in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 423653] [NEW] Openvpn + rkhunter + postfix = openvpn client not able to start

2009-09-03 Thread sefs
Public bug reported:

Binary package hint: openvpn

Hi all i have some problems here, I am connecting to and ovpn server via
gopenvpn.

The error returned is ... Wed Sep  2 18:12:16 2009: script failed:
external program exited with error status: 1

I tried connecting via the command line and the error really is this...

/usr/sbin/postconf: fatal: open /etc/postfix/main.cf: No such file or directory
cp: `/etc/resolv.conf' and `/etc/resolv.conf' are the same file
run-parts: /etc/resolvconf/update-libc.d/postfix exited with return code 1
run-parts: /etc/resolvconf/update.d/libc exited with return code 1
Wed Sep  2 23:07:19 2009 script failed: external program exited with error 
status: 1

A description of how this came to be follows below.

ProblemType: Bug
Architecture: i386
DistroRelease: Ubuntu 9.04
NonfreeKernelModules: nvidia
Package: openvpn 2.1~rc11-1ubuntu3
ProcEnviron:
 PATH=(custom, user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: openvpn
Uname: Linux 2.6.28-15-generic i686

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


** Tags: apport-bug i386

-- 
Openvpn + rkhunter + postfix = openvpn client not able to start 
https://bugs.launchpad.net/bugs/423653
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openvpn in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 423653] Re: Openvpn + rkhunter + postfix = openvpn client not able to start

2009-09-03 Thread sefs
How can I fist this.

Thanks.

-- 
Openvpn + rkhunter + postfix = openvpn client not able to start 
https://bugs.launchpad.net/bugs/423653
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openvpn in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 423653] Re: Openvpn + rkhunter + postfix = openvpn client not able to start

2009-09-03 Thread sefs
... and I got this response 

---
 It would start to connect then give this error...

 ***
 /usr/sbin/postconf: fatal: open /etc/postfix/main.cf: No such file or
 directory cp: `/etc/resolv.conf' and `/etc/resolv.conf' are the same file
 run-parts: /etc/resolvconf/update-libc.d/postfix exited with return code 1
 run-parts: /etc/resolvconf/update.d/libc exited with return code 1
 Wed Sep  2 23:07:19 2009 script failed: external program exited with error
 status: 1 ***

 and there we have it ... it's postfix!!!
 
No, it's not. It's someone's misguided attempt at shell scripting.
Postfix is an innocent victim.
 
 I recalled that I had installed rkhunter .. a rootkit checker for
 ubuntu linux.
 
There's what you have: a Ubuntu bug.
 
 It had for some ungodly reason insisted that it need postfix and
 by extension mailx and bsd-mailx to be able to operate.  This I
 believe are only recent dependancies in Jaunty.  And it was about
 the time of the installed that openvpn began to misbehave.  So I
 uninstalled postfix, mailx and bsd-mailx (I hope they are not of
 importance to have on the systerm) and was back in business. The
 errors were gone.
 
I would guess that the rkhunter wants to be able to send mail to the
admin. I'm not sure why it would require mailx to do this.
 
 I somehow suspect thought that openvpn and postfix should be able
 to co-exist on the same machine.
 
If you see this email, they do. I'm running Postfix on both ends of
this openvpn tunnel, relaying the outbound mail through the peer. If
you *don't* see this email, they still work fine together, because
this is the way I send and receive email, and I know it works.
 
 I remember when installing it I chose a no configuration option
 since i did not know why it was being forced on me and did not
 want to waste time configuring something i did not need. 

 So... does anyone know if these two things can coexist peacefully
 and what would need to be done for that to happen given the above
 error? 
 
I would have no idea. Your proper means of proceeding, again, would
be to file a Ubuntu bug report. I would suspect that the shell
scripting was done in the rkhunter package, but to be sure, you
should list all involved packages and let the maintainers figure out
whose bug it is.
 
On second thought ... what is this update-libc.d and update.d?
Whatever package installed those is the probable culprit.

-- 
Openvpn + rkhunter + postfix = openvpn client not able to start 
https://bugs.launchpad.net/bugs/423653
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openvpn in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 423653] Re: Openvpn + rkhunter + postfix = openvpn client not able to start

2009-09-03 Thread sefs
I posted the below to the openvpn-users list:

---

Hi all,

I need some help

After using openvpn with some measure of success, it suddenly went
south.

The symptom is that it would connect on ever even numbered attempt.
That is if i try to connect the first time it would give me and error, if i try 
to connect the second time it would connect successfully. If i tried a third, 
error, if I tried a fourth, success and so on.

The error in question was this

***
script failed: external program exited with error status: 1
***


via gopenvpn a gui for openvpn on linux.

It then occur to me that I always had success at seeing what was really
going on when ever I ran it straight from the command line.

The command line spit out this ever odd numbered attempt to connect to
the server...

It would start to connect then give this error...

***
/usr/sbin/postconf: fatal: open /etc/postfix/main.cf: No such file or directory
cp: `/etc/resolv.conf' and `/etc/resolv.conf' are the same file
run-parts: /etc/resolvconf/update-libc.d/postfix exited with return code 1
run-parts: /etc/resolvconf/update.d/libc exited with return code 1
Wed Sep  2 23:07:19 2009 script failed: external program exited with error 
status: 1
***

and there we have it ... it's postfix!!!

I recalled that I had installed rkhunter .. a rootkit checker for ubuntu
linux.  It had for some ungodly reason insisted that it need postfix and
by extension mailx and bsd-mailx to be able to operate.  This I believe
are only recent dependancies in Jaunty.  And it was about the time of
the installed that openvpn began to misbehave.  So I uninstalled
postfix, mailx and bsd-mailx (I hope they are not of importance to have
on the systerm) and was back in business.  The errors were gone.

I somehow suspect thought that openvpn and postfix should be able to co-
exist on the same machine.  I remember when installing it I chose a no
configuration option since i did not know why it was being forced on me
and did not want to waste time configuring something i did not need.

So... does anyone know if these two things can coexist peacefully and
what would need to be done for that to happen given the above error?

Thanks.

-- 
Openvpn + rkhunter + postfix = openvpn client not able to start 
https://bugs.launchpad.net/bugs/423653
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 423653] [NEW] Openvpn + rkhunter + postfix = openvpn client not able to start

2009-09-03 Thread sefs
Public bug reported:

Binary package hint: openvpn

Hi all i have some problems here, I am connecting to and ovpn server via
gopenvpn.

The error returned is ... Wed Sep  2 18:12:16 2009: script failed:
external program exited with error status: 1

I tried connecting via the command line and the error really is this...

/usr/sbin/postconf: fatal: open /etc/postfix/main.cf: No such file or directory
cp: `/etc/resolv.conf' and `/etc/resolv.conf' are the same file
run-parts: /etc/resolvconf/update-libc.d/postfix exited with return code 1
run-parts: /etc/resolvconf/update.d/libc exited with return code 1
Wed Sep  2 23:07:19 2009 script failed: external program exited with error 
status: 1

A description of how this came to be follows below.

ProblemType: Bug
Architecture: i386
DistroRelease: Ubuntu 9.04
NonfreeKernelModules: nvidia
Package: openvpn 2.1~rc11-1ubuntu3
ProcEnviron:
 PATH=(custom, user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: openvpn
Uname: Linux 2.6.28-15-generic i686

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


** Tags: apport-bug i386

-- 
Openvpn + rkhunter + postfix = openvpn client not able to start 
https://bugs.launchpad.net/bugs/423653
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 423653] Re: Openvpn + rkhunter + postfix = openvpn client not able to start

2009-09-03 Thread sefs
How can I fist this.

Thanks.

-- 
Openvpn + rkhunter + postfix = openvpn client not able to start 
https://bugs.launchpad.net/bugs/423653
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 423653] Re: Openvpn + rkhunter + postfix = openvpn client not able to start

2009-09-03 Thread sefs
... and I got this response 

---
 It would start to connect then give this error...

 ***
 /usr/sbin/postconf: fatal: open /etc/postfix/main.cf: No such file or
 directory cp: `/etc/resolv.conf' and `/etc/resolv.conf' are the same file
 run-parts: /etc/resolvconf/update-libc.d/postfix exited with return code 1
 run-parts: /etc/resolvconf/update.d/libc exited with return code 1
 Wed Sep  2 23:07:19 2009 script failed: external program exited with error
 status: 1 ***

 and there we have it ... it's postfix!!!
 
No, it's not. It's someone's misguided attempt at shell scripting.
Postfix is an innocent victim.
 
 I recalled that I had installed rkhunter .. a rootkit checker for
 ubuntu linux.
 
There's what you have: a Ubuntu bug.
 
 It had for some ungodly reason insisted that it need postfix and
 by extension mailx and bsd-mailx to be able to operate.  This I
 believe are only recent dependancies in Jaunty.  And it was about
 the time of the installed that openvpn began to misbehave.  So I
 uninstalled postfix, mailx and bsd-mailx (I hope they are not of
 importance to have on the systerm) and was back in business. The
 errors were gone.
 
I would guess that the rkhunter wants to be able to send mail to the
admin. I'm not sure why it would require mailx to do this.
 
 I somehow suspect thought that openvpn and postfix should be able
 to co-exist on the same machine.
 
If you see this email, they do. I'm running Postfix on both ends of
this openvpn tunnel, relaying the outbound mail through the peer. If
you *don't* see this email, they still work fine together, because
this is the way I send and receive email, and I know it works.
 
 I remember when installing it I chose a no configuration option
 since i did not know why it was being forced on me and did not
 want to waste time configuring something i did not need. 

 So... does anyone know if these two things can coexist peacefully
 and what would need to be done for that to happen given the above
 error? 
 
I would have no idea. Your proper means of proceeding, again, would
be to file a Ubuntu bug report. I would suspect that the shell
scripting was done in the rkhunter package, but to be sure, you
should list all involved packages and let the maintainers figure out
whose bug it is.
 
On second thought ... what is this update-libc.d and update.d?
Whatever package installed those is the probable culprit.

-- 
Openvpn + rkhunter + postfix = openvpn client not able to start 
https://bugs.launchpad.net/bugs/423653
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 423653] Re: Openvpn + rkhunter + postfix = openvpn client not able to start

2009-09-03 Thread sefs

** Attachment added: Dependencies.txt
   http://launchpadlibrarian.net/31271025/Dependencies.txt

-- 
Openvpn + rkhunter + postfix = openvpn client not able to start 
https://bugs.launchpad.net/bugs/423653
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 345186] Re: Samba / Nautilus - Sharing Options do not work / broken

2009-09-02 Thread sefs
Hi, I'm on Jaunty preparing to move to Karmic.

Thanks.

-- 
Samba / Nautilus - Sharing Options do not work / broken
https://bugs.launchpad.net/bugs/345186
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 403793] Re: Tries to launch default mail client more than once in quick succesion

2009-08-31 Thread sefs
Hi, I've long since moved on to mail-notification (with the ugly icon),
so I am not too sure.

Thanks.

-- 
Tries to launch default mail client more than once in quick succesion
https://bugs.launchpad.net/bugs/403793
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 226185] Re: update-resolv-conf script does not restore old values

2009-08-26 Thread sefs
Thank you Tom Dickson.  That little tip helped alot.  That should really
be in the comments of the file

-- 
update-resolv-conf script does not restore old values
https://bugs.launchpad.net/bugs/226185
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openvpn in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 226185] Re: update-resolv-conf script does not restore old values

2009-08-26 Thread sefs
Thank you Tom Dickson.  That little tip helped alot.  That should really
be in the comments of the file

-- 
update-resolv-conf script does not restore old values
https://bugs.launchpad.net/bugs/226185
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 99432] Re: wireless network not working now

2009-08-24 Thread sefs
I see here that a fixed was released.

It is now 2009 of August. I am on 9.04 jaunty

I am trying to use /etc/network/interfaces

this is what it looks like...

auto wlan0
iface wlan0 inet dhcp
pre-up ifconfig wlan0 down
pre-up ifconfig wlan0 up
pre-up iwconfig wlan0 essid myap
pre-up iwconfig wlan0 mode Managed
pre-up iwconfig wlan0 channel 11
pre-up iwpriv wlan0 set AuthMode=WPA2PSK
   pre-up iwpriv wlan0 set EncrypType=AES
   pre-up iwpriv wlan0 set 
WPAPSK=jdfkasjfkajsfpajfdakjf;lkaj;flja;lfjijpeijpfj

This produces the errors

wlan0 no private ioctls.

I'm going to file a seperate bug as well but just wanted to try here
first.

Thanks.

-- 
wireless network not working now
https://bugs.launchpad.net/bugs/99432
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 417997] [NEW] wlan0 no private ioctls in Jaunty 9.04 with rt73usb

2009-08-24 Thread sefs
Public bug reported:

OS:ubuntu 9.04 jaunty

my /etc/network/interfaces file

# The wireless network interface
auto wlan0
iface wlan0 inet dhcp
   pre-up ifconfig wlan0 down
   pre-up ifconfig wlan0 up
   pre-up iwconfig wlan0 essid myap
   pre-up iwconfig wlan0 mode Managed
   pre-up iwconfig wlan0 channel 11
   pre-up iwpriv wlan0 set AuthMode=WPA2PSK
   pre-up iwpriv wlan0 set EncrypType=AES
   pre-up iwpriv wlan0 set WPAPSK=dsafasjdfasdfasfdkajfd


The error recieved:
wlan0 no private ioctls.    this here is the were problem ... no 
iwpriv allowed??

Failed to bring up wlan0.

Thanks.

** Affects: ubuntu
 Importance: Undecided
 Status: New

-- 
wlan0 no private ioctls in Jaunty 9.04 with rt73usb 
https://bugs.launchpad.net/bugs/417997
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 220362] Re: [needs-packaging] gopenvpn

2009-08-22 Thread sefs
What is the status of this, NetworkManager is dropping the ball in
openvpn connectivity.  Or is there any other gui for linux we can use
that actually works, and has a deb?

Thanks.

-- 
[needs-packaging] gopenvpn
https://bugs.launchpad.net/bugs/220362
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 416834] [NEW] VNC4Server broken again on Jaunty ... it usually is broke each release

2009-08-21 Thread sefs
Public bug reported:

...and then you have to hunt around for some fix.

This time it's a grey screen when you try to log in.  Thats all you get
a grey screen.

Thanks.

** Affects: ubuntu
 Importance: Undecided
 Status: New

-- 
VNC4Server broken again on Jaunty ... it usually is broke each release
https://bugs.launchpad.net/bugs/416834
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 416834] Re: VNC4Server broken again on Jaunty ... it usually is broke each release

2009-08-21 Thread sefs
But I have another bug.  I can't seem to be able to restrict vnc4server
to local connections only.  I have tried adding

-localhost
-localhost=0
-localhost=1

to the server_args of /etc/xinetd.d/Xvnc  but it still continues to
accept connections from other computers on the network.

Thanks.

-- 
VNC4Server broken again on Jaunty ... it usually is broke each release
https://bugs.launchpad.net/bugs/416834
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 416834] Re: VNC4Server broken again on Jaunty ... it usually is broke each release

2009-08-21 Thread sefs
Command returns:
vnc4server:
  Installed: 4.1.1+xorg1.0.2-0ubuntu7
  Candidate: 4.1.1+xorg1.0.2-0ubuntu7
  Version table:
 *** 4.1.1+xorg1.0.2-0ubuntu7 0
500 http://archive.ubuntu.com jaunty/universe Packages
100 /var/lib/dpkg/status


It turns out that I needed to change -query localhost to -query 127.0.0.1 in 
the /etc/xinetd.d/Xvnc file, in the server_args part.  

I can't even find a xstartup file in ~/.vnc  do I still need that?

-- 
VNC4Server broken again on Jaunty ... it usually is broke each release
https://bugs.launchpad.net/bugs/416834
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 416834] Re: VNC4Server broken again on Jaunty ... it usually is broke each release

2009-08-21 Thread sefs
Shoul I open up a new bug for that?

-- 
VNC4Server broken again on Jaunty ... it usually is broke each release
https://bugs.launchpad.net/bugs/416834
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 92869] Re: no new mail icon is ugly

2009-07-23 Thread sefs
LOLOL

I am now complaining about this.  Would you believe they have not
changed that icon (that only a mother could love) yet.  It's horrendous.

-- 
no new mail icon is ugly
https://bugs.launchpad.net/bugs/92869
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 403793] [NEW] Tries to launch default mail client more than once in quick succesion

2009-07-23 Thread sefs
Public bug reported:

Binary package hint: cgmail

Tries to launch thunderbird more than once in rapid succession when
clicking on open mail reader button in notification window.

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

-- 
Tries to launch default mail client more than once in quick succesion
https://bugs.launchpad.net/bugs/403793
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 44335] Re: IMAP/POP3+SSL/TLS are disabled

2009-07-23 Thread sefs
Andrew I would like to use your ppa to have your solution dump the
results as a deb into a directory that i can copy from machine to
machine after building in one place.

Is that possible?

-- 
IMAP/POP3+SSL/TLS are disabled
https://bugs.launchpad.net/bugs/44335
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

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


[Bug 44335] Re: IMAP/POP3+SSL/TLS are disabled

2009-07-23 Thread sefs
By the way where in the source do I change that ugly icon when there is
no new mail.

Thanks.

-- 
IMAP/POP3+SSL/TLS are disabled
https://bugs.launchpad.net/bugs/44335
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

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


[Bug 374286] Re: Network Manager is erroneously overwriting resolv.conf

2009-05-10 Thread sefs
Here are some more details I noticed the resolveconf package was pulling
a dns entry ... the first one from i know not where.  In my router I had
the first dns entry as 192.168.1.56 but instead it was putting it as
205..168.1.56.  I then deleted that entry that is when I saw that the
sym link to /etc/resolvconf/run/resolv.conf was replace with the correct
3 dns i wanted but it had automatically generated by network-manager.
Up to that time I had just been reinstalling reslovconf from the repos
and rebooting to see if it will change anything.  I then from synactic
completely removed resolvconf, rebooted, installed resolvconf freshly,
rebooted and then I got the dns I wanted automatically generated by
resolvconf.  I suspect that if  I were to manually edit reslovconf again
that it will replace resolv.conf with the auto generated data from
network-manager.   The expected behaviour is once resolvconf is
installed no matter what ... resolvconf should always dynamically write
out the resolv.conf file at boot up.  This is not what was happening.
So I concluded it is flaky at best and easily messed up.

Before I run those comands above ... what is eth100 i dont have such an
interfacedid you mean for that to be wlan0?

Thanks.

-- 
Network Manager is erroneously overwriting resolv.conf
https://bugs.launchpad.net/bugs/374286
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 374286] Re: Network Manager is erroneously overwriting resolv.conf

2009-05-10 Thread sefs
I'm scared to touch it now and mess it up now i have it working again
after purging resolvconf and reinstalling it from scratch.  Should I
still run your commands above then?  Let me know.

-- 
Network Manager is erroneously overwriting resolv.conf
https://bugs.launchpad.net/bugs/374286
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 374286] Re: Network Manager is erroneously overwriting resolv.conf

2009-05-10 Thread sefs
Ok thank for your help.  I appreciated that very much.

-- 
Network Manager is erroneously overwriting resolv.conf
https://bugs.launchpad.net/bugs/374286
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 374286] Re: Network Manager is erroneously overwriting resolv.conf

2009-05-09 Thread sefs

** Attachment added: Dependencies.txt
   http://launchpadlibrarian.net/26519841/Dependencies.txt

** Attachment added: Gconf.txt
   http://launchpadlibrarian.net/26519842/Gconf.txt

** Attachment added: IfupdownConfig.txt
   http://launchpadlibrarian.net/26519843/IfupdownConfig.txt

** Attachment added: NetDevice.eth0.txt
   http://launchpadlibrarian.net/26519847/NetDevice.eth0.txt

** Attachment added: NetDevice.lo.txt
   http://launchpadlibrarian.net/26519848/NetDevice.lo.txt

** Attachment added: NetDevice.pan0.txt
   http://launchpadlibrarian.net/26519849/NetDevice.pan0.txt

** Attachment added: NetDevice.vmnet1.txt
   http://launchpadlibrarian.net/26519850/NetDevice.vmnet1.txt

** Attachment added: NetDevice.vmnet8.txt
   http://launchpadlibrarian.net/26519851/NetDevice.vmnet8.txt

** Attachment added: NetDevice.wlan0.txt
   http://launchpadlibrarian.net/26519852/NetDevice.wlan0.txt

** Attachment added: NetDevice.wmaster0.txt
   http://launchpadlibrarian.net/26519853/NetDevice.wmaster0.txt

** Attachment added: Syslog.txt
   http://launchpadlibrarian.net/26519854/Syslog.txt

** Attachment added: WpaSupplicantLog.txt
   http://launchpadlibrarian.net/26519857/WpaSupplicantLog.txt

-- 
Network Manager is erroneously overwriting resolv.conf
https://bugs.launchpad.net/bugs/374286
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 374286] [NEW] Network Manager is erroneously overwriting resolv.conf

2009-05-09 Thread sefs
Public bug reported:

Binary package hint: network-manager

Network Manager is overwritign resolv.conf even though I have
specifically installed resolvconf package to handle resolv.conf.  Why is
this and how can I get ubuntu to perform in the correct way (as it did
in intrepid), where resolvconf managed resolv.conf.

Thanks.

ProblemType: Bug
Architecture: i386
DistroRelease: Ubuntu 9.04
NonfreeKernelModules: nvidia
Package: network-manager 0.7.1~rc4.1.cf199a964-0ubuntu2
ProcEnviron:
 PATH=(custom, user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: network-manager
Uname: Linux 2.6.28-11-generic i686

** Affects: network-manager (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug i386

-- 
Network Manager is erroneously overwriting resolv.conf
https://bugs.launchpad.net/bugs/374286
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 363236] Re: Thunderbird does not appear in right-click send to

2009-05-02 Thread sefs
David Laurell still seems to be having a problem though.  It works for
me when I choose evolution.

-- 
Thunderbird does not appear in right-click send to
https://bugs.launchpad.net/bugs/363236
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 363221] Re: pidgin on jaunty is lagging and sticks when typing for a couple seconds

2009-04-29 Thread sefs
This is no longer an issue, after removing the libnotify plugin.

-- 
pidgin on jaunty is lagging and sticks when typing for a couple seconds
https://bugs.launchpad.net/bugs/363221
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 363236] Re: Thunderbird does not appear in right-click send to

2009-04-28 Thread sefs
Aha!  That works.  But how are we supposed to know that.

P.S.  attaching multiple files does not work unless we use the handy zip
attachment feature included.

Thanks.

-- 
Thunderbird does not appear in right-click send to
https://bugs.launchpad.net/bugs/363236
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 363236] Re: Thunderbird does not appear in right-click send to

2009-04-28 Thread sefs
David, did you use Thunderbird from the repos or from mozilla.  If from
mozilla put a symlink from /opt/thunderbird/thunderbird into /usr/bin

-- 
Thunderbird does not appear in right-click send to
https://bugs.launchpad.net/bugs/363236
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 363236] Re: Thunderbird does not appear in right-click send to

2009-04-28 Thread sefs
Ok, you have the ubutnu version installed ... so after you right click
on a file on your desktop for instance and click on send to, choose
evolution from the drop down send as field, fill in all required
information and click on send,  a thunderbird compose email window does
not open?

-- 
Thunderbird does not appear in right-click send to
https://bugs.launchpad.net/bugs/363236
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 363902] Re: Tremulous unplayable in jaunty

2009-04-28 Thread sefs
After installing libsdl1.2debian-pulseaudio, tremulous returned to
normal.  Is this something that should be installed by default in
jaunty?  PulseAudio seems to be useless without it.

-- 
Tremulous unplayable in jaunty
https://bugs.launchpad.net/bugs/363902
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 362704] Re: nvidia-settings does not keep resolution that it is set too and xorg.conf is useless

2009-04-20 Thread sefs

** Attachment added: Xorg.0.log
   http://launchpadlibrarian.net/25803892/Xorg.0.log

-- 
nvidia-settings does not keep resolution that it is set too and xorg.conf is 
useless
https://bugs.launchpad.net/bugs/362704
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 362704] Re: nvidia-settings does not keep resolution that it is set too and xorg.conf is useless

2009-04-20 Thread sefs

** Attachment added: Xorg.0.log.old
   http://launchpadlibrarian.net/25803914/Xorg.0.log.old

-- 
nvidia-settings does not keep resolution that it is set too and xorg.conf is 
useless
https://bugs.launchpad.net/bugs/362704
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 363236] Re: Thunderbird does not appear in right-click send to

2009-04-19 Thread sefs
I tried both thunderbird and mozilla-thunderbird which were present in
the drop down list of the preferred programs.

-- 
Thunderbird does not appear in right-click send to
https://bugs.launchpad.net/bugs/363236
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 363221] Re: pidgin on jaunty is lagging and sticks when typing for a couple seconds

2009-04-19 Thread sefs
Just to udate...i left my computer running over night and came back and
found pidgin totally unresponsive.

-- 
pidgin on jaunty is lagging and sticks when typing for a couple seconds
https://bugs.launchpad.net/bugs/363221
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 363902] [NEW] Tremulous unplayable in jaunty

2009-04-19 Thread sefs
Public bug reported:

Binary package hint: tremulous

I suspect that pulseaudio (but i am not sure) is really dragging down
the temulous experience.  The sound is choppy, thinny and just scratchy.
It causes the game to lag and jump and takes away the enjoyment of
playing tremulous.

ProblemType: Bug
Architecture: i386
DistroRelease: Ubuntu 9.04
NonfreeKernelModules: nvidia
Package: tremulous 1.1.0-4.1build1
ProcEnviron:
 PATH=(custom, user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: tremulous
Uname: Linux 2.6.28-11-generic i686

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


** Tags: apport-bug i386

-- 
Tremulous unplayable in jaunty
https://bugs.launchpad.net/bugs/363902
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 363902] Re: Tremulous unplayable in jaunty

2009-04-19 Thread sefs

** Attachment added: Dependencies.txt
   http://launchpadlibrarian.net/25766851/Dependencies.txt

-- 
Tremulous unplayable in jaunty
https://bugs.launchpad.net/bugs/363902
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 363236] Re: Thunderbird does not appear in right-click send to

2009-04-18 Thread sefs
Is there a way to get the one from mozilla to turn up in there?   The
mozilla messaging one (not the ubuntu provided one) used to work with my
hardy and intrepid nautilus-sendto.  So from a user point of view its
broken.

-- 
Thunderbird does not appear in right-click send to
https://bugs.launchpad.net/bugs/363236
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 363236] Re: Thunderbird does not appear in right-click send to

2009-04-18 Thread sefs
its installed in /opt/thunderbird/thunderbird  and i have put a symlink
to that in /usr/bin

-- 
Thunderbird does not appear in right-click send to
https://bugs.launchpad.net/bugs/363236
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 363236] Re: Thunderbird does not appear in right-click send to

2009-04-18 Thread sefs
This is interesting...i installed the thunderbird package from the repos
and it still does not show up in the send to.  So I must be doing
something wrong.  This is a fresh install.  Can you tell me from your
end if you get the same.

Thanks.

-- 
Thunderbird does not appear in right-click send to
https://bugs.launchpad.net/bugs/363236
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 363091] Re: vnc4server is not starting at boot time as it did in intrepid

2009-04-17 Thread sefs

** Attachment added: Dependencies.txt
   http://launchpadlibrarian.net/25674620/Dependencies.txt

-- 
vnc4server is not starting at boot time as it did in intrepid
https://bugs.launchpad.net/bugs/363091
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


  1   2   3   >