[Bug 1914023] Re: Can not create new user

2021-02-04 Thread HARRY SUFEHMI
why did I wrote 20.02 when I meant to wrote 20.04, it's a mystery

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

Title:
  Can not create new user

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

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

[Bug 1914023] [NEW] Can not create new user

2021-02-01 Thread HARRY SUFEHMI
Public bug reported:

On Ubuntu 20.04 - due to major internal change on MySQL (the one bundled
on 20.02) on a new BUILD  (not major version, not even minor version -
but build version) ; phpmyadmin on 20.04 can not create new user

DETAILS are available here :
https://github.com/phpmyadmin/phpmyadmin/issues/16166#issuecomment-640248002

PROPOSED SOLUTION : applying the patch listed here :
https://github.com/phpmyadmin/phpmyadmin/issues/16166#issuecomment-640241943

Thank you !

(bad Oracle, bad)

** Affects: phpmyadmin (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/1914023

Title:
  Can not create new user

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

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

[Bug 808498] Re: default LS_COLORS are annoyingly unreadable

2013-08-20 Thread Harry Sufehmi
How does the Ubuntu developer works ? Not in Terminal  ?

I work in Terminal everyday, and it's a painful experience because of
this unreadable color scheme.

Until this gets fixed, here's a way to workaround it :
http://ubuntuforums.org/showthread.php?t=1297960p=8481222#post8481222

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

Title:
  default LS_COLORS are annoyingly unreadable

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-terminal/+bug/808498/+subscriptions

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


[Bug 1021019] Re: generic wireless mouse not working

2012-11-10 Thread Harry Sufehmi
Hi, I happened to have a lInux kernel source in my laptop, so I took a
look into its Documentation/SubmittingPatch document.

Turn out the reason for Signed-off-by line is to ensure that your
patch is licensed with the same license as that particular version of
Linux kernel.

Since the license (GPL) is one of the most powerful feature of the Linux
kernel, it really makes sense.

So let's do it draekko :)

Here's the complete content of that file, detailing all of the procedure
to submit a patch to the kernel :


sufehmi@E125:/usr/src/linux-source-3.2.0/linux-source-3.2.0/Documentation$ cat 
SubmittingPatches 

How to Get Your Change Into the Linux Kernel
or
Care And Operation Of Your Linus Torvalds


For a person or company who wishes to submit a change to the Linux
kernel, the process can sometimes be daunting if you're not familiar
with the system.  This text is a collection of suggestions which
can greatly increase the chances of your change being accepted.

Read Documentation/SubmitChecklist for a list of items to check
before submitting code.  If you are submitting a driver, also read
Documentation/SubmittingDrivers.



SECTION 1 - CREATING AND SENDING YOUR CHANGE



1) diff -up


Use diff -up or diff -uprN to create patches.

All changes to the Linux kernel occur in the form of patches, as
generated by diff(1).  When creating your patch, make sure to create it
in unified diff format, as supplied by the '-u' argument to diff(1).
Also, please use the '-p' argument which shows which C function each
change is in - that makes the resultant diff a lot easier to read.
Patches should be based in the root kernel source directory,
not in any lower subdirectory.

To create a patch for a single file, it is often sufficient to do:

SRCTREE= linux-2.6
MYFILE=  drivers/net/mydriver.c

cd $SRCTREE
cp $MYFILE $MYFILE.orig
vi $MYFILE  # make your change
cd ..
diff -up $SRCTREE/$MYFILE{.orig,}  /tmp/patch

To create a patch for multiple files, you should unpack a vanilla,
or unmodified kernel source tree, and generate a diff against your
own source tree.  For example:

MYSRC= /devel/linux-2.6

tar xvfz linux-2.6.12.tar.gz
mv linux-2.6.12 linux-2.6.12-vanilla
diff -uprN -X linux-2.6.12-vanilla/Documentation/dontdiff \
linux-2.6.12-vanilla $MYSRC  /tmp/patch

dontdiff is a list of files which are generated by the kernel during
the build process, and should be ignored in any diff(1)-generated
patch.  The dontdiff file is included in the kernel tree in
2.6.12 and later.  For earlier kernel versions, you can get it
from http://www.xenotime.net/linux/doc/dontdiff.

Make sure your patch does not include any extra files which do not
belong in a patch submission.  Make sure to review your patch -after-
generated it with diff(1), to ensure accuracy.

If your changes produce a lot of deltas, you may want to look into
splitting them into individual patches which modify things in
logical stages.  This will facilitate easier reviewing by other
kernel developers, very important if you want your patch accepted.
There are a number of scripts which can aid in this:

Quilt:
http://savannah.nongnu.org/projects/quilt

Andrew Morton's patch scripts:
http://userweb.kernel.org/~akpm/stuff/patch-scripts.tar.gz
Instead of these scripts, quilt is the recommended patch management
tool (see above).


2) Describe your changes.

Describe the technical detail of the change(s) your patch includes.

Be as specific as possible.  The WORST descriptions possible include
things like update driver X, bug fix for driver X, or this patch
includes updates for subsystem X.  Please apply.

The maintainer will thank you if you write your patch description in a
form which can be easily pulled into Linux's source code management
system, git, as a commit log.  See #15, below.

If your description starts to get long, that's a sign that you probably
need to split up your patch.  See #3, next.

When you submit or resubmit a patch or patch series, include the
complete patch description and justification for it.  Don't just
say that this is version N of the patch (series).  Don't expect the
patch merger to refer back to earlier patch versions or referenced
URLs to find the patch description and put that into the patch.
I.e., the patch (series) and its description should be self-contained.
This benefits both the patch merger(s) and reviewers.  Some reviewers
probably didn't even receive earlier versions of the patch.

If the patch fixes a logged bug entry, refer to that bug entry by
number and URL.


3) Separate your changes.

Separate _logical changes_ into a single patch file.

For example, if your changes include both bug fixes and performance
enhancements for a single driver, separate those 

[Bug 1021019] Re: generic wireless mouse not working

2012-11-01 Thread Harry Sufehmi
Thank you Marco for reporting this bug, and Draekko for giving us the
patch to fix it !

I suffered from this problem. It's quite frustrating when your input devices 
doesn't work.
While the solution is quite easy, even a kernel newbie like me managed to did 
it.

I can not imagine why it's still not fixed in the latest update of
Precise / 12.04

Anyway, after patching the current ubuntu kernel  recompiled it, now my
new mouse works flawlessly ! :D

Unfortunately, there are a lot of tutorials on how to recompile your
kernel, and most are wrong in one way or another. For newbies, it must
be very frustrating.

I followed the excellent tutorial here to recompile the kernel on my Ubuntu 
Precise Pangolin (12.04) : 
http://www.howtogeek.com/howto/ubuntu/how-to-customize-your-ubuntu-kernel/

With a minor edit; this is the first command which will work with any version 
of your current kernel : 
sudo apt-get install linux-source-`uname -r` kernel-package libncurses5-dev 
fakeroot

DO NOT follow the instructions here : 
https://wiki.ubuntu.com/Kernel/BuildYourOwnKernel
It does NOT work. I wasted a whole day  only got more confused by the errors 
caused by it.

So here's what I did, copy-paste style :

===
### create a temporary directory
mkdir ~/tmp
cd tmp

### install required packages
sudo apt-get update
sudo apt-get install linux-source-`uname -r` kernel-package libncurses5-dev 
fakeroot

### copy current kernel configurations
cp /boot/config-`uname -r`  ~/tmp/linux-`uname -r`/.config

### let's go to the kernel source's directory
cd ~/tmp/linux-`uname -r`

### you can reconfigure anything; 
### if you want to leave everything as before then just skip this step
make menuconfig

### let's compile !

### clean up everything first
make-kpkg clean

### change 5 into the number of your CPU's cores + 1
### it will make the recompiling process much faster
export  CONCURRENCY_LEVEL=5

### recompiling now
time fakeroot make-kpkg--initrd--append-to-version=-custom 
kernel_image kernel_headers 

### let's install the new kernel packages
cd ..
sudo dpkg -i *deb

### reboot
sudo reboot

### hope it helps !

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

Title:
  generic wireless mouse not working

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

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


[Bug 864505] Re: [Oneiric] Cannot setup dual monitor with AMD 5870

2012-05-05 Thread Harry Sufehmi
*** This bug is a duplicate of bug 838659 ***
https://bugs.launchpad.net/bugs/838659

I just had this problem, the solution I found is quite simple :

# Open Terminal

# Type : 
sudo  aticonfig  --initial=dual-head

# Reboot

Then the Display Setting should be able to activate the second monitor
properly.

Hope this helps someone.

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

Title:
  [Oneiric] Cannot setup dual monitor with AMD 5870

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/864505/+subscriptions

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


[Bug 560433] Re: [clarkdale] Xorg freeze

2011-10-20 Thread Harry Sufehmi
My guess is there is a bug in the video driver that shows when the 3d
section of the video card is used.

Yup, you are 100% correct there.

I've forgotten about this bug - until you commented  I got the
notification about it. I suffered from similar problem to you. But I
managed to resolve it by installing the xorg-edgers PPA :

https://launchpad.net/~xorg-edgers

You might wish to try the driver first : https://launchpad.net/~xorg-
edgers/+archive/drivers-only

(I went for the whole setup though - Acer laptop here with Intel i915
chip)

Another safer bet compared to the whole xorg-edgers is probably the
Ubuntu-X PPA : https://launchpad.net/~ubuntu-x-swat/+archive/x-updates

Hope it helps someone else. Good luck.

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

Title:
  [clarkdale] Xorg freeze

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-intel/+bug/560433/+subscriptions

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


[Bug 453605] Re: Make default mount umasks configurable

2011-02-05 Thread Harry Sufehmi
Amazing that this old bug manages to exist through 2011.

Anyway - I've googled around, and the only fix seems to be the one described on 
this post :
https://bugs.launchpad.net/ubuntu/+source/devicekit-disks/+bug/482501/comments/13

However, when I tried to install the source for devicekit-disks, I got
error message : Unable to find a source package for devicekit-disks

I looked on the repository server, and the only source I could find is 
devicekit-disks_007.orig.tar.gz
(example: 
http://kambing.ui.ac.id/ubuntu/pool/main/d/devicekit-disks/devicekit-disks_007.orig.tar.gz)

So I downloaded it - then I found out that the content is different than the 
explanation in the post above.
(https://bugs.launchpad.net/ubuntu/+source/devicekit-disks/+bug/482501/comments/13)

Here I'm stuck with 2 years old bug, with a workaround which doesn't
work anymore.

Any hints would be much appreciated.

Thanks !

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

Title:
  Make default mount umasks configurable

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


[Bug 608372] Re: ppp does not replace default route

2011-02-05 Thread Harry Sufehmi
Hi,

I suffered from same problem, and found the solution here :
http://ubuntu-virginia.ubuntuforums.org/showpost.php?p=7836980postcount=3

Quoted:

==

Adding those two lines to /etc/ppp/peers/wvdial worked perfectly!

defaultroute
replacedefaultroute

==

Now pppd always set the default route correctly.

Hope it helps.


Thanks,
Harry

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

Title:
  ppp does not replace default route

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


[Bug 398238] Re: jaunty ltsp - Usb printer local - not print

2010-04-25 Thread Harry Sufehmi
Thanks Anton ! I've experienced similar problems - have replaced the
jetpipe script in our LTSP image. Now it prints with no problem.

Thanks again. Much appreciated.

-- 
jaunty ltsp - Usb printer local - not print
https://bugs.launchpad.net/bugs/398238
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 63245] Re: Cannot alt + tab out of fullscreen games

2010-04-11 Thread Harry Sufehmi
Hi, I just found a way to ALT-TAB from Wolfenstein : Enemy Territory to the 
Gnome Desktop.
Here's how :

(1) Switch to Windowed Mode : pressing Alt-Enter usually works

(2) Activate the console : by pressing the ` (backtick?) key

(3) Now you can press ALT-TAB to your Gnome Desktop

I don't know why, but my guess is activating the console also releases
its grab on mouse  keyboard. So then you can ALT-TAB to your desktop.

Since Wolfenstein is based on Quake-engine; my guess is you can do this
trick too on other games based on that engine.

Hope it helps someone.

-- 
Cannot alt + tab out of fullscreen games
https://bugs.launchpad.net/bugs/63245
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 313680] Re: apt should install packages whilst downloading.

2010-01-22 Thread Harry Sufehmi
It's possible with the help from a few software already included in
Ubuntu :

==
sudo su - root
cd /var/cache/apt/archives/
apt-get -y --print-uris install ubuntu-desktop  debs.list
egrep -o -e http://[^\']+ debs.list | xargs -l3 -P5 wget -c
apt-get -y install ubuntu-desktop
exit
==

Just replace ubuntu-desktop with whatever packages that you'd like to
install

Found this solution after I was told by apt-get that installing 3 GB of 
packages would take 4 days. 
With the commands above, it will be done in several hours.

Credit : 
http://johntellsall.blogspot.com/2009/04/fast-parallel-downloading-for-apt-get.html

-- 
apt should install packages whilst downloading.
https://bugs.launchpad.net/bugs/313680
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 363591] Re: ZTE MF622 USB Modem can't detected in Ubuntu 9.04

2010-01-04 Thread Harry Sufehmi
Sorry I know this is bug-report for Jaunty - however I have similar
problem to corp.graph in Karmic AND this page showed up No #1 in Google,
so I'd like to share the solution I found in this page for benefit of
others.

The fix is quite simple :

I just renamed /lib/udev/rules.d/61-mobile-action.rules, 
to /lib/udev/rules.d/51-mobile-action.rules

Then plugging in the modem works as it was in Jaunty (yes, my ZTE MF622
was working staright away, flawlessly, in Jaunty)

Don't ask me WHY it works though, I'm no expert on udev :-)
But if I may guess - renaming that file into a smaller number (from 61 to 51) 
make udev processes it in a more timely fashion. 

Anyway, hope it helps others.

-- 
ZTE MF622 USB Modem can't detected in Ubuntu 9.04
https://bugs.launchpad.net/bugs/363591
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 281335] Re: ZeroCD devices (on 3G modems) are not ejected automatically

2010-01-04 Thread Harry Sufehmi
I encountered this problem in Ubuntu Karmic.

After trying all suggestions in many pages with no result, I tried this
:

rename /lib/udev/rules.d/61-mobile-action.rules,
to /lib/udev/rules.d/51-mobile-action.rules

Then plugging in the modem works as it was in Jaunty (yes, my ZTE MF622
was working staright away, flawlessly, in Jaunty)

Don't ask me WHY it works though, I'm no expert on udev :-)
But if I may guess - renaming that file into a smaller number (from 61 to 51) 
make udev processes it in a more timely fashion.

Anyway, hope it helps others.

-- 
ZeroCD devices (on 3G modems) are not ejected automatically
https://bugs.launchpad.net/bugs/281335
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 428813] Re: package slapd 2.4.15-1ubuntu3 failed to install : subprocess post-installation script returned error exit status 1

2009-09-13 Thread Harry Sufehmi

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

** Attachment added: DpkgTerminalLog.gz
   http://launchpadlibrarian.net/31745568/DpkgTerminalLog.gz

-- 
package slapd 2.4.15-1ubuntu3 failed to install : subprocess post-installation 
script returned error exit status 1
https://bugs.launchpad.net/bugs/428813
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openldap 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 428813] [NEW] package slapd 2.4.15-1ubuntu3 failed to install : subprocess post-installation script returned error exit status 1

2009-09-13 Thread Harry Sufehmi
Public bug reported:

I got slapd installed with suffix dc=example, dc=com, which was not
what we needed.

I tried to rectify this by dpkg-reconfigure slapd, and entered the correct 
suffix now on the 
DNS doman name prompt.
However, the suffix remained the same, as if I didn't change anything, much to 
my confusion

So I erased /var/lib/slapd/* and /etc/ldap/* and
/var/cache/apt/archives/*, then typed : /sudo apt-get install slapd

Much to my surprise, it failed with the following error message :

Unpacking slapd (from .../slapd_2.4.15-1ubuntu3_i386.deb) ...
Processing triggers for man-db ...
Setting up slapd (2.4.15-1ubuntu3) ...
  Creating initial slapd configuration... done.
  Creating initial LDAP directory... failed.

Loading the initial directory structure from the ldif file 
(/tmp/slapd_init_dir.ldif.WHvJGmsMau) failed with the following
error while running slapadd:
slapadd: slap_init invalid suffix (dc=myldapserver,dc=web,dc=id)
dpkg: error processing slapd (--configure):
 subprocess post-installation script returned error exit status 1
Errors were encountered while processing:
 slapd
E: Sub-process /usr/bin/dpkg returned an error code (1)

ProblemType: Package
Architecture: i386
DistroRelease: Ubuntu 9.04
ErrorMessage: subprocess post-installation script returned error exit status 1
NonfreeKernelModules: vmmon
Package: slapd 2.4.15-1ubuntu3
SourcePackage: openldap
Title: package slapd 2.4.15-1ubuntu3 failed to install/upgrade: subprocess 
post-installation script returned error exit status 1
Uname: Linux 2.6.28-11-generic i686

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


** Tags: apport-package i386

-- 
package slapd 2.4.15-1ubuntu3 failed to install : subprocess post-installation 
script returned error exit status 1
https://bugs.launchpad.net/bugs/428813
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openldap 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 428813] [NEW] package slapd 2.4.15-1ubuntu3 failed to install : subprocess post-installation script returned error exit status 1

2009-09-13 Thread Harry Sufehmi
Public bug reported:

I got slapd installed with suffix dc=example, dc=com, which was not
what we needed.

I tried to rectify this by dpkg-reconfigure slapd, and entered the correct 
suffix now on the 
DNS doman name prompt.
However, the suffix remained the same, as if I didn't change anything, much to 
my confusion

So I erased /var/lib/slapd/* and /etc/ldap/* and
/var/cache/apt/archives/*, then typed : /sudo apt-get install slapd

Much to my surprise, it failed with the following error message :

Unpacking slapd (from .../slapd_2.4.15-1ubuntu3_i386.deb) ...
Processing triggers for man-db ...
Setting up slapd (2.4.15-1ubuntu3) ...
  Creating initial slapd configuration... done.
  Creating initial LDAP directory... failed.

Loading the initial directory structure from the ldif file 
(/tmp/slapd_init_dir.ldif.WHvJGmsMau) failed with the following
error while running slapadd:
slapadd: slap_init invalid suffix (dc=myldapserver,dc=web,dc=id)
dpkg: error processing slapd (--configure):
 subprocess post-installation script returned error exit status 1
Errors were encountered while processing:
 slapd
E: Sub-process /usr/bin/dpkg returned an error code (1)

ProblemType: Package
Architecture: i386
DistroRelease: Ubuntu 9.04
ErrorMessage: subprocess post-installation script returned error exit status 1
NonfreeKernelModules: vmmon
Package: slapd 2.4.15-1ubuntu3
SourcePackage: openldap
Title: package slapd 2.4.15-1ubuntu3 failed to install/upgrade: subprocess 
post-installation script returned error exit status 1
Uname: Linux 2.6.28-11-generic i686

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


** Tags: apport-package i386

-- 
package slapd 2.4.15-1ubuntu3 failed to install : subprocess post-installation 
script returned error exit status 1
https://bugs.launchpad.net/bugs/428813
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 428813] Re: package slapd 2.4.15-1ubuntu3 failed to install : subprocess post-installation script returned error exit status 1

2009-09-13 Thread Harry Sufehmi

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

** Attachment added: DpkgTerminalLog.gz
   http://launchpadlibrarian.net/31745568/DpkgTerminalLog.gz

-- 
package slapd 2.4.15-1ubuntu3 failed to install : subprocess post-installation 
script returned error exit status 1
https://bugs.launchpad.net/bugs/428813
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 199144] Re: Apache2 with mpm_worker times out with many concurrent requests

2009-04-07 Thread Harry Sufehmi
I'm still getting this error as well with 8.04.2 - however, when I installed 
Squid and ran ab again; the same error showed up as well.
I checked, and all requests are served from Squid's memory cache. 

This is how I invoked the error :  ab -c 20 -n 1  -v 1
http://mywebsite.com/

If I lower the requests to 1000, ab will be able to finish the
benchmark. So yeah, this is load-related problem.

FYI.

-- 
Apache2 with mpm_worker times out with many concurrent requests
https://bugs.launchpad.net/bugs/199144
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 310250] Re: ltsp-client: attempted to send on closed socket

2009-02-08 Thread Harry Sufehmi
why are you using xinetd ? -- no idea, I just setup a new server,
installed ltsp-server-standalone, followed by ltsp-build-client -- then
it complained that I'm using xinetd instead of inetd.

Indeed, no client was able to download i386.img at boot time.

So I typed apt-get install openbsd-inetd

Lots of scary warning about missing dependencies. But at the end, inetd
was installed -- and the clients, which were stuck at boot up screen;
was able to download i386.img and continued the LTSP booting process.

No more problem afterwards. I love happy ending :-)

-- 
ltsp-client: attempted to send on closed socket
https://bugs.launchpad.net/bugs/310250
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 253268] Re: php5-cgi not working with suphp in Hardy

2008-08-19 Thread Harry Sufehmi
dx9s - I think I'm experiencing this bug as well. Could you be as so
kind to upload your version of suphp packages here, so we can see if it
resolves our problem too?

Thank you.

-- 
php5-cgi not working with suphp in Hardy 
https://bugs.launchpad.net/bugs/253268
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to php5 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 253268] Re: php5-cgi not working with suphp in Hardy

2008-08-19 Thread Harry Sufehmi
dx9s - I think I'm experiencing this bug as well. Could you be as so
kind to upload your version of suphp packages here, so we can see if it
resolves our problem too?

Thank you.

-- 
php5-cgi not working with suphp in Hardy 
https://bugs.launchpad.net/bugs/253268
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 200666] Re: php5-imagick missing dependancy

2008-06-01 Thread Harry Sufehmi
*** This bug is a duplicate of bug 203023 ***
https://bugs.launchpad.net/bugs/203023

hm, that doesn't work, these are the correct commands :

ln -s /usr/lib/libWand.so.10.0.9 /usr/lib/libWand.so.9
ln -s /usr/lib/libMagick.so.10.0.9 /usr/lib/libMagick.so.9

-- 
php5-imagick missing dependancy
https://bugs.launchpad.net/bugs/200666
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 202068] Re: imagemagick dependency error in Hardy: should install libmagick9

2008-06-01 Thread Harry Sufehmi
These commands made the error message to disappear :

ln -s /usr/lib/libMagick.so.10.0.9 /usr/lib/libMagick.so.9
ln -s /usr/lib/libWand.so.10.0.9 /usr/lib/libWand.so.9

-- 
imagemagick dependency error in Hardy: should install libmagick9
https://bugs.launchpad.net/bugs/202068
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 139070] Re: [Gutsy] Ralink 2573 usb adapter does not work out of the box

2008-04-06 Thread Harry Sufehmi
*** This bug is a duplicate of bug 134660 ***
https://bugs.launchpad.net/bugs/134660

Just would like to :

[ 1 ] Confirm this bug

[ 2 ]  The solution :
http://backports.ubuntuforums.com/showpost.php?p=2395871postcount=1

The solution is very simple, there was even no need to reboot. It works
straight away.

Hope it helps somone.

-- 
[Gutsy] Ralink 2573 usb adapter does not work out of the box
https://bugs.launchpad.net/bugs/139070
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 134660] Re: Ralink rt2400 / rt2500 / rt2570 / rt61 / rt73 do not work out of the box in Gutsy/Hardy

2008-04-06 Thread Harry Sufehmi
Just would like to :

[ 1 ] Confirm this bug

[ 2 ]  The solution : install the latest driver : 
http://backports.ubuntuforums.com/showpost.php?p=2395871postcount=1

The solution is very simple, there was even no need to reboot. It works
straight away.

Hope it helps somone.

-- 
Ralink rt2400 / rt2500 / rt2570 / rt61 / rt73 do not work out of the box in 
Gutsy/Hardy
https://bugs.launchpad.net/bugs/134660
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 150193] Re: Remote Login via XDMCP is not working in Ubuntu Gusty/7.10

2008-02-27 Thread Harry Sufehmi
Just to confirm that setting remote login to plain in gdm made LTSP 4.x
works in Gutsy.

Also this issue needs to be given a higher priority. 
A case study : I have had cases where LTSP5 doesn't work because the 
workstations are of lower spec. LTSP 4.x works just fine in these cases. 

But with this problem, I can't deploy Gutsy as its server (nor Hardy it seems 
for now)
I can workaround it, indeed, but this has been confirmed to work only on plain 
Gutsy installation (eg: no updates installed yet). I don't know yet whether it 
will continue to work after you updated it.

Another thing, it seems that gdm 2.20.2 will bring this issue back.
RedHat has managed to fix it on their gdm 2.20.1 package, but the problem 
returned when they released gdm 2.20.2
Please be careful not to repeat their mistake.
Ref: https://bugzilla.redhat.com/show_bug.cgi?id=379511

Thanks for the discussions so far, keep it coming guys.

Thank you.

-- 
Remote Login via XDMCP is not working in Ubuntu Gusty/7.10
https://bugs.launchpad.net/bugs/150193
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