[Bug 1774780] Re: rtl8812au-dkms 4.3.8.12175.20140902+dfsg-0ubuntu7: rtl8812au kernel module failed to build [error: ‘_timer {aka struct timer_list}’ has no member named ‘data’]

2018-07-23 Thread Julio Lajara
Round 3 with this driver breaking on a kernel update. I found a similar
bug that was fixed in this package
https://bugzilla.rpmfusion.org/show_bug.cgi?id=4798 (wl-kmod). If you go
to the link in the second comment and download the source RPM, it
contains a timer patch for kernel 4.15 .

Still trying to figure out how to translate that patch into something
thats usable in this driver.

** Bug watch added: bugzilla.rpmfusion.org/ #4798
   https://bugzilla.rpmfusion.org/show_bug.cgi?id=4798

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

Title:
  rtl8812au-dkms 4.3.8.12175.20140902+dfsg-0ubuntu7: rtl8812au kernel
  module failed to build [error: ‘_timer {aka struct timer_list}’ has no
  member named ‘data’]

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

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

[Bug 1742426] Re: rtl8812au-dkms 4.3.8.12175.20140902+dfsg-0ubuntu2: rtl8812au kernel module failed to build [error: implicit declaration of function ‘allow_signal’]

2018-02-02 Thread Julio Lajara
I have documented the patch needed to fix this issue in my last comment
in this thread:
https://bugs.launchpad.net/ubuntu/+source/rtl8812au/+bug/1637059

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

Title:
  rtl8812au-dkms 4.3.8.12175.20140902+dfsg-0ubuntu2: rtl8812au kernel
  module failed to build [error: implicit declaration of function
  ‘allow_signal’]

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

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

[Bug 1637059] Re: rtl8812au-dkms 4.3.8.12175.20140902+dfsg-0ubuntu2: rtl8812au kernel module failed to build [error: implicit declaration of function ‘is_compat_task’]

2018-02-02 Thread Julio Lajara
Seems this broke again with the 4.13.0 HWE kernel on 16.04 . Now, in
addition to the patch I described above for CONFIG_COMPAT, you also need
the following patch to
/usr/src/rtl8812au-4.3.8.12175.20140902+dfsg/include/osdep_service_linux.h
:

```
#ifndef __OSDEP_LINUX_SERVICE_H_
#define __OSDEP_LINUX_SERVICE_H_

#include 
#if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,11,0))
#include 
#endif
#include 
```

This patch includes a conditional for the kernel schedule signal headers
for newer kernels. You can then follow the same steps at the end of my
previous comment to recompile the driver.

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

Title:
  rtl8812au-dkms 4.3.8.12175.20140902+dfsg-0ubuntu2: rtl8812au kernel
  module failed to build [error: implicit declaration of function
  ‘is_compat_task’]

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

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

[Bug 1662120] Re: rtl8812au 4.3.8.12175.20140902+dfsg-0ubuntu2 ADT test failure with linux-hwe 4.8.0-37.39~16.04.2

2017-02-24 Thread Julio Lajara
*** This bug is a duplicate of bug 1637059 ***
https://bugs.launchpad.net/bugs/1637059

** This bug has been marked a duplicate of bug 1637059
   rtl8812au-dkms 4.3.8.12175.20140902+dfsg-0ubuntu2: rtl8812au kernel module 
failed to build [error: implicit declaration of function ‘is_compat_task’]

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

Title:
  rtl8812au 4.3.8.12175.20140902+dfsg-0ubuntu2 ADT test failure with
  linux-hwe 4.8.0-37.39~16.04.2

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

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

[Bug 1637059] Re: rtl8812au-dkms 4.3.8.12175.20140902+dfsg-0ubuntu2: rtl8812au kernel module failed to build [error: implicit declaration of function ‘is_compat_task’]

2017-02-24 Thread Julio Lajara
Can confirm, I have the same issue.

As a temporary fix (I couldnt find where CONFIG_COMPAT was defined in
the 4.4 lts xenial kernel in 16.04.1), I added the following to the very
top of
/usr/src/rtl8812au-4.3.8.12175.20140902+dfsg/os_dep/linux/rtw_android.c
:

```
# Note: This not a correct general purpose solution but for building on amd64 
16.04.2 it works fine.

#ifdef CONFIG_COMPAT
#undef CONFIG_COMPAT
#endif

```

This allowed me to build the driver on amd64 16.04.2, followed by the
following:

```
sudo dkms remove -m rtl8812au/4.3.8.12175.20140902+dfsg --all
sudo dkms install -m rtl8812au -v 4.3.8.12175.20140902+dfsg
sudo modprobe -r 8812au
sudo modprobe 8812au
# unplug/replug the usb device
sudo systemctl restart NetworkManager
```

The driver will now work with the 4.8 HWE kernel on 16.04.2 and so far
the networking in general seems far more stable than with the xenial
kernel.

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

Title:
  rtl8812au-dkms 4.3.8.12175.20140902+dfsg-0ubuntu2: rtl8812au kernel
  module failed to build [error: implicit declaration of function
  ‘is_compat_task’]

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

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

[Bug 1662120] Re: rtl8812au 4.3.8.12175.20140902+dfsg-0ubuntu2 ADT test failure with linux-hwe 4.8.0-37.39~16.04.2

2017-02-24 Thread Julio Lajara
Can confirm, I have the same issue.

As a temporary fix (I couldnt find where CONFIG_COMPAT was defined in
the 4.4 lts xenial kernel in 16.04.1), I added the following to the very
top of
/usr/src/rtl8812au-4.3.8.12175.20140902+dfsg/os_dep/linux/rtw_android.c
:

```
# Note: This not a correct general purpose solution but for building on amd64 
16.04.2 it works fine.

#ifdef CONFIG_COMPAT
#undef CONFIG_COMPAT
#endif

```

This allowed me to build the driver on amd64 16.04.2, followed by the
following:

```
sudo dkms remove -m rtl8812au/4.3.8.12175.20140902+dfsg --all
sudo dkms install -m rtl8812au -v 4.3.8.12175.20140902+dfsg
sudo modprobe -r 8812au
sudo modprobe 8812au
# unplug/replug the usb device
sudo systemctl restart NetworkManager
```

The driver will now work with the 4.8 HWE kernel on 16.04.2 and so far
the networking in general seems far more stable than with the xenial
kernel.

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

Title:
  rtl8812au 4.3.8.12175.20140902+dfsg-0ubuntu2 ADT test failure with
  linux-hwe 4.8.0-37.39~16.04.2

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

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


[Bug 1611570] Re: Installing 5.2 from PPA on 14.04 removes Gnome Desktop

2016-08-10 Thread Julio Lajara
Confirmed fixed in latest build 14 hrs ago.

** Changed in: libreoffice (Ubuntu)
   Status: New => Fix Released

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

Title:
  Installing 5.2 from PPA on 14.04 removes Gnome Desktop

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

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


[Bug 1611570] [NEW] Installing 5.2 from PPA on 14.04 removes Gnome Desktop

2016-08-09 Thread Julio Lajara
Public bug reported:

Attempting to upgrade from 5.1 to 5.2 using PPA on Ubuntu 14.04 causes
it to want to remove Gnome Desktop:

Snippet from apt-get dist-upgrade:

...
The following packages will be REMOVED:
  gnome gnome-desktop-environment libreoffice-gnome libreoffice-gtk
...

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


** Tags: 14.04 ppa trusty ubuntu

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

Title:
  Installing 5.2 from PPA on 14.04 removes Gnome Desktop

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

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


[Bug 573381] Re: Git-Gui fails when cloning a repository

2011-01-10 Thread Julio Lajara
I can confirm that this bug is fixed at least as of 1.7.3.5, maybe
earlier. So add ppa:git-core/ppa and upgrade your git to the latest
version and it will resolve this bug. I dont have a link to the patch
that went in as I couldnt find it when I did a search on the commits.

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

Title:
  Git-Gui fails when cloning a repository

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


Re: [Bug 92383] Re: wr...@lba=288830h failed with SK=7h/ASC=00h/ACQ=00h]: Input/output error

2010-07-25 Thread Julio Lajara
I was actually looking into this the other day because this problem was 
getting so annoying to me. I found one bug thread someone (dont recall 
the number) where one user switch the bios IDE mode from IDE to AHCI and 
said that after doing so they were unable to get their SATA burner to 
burn dual layers. It caught my attention only because I have done this 
to my own bios config (and i was able to burn dual layers before) but i 
havent had the chance to sit down and disable AHCI to see if it actually 
fixes the issue. The other odd thing about this dual layer issue is that 
at least for me, it seems to give out at around exactly the 4gb mark on 
every dual layer burn attempt.

On 07/25/2010 04:27 PM, LEo wrote:
 I guess I'm having the same problem.
 I'm trying to burn a DVD+R DL on my recorder and I get this error... I guess 
 it happens only with dual layer midia.
 My recorder:
 $ cat /proc/scsi/scsi
 Host: scsi1 Channel: 00 Id: 00 Lun: 00
Vendor: Optiarc  Model: BD ROM BC-5500S  Rev: 1.75
Type:   CD-ROM   ANSI  SCSI revision: 05
 More info goes in the log file attached.

 ** Attachment added: brasero-session.log
 http://launchpadlibrarian.net/52501547/brasero-session.log



-- 
wr...@lba=288830h failed with SK=7h/ASC=00h/ACQ=00h]: Input/output error
https://bugs.launchpad.net/bugs/92383
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 477300] Re: libscrollkeeper0 is missing in Karmic, but glade-doc depends on it

2009-12-28 Thread Julio Lajara
I looked it up and it seems that the real issue is that scrollkeeper is
outdated and possibly no longer being maintained. It seems as though it
has been replaced by rarian, thus glade may need to be
updated/repackaged to work with librarian0 if scrollkeeper is no longer
going to be included

-- 
libscrollkeeper0 is missing in Karmic, but glade-doc depends on it
https://bugs.launchpad.net/bugs/477300
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


Re: [Bug 178038] Re: npviewer.bin crashed with SIGSEGV

2009-11-01 Thread Julio Lajara


-- 
npviewer.bin crashed with SIGSEGV 
https://bugs.launchpad.net/bugs/178038
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 157803] Re: unable to burn a DVD due to input/output errors

2009-08-09 Thread Julio Lajara
*** This bug is a duplicate of bug 92383 ***
https://bugs.launchpad.net/bugs/92383

Ok so I have upgraded the firmware on my dvd burner to eliminate that as
a source of the problem and im still having the same issue.

I did some further research and found discussion of the same problem on
the package's mailing list:

http://lists.debian.org/cdwrite/2009/01/ [Thread Listing]
http://lists.debian.org/cdwrite/2009/01/msg00026.html [Specific Response]

There was a developer there that suggested a test for the problem. I
tried downloading the source but I was unable to apply all the necessary
patches to the package from the repos in order to test his suggestion.

One thing I noticed, but am not sure if its the problem, is the way the
burning looked on the DVD+DL  when it failed. Im not sure if its
supposed to burn continuously from the center out in ring, but the
failed dvd had huge gaps in writing where you can visible see it skipped
a lot of space, went out further and started writing and repeated. So if
its not supposed to leave gaps between rings then that means its most
likely hitting the outer edge before its supposed to while writing, but
im no expert on this, just making an educated guess.

In my search for a non growisofs burning application I installed the
latest Nero 3 Linux demo and although it was a bit slow it did manage to
burn the DVD+DL fine so it doesnt appear to be an issue with my drive
and media incompatibility.

Can someone please mark this as a bug of dvd+rw-tools.

** Attachment added: lspci-vvnn.log
   http://launchpadlibrarian.net/30075443/lspci-vvnn.log

** This bug has been marked a duplicate of bug 92383
   wr...@lba=288830h failed with SK=7h/ASC=00h/ACQ=00h]: Input/output error

-- 
unable to burn a DVD due to input/output errors
https://bugs.launchpad.net/bugs/157803
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 157803] Re: unable to burn a DVD due to input/output errors

2009-08-08 Thread Julio Lajara
Ive had this problem with K3b and Brasero. It tends to happen to me more
when burning dual layer dvd+r than when buring regular dvd-r for which
it rarely happens.

Linux sgsgthdth 2.6.28-14-generic #47-Ubuntu SMP Sat Jul 25 01:19:55 UTC
2009 x86_64 GNU/Linux


** Attachment added: dmesg_and_brasero_log.txt
   http://launchpadlibrarian.net/30072300/dmesg_and_brasero_log.txt

-- 
unable to burn a DVD due to input/output errors
https://bugs.launchpad.net/bugs/157803
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 178038] UNSUBSCRIBE DOES NOT WORK SO STOP AND READ!!!!

2009-06-17 Thread Julio Lajara
People come on, READ!!! It has been emailed at least 5 times that you 
need to login to your launchpad account to unsubscribe. You *CANT* 
unsubscribe by emailing the mailing list, so please stop spamming 
everyone with these.

-- 
npviewer.bin crashed with SIGSEGV 
https://bugs.launchpad.net/bugs/178038
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 178038] Re: npviewer.bin crashed with SIGSEGV

2009-04-15 Thread Julio Lajara
The solution has been posted on more than once already uninstall
nspluginwrapper, the 32bit Flash plugin and manually install the 64bit
one available from Adobe. It is leaps and bounds more stable compared to
using the 32bit plugin. Honestly I dont quite understand why so many
people are adverse to taking this route as using nspluginwrapper w/
32bit Flash was originally meant as a workaround until a 64bit plugin
arrived.

On another note, I dont understand why Ubuntu has not chosen to just
distribute the 64bit plugin in its beta form as is. It isnt complete,
still has bugs, but is better than nothing. If they were able to throw a
beta Firefox on us a while ago, I dont see what their issue is with
this...

FYI, for those looking for it Id recommend using the second to last
release of the 64bit flash plugin and not the most recent release as it
is a little less stable that its predecessor:
http://download.macromedia.com/pub/labs/flashplayer10/libflashplayer-10.0.d21.1.linux-x86_64.so.tar.gz

-- 
npviewer.bin crashed with SIGSEGV 
https://bugs.launchpad.net/bugs/178038
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 111277] Re: Download fails on pausing the download

2009-01-24 Thread Julio Lajara
Im not sure who added bug Bug #303294  as a duplicate of this one but
they are definitely not the same problem if you read carefully.

This bug describes pausing a DL as the *problem* where as in Bug #303294
I described pausing as the solution to the problem that downloads would
automatically pause/stall themselves and have to be recycled for it to
complete the download.

Those are not the same set of conditions to cause the problem the OP of
both bugs describe, therefore Id like to request you remove it as a
duplicate.

-- 
Download fails on pausing the download
https://bugs.launchpad.net/bugs/111277
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 303294] [NEW] [FF 3.0.4] Downloads hang and must be paused/resumed to continue

2008-11-28 Thread Julio Lajara
Public bug reported:

Binary package hint: mozilla-firefox

When downloading files over 100mb, after a minute or two the download
stalls. The progress bar stops moving, and the transfer rate stops
fluctuating and remains fixed at the last rate it was downloading at. In
order to resume the download I have to force resume by pausing and
resuming the download.

It may be related to this bug, however I havent personally experienced
this problem when loading pages but it seems similar to me:
https://bugs.launchpad.net/firefox/+bug/216699

Let me know if theres anything I can do or post.

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

-- 
[FF 3.0.4] Downloads hang and must be paused/resumed to continue
https://bugs.launchpad.net/bugs/303294
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 228806] Re: [MASTER] various unrelated crashes for firefox-3.0 and xulrunner-1.9

2008-11-17 Thread Julio Lajara
@kuba, the gif extension itself is not what matters, I was merely saying
that the image was a GIF image with the extension renamed. So if you
download the png to your computer, then rename it to GIF, you can see
the image in a picture viewer. If you dont do that then a picture viewer
will most likely not display the 50,000 px image.

You can prove its a gif by dumping the first bit of the binary data on the 
command line running:
more test.png

In which case the first thing you should see is the GIF identifier. I
think this image may have embedded code in it that causes Firefox to
crash if its not related to the actual size of the image, which I would
find really difficult to believe is actually the problem here.

-- 
[MASTER] various unrelated crashes for firefox-3.0 and xulrunner-1.9
https://bugs.launchpad.net/bugs/228806
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 228806] Re: [MASTER] various unrelated crashes for firefox-3.0 and xulrunner-1.9

2008-11-16 Thread Julio Lajara
Well that definitely did crash my Firefox but how is that related to
this bug?

I would open another thread on this issue as a new bug.

If anyone else has not caught how he accomplished that yet, that photo
is actually not a PNG. Its a GIF image with the extension renamed to
.png. So it is a viable GIF image (50,000 px wide by 120px high) which
makes it seem that whatever mechanism Firefox uses to determine what the
file's real type is is currently flawed.

Ill retry it again with a random GIF and see if its related to that
particular image do to its size or not and post back.

-- 
[MASTER] various unrelated crashes for firefox-3.0 and xulrunner-1.9
https://bugs.launchpad.net/bugs/228806
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 228806] Re: [MASTER] various unrelated crashes for firefox-3.0 and xulrunner-1.9

2008-11-16 Thread Julio Lajara
Ok so I tried it with a random gif file (http://pds-
rings.seti.org/saturn/images/ring_sat.gif) and renamed it to .png and
tried again, locally on my pc and not through a web server. and was
unable to reproduce the issue. Firefox is correctly able to load the
image use the File Open dialogue as well as through an html file using
the img tag.

Therefore, whatever is causing that to work is due to the data of that
particular image.

-- 
[MASTER] various unrelated crashes for firefox-3.0 and xulrunner-1.9
https://bugs.launchpad.net/bugs/228806
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 277917] Re: Buttonpress on XBox 360 Controller as evdev input causes Xorg to crash.

2008-10-23 Thread Julio Lajara
I can also confirm this on Intrepid A6 x86_64.

The analog pads work fine for moving the mouse, but when you press any
button it causes Xorg, to crash and log you out. It will continue to
crash and restart until you unplug the controller as Xorg restarts
itself.

-- 
Buttonpress on XBox 360 Controller as evdev input causes Xorg to crash.
https://bugs.launchpad.net/bugs/277917
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 277917] Re: Buttonpress on XBox 360 Controller as evdev input causes Xorg to crash.

2008-10-06 Thread Julio Lajara
I can confirm this. Using Intrepid A6 64bit. It causes your session to
be terminated and brings you to a GDM login screen and continues to
crash in and out until you unplug the controller as the GDM login screen
returns. It happens when you press any button other than the dpads. The
dpads work fine and move the mouse cursor around.

-- 
Buttonpress on XBox 360 Controller as evdev input causes Xorg to crash.
https://bugs.launchpad.net/bugs/277917
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 205356] Re: compiz.real crashed with signal 7

2008-09-25 Thread Julio Lajara
I can confirm this in Intrepid Alpha 6 64bit. It crashed right after
booting up. I went to the Sounds panel to disable some sounds, I played
one sound to listen to it and then it crashed and wouldnt play another
one.

-- 
compiz.real crashed with signal 7
https://bugs.launchpad.net/bugs/205356
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 251910] Re: gvfsd-trash crashed with SIGSEGV in g_idle_funcs()

2008-09-23 Thread Julio Lajara
I can confirm on Intrepid Alpha 6 AMD64.

-- 
gvfsd-trash crashed with SIGSEGV in g_idle_funcs()
https://bugs.launchpad.net/bugs/251910
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 159263] Re: Gnome-screensaver does not stay on

2008-09-22 Thread Julio Lajara
I can also confirm on Intrepid Alpha 6 64bit. Im running an Nvidia
GeForce 8500 GT and have the same screen saver problem. The fix of
unchecking Undirect Fullscreen Windows worked for me.

-- 
Gnome-screensaver does not stay on
https://bugs.launchpad.net/bugs/159263
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 158126] Re: Npviewer randomly freezes while surfing sites like youtube

2008-09-20 Thread Julio Lajara
Happening on Intrepid Alpha 6 64bit for me as well.

-- 
Npviewer randomly freezes while surfing sites like youtube
https://bugs.launchpad.net/bugs/158126
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 246269] Re: Switched from vesafb to uvesafb, but uvesafb can't work without v86d

2008-09-18 Thread Julio Lajara
I am having this issue on my machine while using Intrepid alpha 6 64bit.
I didnt have this issue while using 8.0.4.1 64bit live cd.

My machine is:

MSI P7N SLI-FI 750i SLI Chipset LGA775
NVIDIA GeForce 8500 GT 512MB 16X PCI Express
Core 2 Quad Q6600 @ 2.4GHz 1066FSB 8MB L2 Cache 64-bit
4gb PC6400 DDR2/800 Dual Channel Memory
Sata II HD on Sata2

** Attachment added: dmesg.txt
   http://launchpadlibrarian.net/17741196/dmesg.txt

-- 
Switched from vesafb to uvesafb, but uvesafb can't work without v86d
https://bugs.launchpad.net/bugs/246269
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 246269] Re: Switched from vesafb to uvesafb, but uvesafb can't work without v86d

2008-09-18 Thread Julio Lajara
*Clarification on my last post... I am not able to boot into the alpha 6
live cd, I end up at a Busybox prompt as a result of the errors.

-- 
Switched from vesafb to uvesafb, but uvesafb can't work without v86d
https://bugs.launchpad.net/bugs/246269
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 246263] Re: Ubuntu fail to start on a Dell latitude c600

2008-09-06 Thread Julio Lajara
Hi I can confirm the above issue with my Dell Latitude C600 when running
8.04.1 live cd with no modifications to boot params. It just hangs
during initial loading or gets to a brown ubuntu background and hangs
there.

I have just tried the Intrepid 8.10 Alpha 5 desktop live cd and was able
to get to a command prompt but got no further. There are still numerous
errors.

-- 
Ubuntu fail to start on a Dell latitude c600
https://bugs.launchpad.net/bugs/246263
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 246263] Re: Ubuntu fail to start on a Dell latitude c600

2008-09-06 Thread Julio Lajara
An update to the above: These are the errors that show up over and over
again:

aufs au_xino_do_write:238:[the process that threw the error... I/O error blah 
blah]
aufs au_xino_write:275:[the process that threw the error... I/O error blah blah]


I omitted the last half of the error as its the same over and over and I 
figured thats the line number of the error which is probably more 
important.[the process that threw the error... I/O error blah blah]

-- 
Ubuntu fail to start on a Dell latitude c600
https://bugs.launchpad.net/bugs/246263
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