Re: hardy release freeze, coming soon to an archive near you

2008-04-11 Thread Vincenzo Ciancia
Il giorno gio, 10/04/2008 alle 13.59 -0700, Steve Langasek ha scritto:
 
 
 It's my understanding that iwlwifi 1.2.0 is the version we need to
 include
 in linux-ubuntu-modules for reasons of Centrino certification.  I see
 that
 the version in linux-backports-modules appears to fix the problem for
 you;
 do you think this is an adequate solution?
 

It seems so, thank you.

 
 https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-intel/+bug/137234
 
  because it always worked before gutsy, and it is a pity that when I
 go
  around the world at conferences, instead of showing my shiny ubuntu
  desktop and make good publicity to it, I have to say that ubuntu
 breaks
  my vgaout hence I want someone else's laptop (no, I don't reboot in
  windows, that would be too bad publicity for myself :) ).
 
 Thanks, I've asked one of the X developers to follow up with you on
 this.

Thanks, I will do my best to help developers solve the problem.

Vincenzo



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


Re: hardy release freeze, coming soon to an archive near you

2008-04-11 Thread Vincenzo Ciancia
Il giorno gio, 10/04/2008 alle 16.47 -0600, Gary Sandine ha scritto:
 
 By any chance have you tried the xrandr suggestion at the top of the
 bug report?  I have been using my laptop with the intel driver for
 presentations running gutsy and hardy, and when I plug in a
 projector:
 

Yes of course: the problem in hardy is in some broken choice of
frequencies, vga out it correctly enabled. I am lucky because at office
we have LCD and CRT monitors, and a projector, so I will be able to test
every sort of output.

Vincenzo


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


Tablet pc (wacom based) not configured by default in hardy: why?

2008-04-11 Thread Vincenzo Ciancia
I can't find an answer to this question around on google. Since edgy,
there used to be wacom drivers in default xorg.conf. Together with the
fix to a long standing bug, this allowed wacom tablet PCs to work by
default in feisty. In gutsy, wacom lines were commented out, and in
hardy they are not there at all.

As a result, toshiba tablets don't work by default and this is a pity.
Bug link follows, but the mail is to ask why the lines were removed from
xorg configuration? Just adding them back makes my system work again,
and I can't find records of why it was disabled. Thanks anyway, hardy is
in far better shape than 15 days ago, and many bugs are on their way to
be fixed even though after release.

https://bugs.edge.launchpad.net/ubuntu/+source/wacom-tools/+bug/188787

Vincenzo




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


Re: Tablet pc (wacom based) not configured by default in hardy: why?

2008-04-11 Thread Sebastian Breier
Am Freitag, den 11.04.2008, 15:48 +0200 schrieb Vincenzo Ciancia:
 As a result, toshiba tablets don't work by default and this is a pity.
 Bug link follows, but the mail is to ask why the lines were removed from
 xorg configuration? Just adding them back makes my system work again,
 and I can't find records of why it was disabled. Thanks anyway, hardy is
 in far better shape than 15 days ago, and many bugs are on their way to
 be fixed even though after release.

Afaik, those lines were removed to make the xorg.conf completely basic,
because devices should be added and configured automatically by xorg in
hardy. Seems as if the autoconfiguration doesn't see the tablet, and so
they should be put back in.
-- 
Sebastian Breier [EMAIL PROTECTED]


signature.asc
Description: Dies ist ein digital signierter Nachrichtenteil
-- 
Ubuntu-devel-discuss mailing list
Ubuntu-devel-discuss@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-devel-discuss


Question on building custom kernels.

2008-04-11 Thread Ben Greear
My goal is to build a live ubuntu CD that has a patched kernel and my 
own applications
pre-installed on it.  I feel I am very close, but I can't get the kernel 
to work right.


I am using Ubuntu 7.10 desktop version.
At first, I was trying to use kernel 2.6.23.17 + my own hacks with a 
.config based off of
Fedora 8, and then with a .config from the ubuntu 2.6.22 kernel.  I then 
tried back-porting my patches
into the official 2.6.22.9 ubunto kernel-tree and using the default 
debian .config.  I changed the
.config slightly (disabled debugging symbols, support 16 cpus, 2/2G 
memory mapping, 1000

ticks per sec and enabled some modules relating to my own patch-set.)

In all cases, the live CD (booted under qemu) appears to start OK, but 
without any obvious

errors it goes to the initramfs prompt instead of booting into linux proper.

I am attaching the steps I am using to try to do all of this.  Once I 
run through these steps once,
I have been going into the chroot again to install new test kernels, and 
then run all of the
live-cd related commands after '#Clean up chroot  I tried the steps 
w/out updating the
kernel and it booted fine, so it seems to be specifically related to the 
kernel.


Any ideas what I could be doing wrong or suggestions for ways to further 
debug this?


Thanks,
Ben

--
Ben Greear [EMAIL PROTECTED] 
Candela Technologies Inc  http://www.candelatech.com





Mostly just follow notes on this page:

http://www.debuntu.org/how-to-customize-your-ubuntu-live-cd-p2

Also remove openoffice, totem, rhythmbox, sound-juicer, old linux kernel
(after update)


# Should be able to copy  paste this on an Ubuntu machine to
# get desired results.

sudo apt-get install squashfs-tools
mkdir /tmp/livecd
sudo mount -o loop ~/Desktop/ubuntu-7.10-desktop-i386.iso /tmp/livecd
mkdir ~/livecd
mkdir ~/livecd/cd
rsync --exclude=/casper/filesystem.squashfs -a /tmp/livecd/ ~/livecd/cd
mkdir ~/livecd/squashfs
mkdir ~/livecd/custom
sudo modprobe squashfs
sudo mount -t squashfs -o loop /tmp/livecd/casper/filesystem.squashfs 
~/livecd/squashfs/
sudo cp -a ~/livecd/squashfs/* ~/livecd/custom
sudo cp /etc/resolv.conf /etc/hosts ~/livecd/custom/etc/

# Enter the chroot
sudo chroot ~/livecd/custom
mount -t proc none /proc/
mount -t sysfs none /sys/
export HOME=/root 

# Purge things we don't need.
echo Y|apt-get remove --purge gnome-games*
echo Y|apt-get remove --purge `dpkg-query -W --showformat='${Package}\n' | grep 
language-pack | egrep -v '\-en'` 
echo Y|apt-get remove --purge `dpkg-query -W --showformat='${Package}\n' | grep 
openoffice`
echo Y|apt-get remove --purge `dpkg-query -W --showformat='${Package}\n' | grep 
totem`
echo Y|apt-get remove --purge `dpkg-query -W --showformat='${Package}\n' | grep 
rhythmbox`
echo Y|apt-get remove --purge `dpkg-query -W --showformat='${Package}\n' | grep 
sound-juicer`
echo Y|apt-get remove --purge `dpkg-query -W --showformat='${Package}\n' | grep 
gimp`
echo Y|apt-get remove --purge `dpkg-query -W --showformat='${Package}\n' | grep 
evolution`
echo Y|apt-get remove --purge `dpkg-query -W --showformat='${Package}\n' | grep 
mono`

echo Y|apt-get install portmap nfs-common nfs-kernel-server
mkdir /mnt/d2
mount 192.168.100.3:/mnt/d2 /mnt/d2

echo deb file:/mnt/d2/pub/candela_cdrom.5.0.7/debs candela multiverse  
/etc/apt/sources.list
echo deb http://archive.ubuntu.com/ubuntu gutsy universe multiverse  
/etc/apt/sources.list
apt-get update

echo Y|apt-get dist-upgrade

echo Y|apt-get install wireshark traceroute dhcp bridge-utils ssh

# Install LANforge
adduser lanforge
echo y|apt-get install lanforge-gui
apt-get install lanforge-server
# apt-get install lanforge-xorp
apt-get install lanforge-server
apt-get install linux-image-2.6.23.17
update-initramfs -u -k 2.6.23.17

# Set root password
sudo passwd root

# Remove old kernel

# Clean up chroot
apt-get clean
rm -fr /tmp/*
umount /mnt/d2
umount nfsd
umount /proc
umount /sys
umount /proc
umount /sys
umount tmpfs
rm -f /etc/hosts /etc/resolv.conf

# Exit from chroot
exit

# Get ready to make the ISO
chmod +w ~/livecd/cd/casper/filesystem.manifest
sudo chroot ~/livecd/custom dpkg-query -W \
--showformat='${Package} ${Version}\n'  ~/livecd/cd/casper/filesystem.manifest
sudo cp ~/livecd/cd/casper/filesystem.manifest 
~/livecd/cd/casper/filesystem.manifest-desktop

# Copy new kernel into isolinux dir for the live cd
sudo cp /home/lanforge/livecd/custom/initrd.img 
/home/lanforge/livecd/cd/casper/initrd.gz
sudo cp /home/lanforge/livecd/custom/vmlinuz 
/home/lanforge/livecd/cd/casper/vmlinuz

# Make the squashfs file system
sudo rm ~/livecd/cd/casper/filesystem.squashfs
sudo mksquashfs ~/livecd/custom ~/livecd/cd/casper/filesystem.squashfs

# Edit ~/livecd/cd/README.diskdefines
sudo vi ~/livecd/cd/README.diskdefines

sudo rm ~/livecd/cd/md5sum.txt
sudo -s
(cd ~/livecd/cd  find . -type f -print0 | xargs -0 md5sum  md5sum.txt)

cd ~/livecd/cd
sudo mkisofs -r -V Ubuntu-Live-LANforge -b isolinux/isolinux.bin -c 
isolinux/boot.cat \

Re: Please keep the old IDE chipset drivers so that external CD writers can work

2008-04-11 Thread Rick Knight
Wenzhuo Zhang wrote:
 Rick Knight wrote:

   
   $ wget
 http://mirrors.kernel.org/ubuntu/pool/main/l/linux/linux-image-2.6.24-15-386_2.6.24-15.27_i386.deb

   $ sudo dpkg -i linux-image-2.6.24-15-386_2.6.24-15.27_i386.deb

   
   
 I tried this tonight. I ran into dependency problems.
 linux-image-2.6.24-15-386_2.6.24-15.27_i386.deb depends on
 module-init-tools_3.3-pre11-4ubuntu5_i386.deb which depends on
 libc6_2.7-10ubuntu3_i386.deb. I don't mind replacing module_init_tools,
 but libc6 scares me a little. Is it safe to replace the Gutsy libc6 with
 the Hardy libc6? It will probably lead to more dependency problems.

 

 Try:

 $ sudo dpkg --ignore-depends=module-init-tools -i 
 linux-image-2.6.24-15-386_2.6.24-15.27_i386.deb


 Wenzhuo
   
Wenzhuo,

I've found a fix (or work-around) for this issue. I found this kernel 
parameter all_generic_ide mentioned as a possible fix for a problem 
with Seagate drives. I tried using it with my default, un-modified Gutsy 
kernel but it didn't solve the problem. I tried it with the custom Gutsy 
kernel I built with the pata_via module enabled and that worked. I don't 
know why, but the combination of the pata_via module and 
all_generic_ide allows my system to boot and run the Gutsy kernel. Now 
I'll be ready to upgrade to Hardy after it's had a week or to to stabilize.

On another note, Brian Murray (ubuntu developer?) has marked my bug 
(212042) as won't fix because it doesn't meet the criteria for a stable 
release update. What does this mean?

Thanks,
Rick Knight

P.S. Where is your petition to keep the old IDE drivesr?

 

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


Evolution spam filter not working?

2008-04-11 Thread Milan Bouchet-Valat
Has anybody managed to get the bogofilter plugin for Evolution work in
Hardy? For me, Evolution reports that learning spams works fine,
everything is present (plugin and binaries), spamassasin is disabled,
junk filtering is enabled, but spams don't get caught.

I wonder about this because I did never have it working in precedent
versions either, and I don't know if this is worth a bug. Maybe just
clearing my user configuration would solve it - upgrading is often cause
of trouble.


Cheers


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