Re: [Bug 213437] Re: Official Timezone of Chile
On Tue, Jan 27, 2009 at 9:08 PM, Pedro Villavicencio wrote: > We are closing this bug report because it lacks the information we need > to investigate the problem, as described in the previous comments. > Please reopen it if you can give us the missing information, and don't > hesitate to submit bug reports in the future. To reopen the bug report > you can click on the current status, under the Status column, and change > the Status back to New. Thanks again!. Sorry, I don't look previous messages !! and yes.. in Ubuntu 8.04.2 and above this is OK. thanks -- -- Victor Hugo dos Santos Linux Counter #224399 -- Official Timezone of Chile https://bugs.launchpad.net/bugs/213437 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 313027] Re: MASTER: fglrx does not support xserver 1.6
On Wed, Mar 18, 2009 at 4:24 PM, Grzegorz Dabrowski wrote: > I have the black screen of death too after the update. Radeon HD 2400. yes.. if you install the update, reconfigure xorg.conf and restart gdm.. so, you obtain a black screen. but.. after restart the PC.. driver works. bye -- -- Victor Hugo dos Santos Linux Counter #224399 -- MASTER: fglrx does not support xserver 1.6 https://bugs.launchpad.net/bugs/313027 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 55128] errror in selection of server/server-expert in boot menu
Public bug reported: press the key F4 in boot menu screen, show this text mensaje: Available boot methods: install Start the installation -- this is the default CD-ROM install. expert Start the installation in expert mode, for maximum control. server, server-expert Minimal system install. Recommended for servers, where a complete graphical desktop environment is not desired. memtest Perform a memory test. but, "server-expert" option no work this is the options in "/isolinux/isolinux.cfg" cdrom file: LABEL install LABEL linux LABEL cdrom LABEL expert LABEL lamp-server LABEL lamp-server-expert LABEL check LABEL rescue LABEL memtest LABEL hd in other worlds, it necesary change the "isolinux/f4.txt" cdrom file for show the correct options. tanks. ** Affects: Ubuntu Importance: Untriaged Status: Unconfirmed -- errror in selection of server/server-expert in boot menu https://launchpad.net/bugs/55128 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 55128] Re: errror in selection of server/server-expert in boot menu
Version affected is "Server Install for i386 - Ubuntu 6.06 LTS (Dapper Drake)" mmm.. and looking bug #54493, i belive that both is related !!! ;-) tanks -- errror in selection of server/server-expert in boot menu https://launchpad.net/bugs/55128 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 56824] Re: error starting amavis-ng
Hello.. this is one patch for problem describle up. -- error starting amavis-ng https://launchpad.net/bugs/56824 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 56824] error starting amavis-ng
Public bug reported: Binary package hint: amavis-ng Hello.. the package amavis-ng_0.1.6.9-1_all have one problem when it is initialized after on boot/reboot. the init script dont create the folder "/var/run/amavis-ng/" and amavis- ng daemon can't write new file "amavisd.pid", provoking this error: AMAVIS::MTA::SMTP: Unable to create PID file /var/run/amavis- ng/amavisd.pid: No such file or directory one solution is append in the /etc/init.d/amavis-ng this line: # create /var/run/amavis-ng if dont exist [ ! -d /var/run/amavis-ng ] && mkdir /var/run/amavis-ng # Make sure /var/run/amavis-ng has the correct permissions chown amavis /var/run/amavis-ng other is change the location of amavis.pid. bye ** Affects: amavis-ng (Ubuntu) Importance: Untriaged Status: Unconfirmed -- error starting amavis-ng https://launchpad.net/bugs/56824 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 30428] Re: [Bug 30428] Re: [Bug 30428] Re: /var/lock/mrtg disappears on reboot
2006/8/24, Kevin Otte <[EMAIL PROTECTED]>: > On Thu, Aug 24, 2006 at 08:33:41PM -0000, Victor Hugo dos Santos wrote: > > */5 * * * * rootif [ -d /var/lock/mrtg ]; then if [ -x > > /usr/bin/mrtg ] && [ -r /etc/mrtg.cfg ]; then env LANG=C /usr/bin/mrtg > > /etc/mrtg.cfg >> /var/log/mrtg/mrtg.log 2>&1; fi else mkdir > > /var/lock/mrtg; fi > > The problem with this is that no data is logged during this run. You will > have a 10 minute gap in all your graphs. ooppss.. is true !!! :( mmm.. the command line correct/arranged is: */5 * * * * rootif [ ! -d /var/lock/mrtg ]; then mkdir /var/lock/mrtg; fi && if [ -x /usr/bin/mrtg ] && [ -r /etc/mrtg.cfg ]; then env LANG=C /usr/bin/mrtg /etc/mrtg.cfg >> /var/log/mrtg/mrtg.log 2>&1; fi where not is necesary wait 10 minutes for run mrtg !!! :D it's ok ?? > It is probably better to simply do the mkdir in /etc/rc.local until the > package itself is corrected. mmm.. yes.. is one option, but i (IMHO) dont belive that is better. tks. -- -- Victor Hugo dos Santos Linux Counter #224399 -- /var/lock/mrtg disappears on reboot https://launchpad.net/bugs/30428 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 30428] Re: /var/lock/mrtg disappears on reboot
one solution for this problem is change the file /etc/cron.d/mrtg from: */5 * * * * rootif [ -x /usr/bin/mrtg ] && [ -r /etc/mrtg.cfg ]; then env LANG=C /usr/bin/mrtg /etc/mrtg.cfg >> /var/log/mrtg/mrtg.log 2>&1; fi for: */5 * * * * rootif [ -d /var/lock/mrtg ]; then if [ -x /usr/bin/mrtg ] && [ -r /etc/mrtg.cfg ]; then env LANG=C /usr/bin/mrtg /etc/mrtg.cfg >> /var/log/mrtg/mrtg.log 2>&1; fi else mkdir /var/lock/mrtg; fi all caracteres in alone line. bye -- /var/lock/mrtg disappears on reboot https://launchpad.net/bugs/30428 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 178661] Re: freshclam (< 0.90.2-0ubuntu1.5) dont update virus database in feisty
** Visibility changed to: Public ** This bug is no longer flagged as a security issue -- freshclam (< 0.90.2-0ubuntu1.5) dont update virus database in feisty https://bugs.launchpad.net/bugs/178661 You received this bug notification because you are a member of Ubuntu Bugs, which is the bug contact for Ubuntu. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 178661] freshclam (< 0.90.2-0ubuntu1.5) dont update virus database in feisty
Public bug reported: Binary package hint: clamav-freshclam In one ubuntu feisty server, this freshclam package dont update correctly this is the ouput error: *** sudo freshclam Password: ClamAV update process started at Tue Dec 25 21:10:20 2007 WARNING: Your ClamAV installation is OUTDATED! WARNING: Local version: 0.90.2 Recommended version: 0.92 DON'T PANIC! Read http://www.clamav.net/support/faq main.inc is up to date (version: 45, sigs: 169676, f-level: 21, builder: sven) Downloading daily-5217.cdiff [100%] Ignoring mirror 64.186.240.114 (too often connections with outdated version) ERROR: getpatch: Can't download daily-5218.cdiff from db.local.clamav.net Downloading daily-5218.cdiff [100%] Ignoring mirror 208.67.80.27 (too often connections with outdated version) ERROR: getpatch: Can't download daily-5219.cdiff from db.local.clamav.net Downloading daily-5219.cdiff [100%] Ignoring mirror 206.154.202.213 (too often connections with outdated version) ERROR: getpatch: Can't download daily-5220.cdiff from db.local.clamav.net Downloading daily-5220.cdiff [100%] Ignoring mirror 205.139.192.13 (too often connections with outdated version) ERROR: getpatch: Can't download daily-5221.cdiff from db.local.clamav.net Downloading daily-5221.cdiff [100%] Ignoring mirror 155.98.64.86 (too often connections with outdated version) ERROR: getpatch: Can't download daily-5222.cdiff from db.local.clamav.net Downloading daily-5222.cdiff [100%] Ignoring mirror 72.21.63.182 (too often connections with outdated version) ERROR: getpatch: Can't download daily-5223.cdiff from db.local.clamav.net Downloading daily-5223.cdiff [100%] Ignoring mirror 65.110.48.11 (too often connections with outdated version) ERROR: getpatch: Can't download daily-5224.cdiff from db.local.clamav.net Ignoring mirror 64.186.240.114 (too often connections with outdated version) Ignoring mirror 65.110.48.11 (too often connections with outdated version) Ignoring mirror 72.21.63.182 (too often connections with outdated version) Ignoring mirror 155.98.64.86 (too often connections with outdated version) Ignoring mirror 205.139.192.13 (too often connections with outdated version) Ignoring mirror 206.154.202.213 (too often connections with outdated version) Ignoring mirror 208.67.80.27 (too often connections with outdated version) Trying host db.local.clamav.net (209.8.40.140)... Downloading daily-5224.cdiff [100%] Ignoring mirror 209.8.40.140 (too often connections with outdated version) ERROR: getpatch: Can't download daily-5225.cdiff from db.local.clamav.net Ignoring mirror 209.8.40.140 (too often connections with outdated version) Ignoring mirror 64.186.240.114 (too often connections with outdated version) Ignoring mirror 65.110.48.11 (too often connections with outdated version) Ignoring mirror 72.21.63.182 (too often connections with outdated version) Ignoring mirror 155.98.64.86 (too often connections with outdated version) Ignoring mirror 205.139.192.13 (too often connections with outdated version) Ignoring mirror 206.154.202.213 (too often connections with outdated version) Ignoring mirror 208.67.80.27 (too often connections with outdated version) ERROR: getpatch: Can't download daily-5225.cdiff from db.local.clamav.net Ignoring mirror 208.67.80.27 (too often connections with outdated version) Ignoring mirror 209.8.40.140 (too often connections with outdated version) Ignoring mirror 64.186.240.114 (too often connections with outdated version) Ignoring mirror 65.110.48.11 (too often connections with outdated version) Ignoring mirror 72.21.63.182 (too often connections with outdated version) Ignoring mirror 155.98.64.86 (too often connections with outdated version) Ignoring mirror 205.139.192.13 (too often connections with outdated version) Ignoring mirror 206.154.202.213 (too often connections with outdated version) ERROR: getpatch: Can't download daily-5225.cdiff from db.local.clamav.net Ignoring mirror 206.154.202.213 (too often connections with outdated version) Ignoring mirror 208.67.80.27 (too often connections with outdated version) Ignoring mirror 209.8.40.140 (too often connections with outdated version) Ignoring mirror 64.186.240.114 (too often connections with outdated version) Ignoring mirror 65.110.48.11 (too often connections with outdated version) Ignoring mirror 72.21.63.182 (too often connections with outdated version) Ignoring mirror 155.98.64.86 (too often connections with outdated version) Ignoring mirror 205.139.192.13 (too often connections with outdated version) ERROR: getpatch: Can't download daily-5225.cdiff from db.local.clamav.net Ignoring mirror 205.139.192.13 (too often connections with outdated version) Ignoring mirror 206.154.202.213 (too often connections with outdated version) Ignoring mirror 208.67.80.27 (too often connections with outdated version) Ignoring mirror 209.8.40.140 (too often connections with outdated version) Ignoring mirror 64.186.240.114 (too often connections with o
[Bug 213437] [NEW] Official Timezone of Chile
Public bug reported: Binary package hint: libdate-manip-perl Hello, the package libdate-manip-perl (version 5.44-5) in Ubuntu 7.10 don't have valid timezone for Chile.. this is contain of file /usr/share/perl5/Date/Manip.pm *** 567 "sat-0400 ". # Chile 568 "clst -0400 ". # Chile Standard *** and the oficial TZ of Chile is "CLT" and "CLST" (for summer hour). ** Affects: libdate-manip-perl (Ubuntu) Importance: Undecided Status: New -- Official Timezone of Chile https://bugs.launchpad.net/bugs/213437 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 207478] Re: gksu crashed with SIGSEGV in gdk_window_set_opacity()
*** This bug is a duplicate of bug 132127 *** https://bugs.launchpad.net/bugs/132127 ** Attachment added: "CoreDump.gz" http://launchpadlibrarian.net/12910716/CoreDump.gz ** Attachment added: "Dependencies.txt" http://launchpadlibrarian.net/12910717/Dependencies.txt ** Attachment added: "Disassembly.txt" http://launchpadlibrarian.net/12910718/Disassembly.txt ** Attachment added: "ProcMaps.txt" http://launchpadlibrarian.net/12910719/ProcMaps.txt ** Attachment added: "ProcStatus.txt" http://launchpadlibrarian.net/12910720/ProcStatus.txt ** Attachment added: "Registers.txt" http://launchpadlibrarian.net/12910721/Registers.txt ** Attachment added: "Stacktrace.txt" http://launchpadlibrarian.net/12910722/Stacktrace.txt ** Attachment added: "ThreadStacktrace.txt" http://launchpadlibrarian.net/12910723/ThreadStacktrace.txt -- gksu crashed with SIGSEGV in gdk_window_set_opacity() https://bugs.launchpad.net/bugs/207478 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 207478] [NEW] gksu crashed with SIGSEGV in gdk_window_set_opacity()
*** This bug is a duplicate of bug 132127 *** https://bugs.launchpad.net/bugs/132127 Public bug reported: Binary package hint: gksu automatic bug ProblemType: Crash Architecture: amd64 Date: Tue Mar 25 15:53:45 2008 DistroRelease: Ubuntu 8.04 ExecutablePath: /usr/bin/gksu NonfreeKernelModules: nvidia Package: gksu 2.0.0-5ubuntu1 PackageArchitecture: amd64 ProcCmdline: gksudo -S wifi-radar ProcEnviron: PATH=/home/username/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games LANG=es_CL.UTF-8 SHELL=/bin/bash Signal: 11 SourcePackage: gksu StacktraceTop: gdk_window_set_opacity () ?? () from /usr/lib/libgksu2.so.0 g_main_context_dispatch () ?? () from /usr/lib/libglib-2.0.so.0 g_main_loop_run () from /usr/lib/libglib-2.0.so.0 Title: gksu crashed with SIGSEGV in gdk_window_set_opacity() Uname: Linux 2.6.24-12-generic x86_64 UserGroups: adm admin audio cdrom dialout dip floppy fuse lpadmin netdev plugdev powerdev sambashare scanner video ** Affects: gksu (Ubuntu) Importance: Undecided Status: New ** Tags: apport-crash -- gksu crashed with SIGSEGV in gdk_window_set_opacity() https://bugs.launchpad.net/bugs/207478 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 124095] Re: Gutsy Clamav update configuration fails segfault error
i have this same problem in my system. the dmes output is: *-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*- [13765.650973] BUG: unable to handle kernel NULL pointer dereference at virtual address 0030 [13765.650979] printing eip: [13765.650981] c018870a [13765.650982] *pde = [13765.650985] Oops: [#4] [13765.650986] SMP [13765.650989] Modules linked in: binfmt_misc rfcomm l2cap bluetooth nfs nfsd exportfs lockd sunrpc i915 drm acpi_cpufreq cpufreq_powersave cpufreq_stats cpufreq_userspace cpufreq_ondemand cpufreq_conservative freq_table video battery container sbs bay button dock ac asus_acpi af_packet lp pcspkr snd_hda_intel snd_pcm_oss snd_mixer_oss snd_pcm snd_seq_dummy snd_seq_oss snd_seq_midi snd_rawmidi snd_seq_midi_event snd_seq snd_timer snd_seq_device parport_pc parport snd soundcore psmouse serio_raw iTCO_wdt iTCO_vendor_support shpchp pci_hotplug snd_page_alloc intel_agp agpgart ipv6 evdev reiserfs sg sd_mod ata_piix usbhid hid raid10 ata_generic ehci_hcd uhci_hcd libata scsi_mod tg3 usbcore raid456 xor raid1 raid0 multipath linear md_mod dm_mirror dm_snapshot dm_mod thermal processor fan capability commoncap loop [13765.651049] CPU:1 [13765.651050] EIP:0060:[]Not tainted VLI [13765.651051] EFLAGS: 00210202 (2.6.22-7-generic #1) [13765.651057] EIP is at permission+0x2a/0x120 [13765.651060] eax: ebx: f13c7440 ecx: d7c2ff04 edx: 6f6c [13765.651062] esi: fff3 edi: 0002 ebp: d7c2ff04 esp: d7c2fee8 [13765.651064] ds: 007b es: 007b fs: 00d8 gs: 0033 ss: 0068 [13765.651067] Process touch (pid: 20563, ti=d7c2e000 task=cb8bcf60 task.ti=d7c2e000) [13765.651069] Stack: ee31cc30 fff3 e98e7d80 c01a0e55 c016d678 f13c7440 e98e7d80 [13765.651075]ff9c d7c2ff30 c017f595 e98e7d80 8941 b7f3e0e4 [13765.651081]cb95f2c0 e96adc40 0cf8 f79aeb7c f7a78974 0002 [13765.651087] Call Trace: [13765.651095] [] do_utimes+0x1c5/0x1f0 [13765.651099] [] __handle_mm_fault+0x288/0xb00 [13765.651109] [] nameidata_to_filp+0x35/0x40 [13765.651125] [] do_page_fault+0x37a/0x680 [13765.651137] [] sys_utimensat+0x22/0xa0 [13765.651143] [] do_page_fault+0x0/0x680 [13765.651149] [] sysenter_past_esp+0x6b/0xa9 [13765.651159] [] iw_handler_get_private+0x40/0x80 [13765.651168] === [13765.651170] Code: 00 83 ec 10 89 7c 24 08 89 d7 f7 c7 02 00 00 00 89 1c 24 89 c3 89 6c 24 0c 89 cd 89 74 24 04 0f b7 50 6a 74 1c 8b 80 98 00 00 00 40 30 01 0f 85 83 00 00 00 f6 83 3c 01 00 00 08 75 73 8d 76 [13765.651200] EIP: [] permission+0x2a/0x120 SS:ESP 0068:d7c2fee8 *-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*- this error ocurre after update clamav* with aptitude. vhs-desktop:~/isos$ uname -a Linux vhs-desktop 2.6.22-7-generic #1 SMP Mon Jun 25 17:33:14 GMT 2007 i686 GNU/Linux and all parches/updates applied. salu2 -- Gutsy Clamav update configuration fails segfault error https://bugs.launchpad.net/bugs/124095 You received this bug notification because you are a member of Ubuntu Bugs, which is the bug contact for Ubuntu. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 430611] Re: dbus fails to start on clean boot using upstart job
Hello, I have the same problem from a upgrade of system on Monday... Now, I have installed dbus 1.2.16-0ubuntu6 and the problem persist. My system is completely upgrade and I have this lines on my fstab proc/proc procdefaults0 0 UUID=413fa551-c4d6-4f03-95b5-f977b63f98c4 / ext3 relatime,errors=remount-ro 0 1 UUID=31fba570-684c-45a3-8890-816749645ee4 /boot ext3relatime 0 2 UUID=87558e38-4881-48d3-9879-73b8f0652744 noneswapsw 0 0 /dev/VG_DATOS/vhs-home /home reiserfs defaults0 0 /dev/VG_DATOS/vhs-otros /home/vhs-otros ext4 defaults,relatime0 0 If the two last lines are commented, so the machine is start correctly... but, if not, so I have a problem after mount partition / and system don't start. will be the reiserfs filesystem ?? thanks -- dbus fails to start on clean boot using upstart job https://bugs.launchpad.net/bugs/430611 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 430611] Re: dbus fails to start on clean boot using upstart job
Hello Steve yes.. is true. thanks. -- dbus fails to start on clean boot using upstart job https://bugs.launchpad.net/bugs/430611 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 115967] Re: sudo-ldap not working with ldaps
** Changed in: sudo (Ubuntu) Status: Invalid => New -- sudo-ldap not working with ldaps https://bugs.launchpad.net/bugs/115967 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 115967] Re: sudo-ldap not working with ldaps
Hello, we have the same problem here... Configuration: = $ cat /etc/lsb-release DISTRIB_ID=Ubuntu DISTRIB_RELEASE=9.10 DISTRIB_CODENAME=karmic DISTRIB_DESCRIPTION="Ubuntu 9.10" $ dpkg -l | grep sudo rc sudo1.7.0-1ubuntu2 Provide limited super user privileges to specific users ii sudo-ldap 1.7.0-1ubuntu2 Provide limited super user privileges to specific users $ sudo cat /etc/ldap/ldap.conf BASEdc=multiexportfoods,dc=com URI ldaps://fds.multiexportfoods.com:636 TLS_CACERT /etc/ssl/certs/ca-certificates.crt TLS_REQCERT never sudoers_base ou=SUDOers,dc=multiexportfoods,dc=com = running command "sudo -l" I have this output: == $sudo -l [sudo] password for victor: Sorry, user victor may not run sudo on server. == Nota.: changing the "sudoers_debug" option on /etc/ldap/ldap.conf to sudoers_debug 2 sudoers_debug 5 sudoers_debug 20 sudoers_debug 50 no make differ !!! :( on others words, debug not work. more info: the ldaps work fine, because I can authenticate users with it: $getent passwd victor victor:x:5555:5:Victor Hugo dos Santos,,,:/home/victor:/bin/bash I read notes that the problem is "only" with ldaps... and if I configure ldap (without SSL), so works !!! but, in my company this isn't a option. saludos -- sudo-ldap not working with ldaps https://bugs.launchpad.net/bugs/115967 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 1572608] Re: Samba 2:4.3.8+dfsg-0ubuntu0.14.04.2 Reversion: CPU Soft Lock
Hi, I dont think it, because that is the same VM (CPU,RAM,etc) that work very well on the last 3 years and only have this problem after the upgrade !!! -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1572608 Title: Samba 2:4.3.8+dfsg-0ubuntu0.14.04.2 Reversion: CPU Soft Lock To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/samba/+bug/1572608/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
Re: [Bug 1572608] Re: Samba 2:4.3.8+dfsg-0ubuntu0.14.04.2 Reversion: CPU Soft Lock
Hi In my case, both servers are connected to a Windows domain... Maybe that is the difference ?? Attentive On May 13, 2016 2:10 PM, "MoD" <1572...@bugs.launchpad.net> wrote: > Ok, the RAM issue is discarded. It just happened again some minutes ago > and the RAM memory log I had set in place didn't notice a problem there. > > I have no idea how to replicate the issue or what is causing it. So far > I've only noticed the soft lockup messages linked to smbd from dmesg, > syslog or kern.log, which start a few hours before the halt. > > -- > You received this bug notification because you are subscribed to the bug > report. > https://bugs.launchpad.net/bugs/1572608 > > Title: > Samba 2:4.3.8+dfsg-0ubuntu0.14.04.2 Reversion: CPU Soft Lock > > To manage notifications about this bug go to: > https://bugs.launchpad.net/ubuntu/+source/samba/+bug/1572608/+subscriptions > -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1572608 Title: Samba 2:4.3.8+dfsg-0ubuntu0.14.04.2 Reversion: CPU Soft Lock To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/samba/+bug/1572608/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1572608] Re: Samba 2:4.3.8+dfsg-0ubuntu0.14.04.2 Reversion: CPU Soft Lock
Hi, we have problems with this new version too... the system stop to work (with out memory) after a time and I cant get the user list from the domain, like in this bug report: http://www.spinics.net/lists/samba/msg133470.html Note1: wbinfo -u not work but wbinfo -g work perfectly. Note2: on my case, rejoin to domain not work, only making a downgrade to the previous version (2:4.1.6+dfsg-1ubuntu2) work again. on log-wb.DOMAIN I see: [2016/04/21 21:02:50.111459, 1] ../auth/gensec/spnego.c:664(gensec_spnego_create_negTokenInit) Failed to setup SPNEGO negTokenInit request: NT_STATUS_INTERNAL_ERROR [2016/04/21 21:02:50.697369, 1] ../source3/libads/ldap_utils.c:91(ads_do_search_retry_internal) Reducing LDAP page size from 1000 to 500 due to IO_TIMEOUT [2016/04/21 21:02:51.231447, 1] ../source3/libads/ldap_utils.c:91(ads_do_search_retry_internal) Reducing LDAP page size from 500 to 250 due to IO_TIMEOUT [2016/04/21 21:02:51.632155, 1] ../source3/libads/ldap_utils.c:135(ads_do_search_retry_internal) ads reopen failed after error Time limit exceeded [2016/04/21 21:02:51.632204, 1] ../source3/winbindd/winbindd_ads.c:320(query_user_list) query_user_list ads_search: Time limit exceeded = thanks and hopping that this info help to get a solution. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1572608 Title: Samba 2:4.3.8+dfsg-0ubuntu0.14.04.2 Reversion: CPU Soft Lock To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/samba/+bug/1572608/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1572876] Re: After Samba upgrade can't access unpassworded windows share
Hi, we have problems with this new version too... the system stop to work (with out memory) after a time and I cant get the user list from the domain, like in this bug report: http://www.spinics.net/lists/samba/msg133470.html Note1: wbinfo -u not work but wbinfo -g work perfectly. Note2: on my case, rejoin to domain not work, only making a downgrade to the previous version (2:4.1.6+dfsg-1ubuntu2) work again. on log-wb.DOMAIN I see: [2016/04/21 21:02:50.111459, 1] ../auth/gensec/spnego.c:664(gensec_spnego_create_negTokenInit) Failed to setup SPNEGO negTokenInit request: NT_STATUS_INTERNAL_ERROR [2016/04/21 21:02:50.697369, 1] ../source3/libads/ldap_utils.c:91(ads_do_search_retry_internal) Reducing LDAP page size from 1000 to 500 due to IO_TIMEOUT [2016/04/21 21:02:51.231447, 1] ../source3/libads/ldap_utils.c:91(ads_do_search_retry_internal) Reducing LDAP page size from 500 to 250 due to IO_TIMEOUT [2016/04/21 21:02:51.632155, 1] ../source3/libads/ldap_utils.c:135(ads_do_search_retry_internal) ads reopen failed after error Time limit exceeded [2016/04/21 21:02:51.632204, 1] ../source3/winbindd/winbindd_ads.c:320(query_user_list) query_user_list ads_search: Time limit exceeded = thanks and hopping that this info help to get a solution. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1572876 Title: After Samba upgrade can't access unpassworded windows share To manage notifications about this bug go to: https://bugs.launchpad.net/samba/+bug/1572876/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 812889] [NEW] Option "-f" in /etc/cron.daily/logrotate force rotation of all logs every day, overwriting options weekly/monthly in config files
Public bug reported: In the "/etc/cron.daily/logrotate" we have: === #!/bin/sh test -x /usr/sbin/logrotate || exit 0 /usr/sbin/logrotate -f /etc/logrotate.conf === but option -f force logrotate to rotate all logs every day and options weekly and monthly in config files don't work. solution: Remove option -f in "/etc/cron.daily/logrotate" logrotate: Installed: 3.7.8-4ubuntu2.1 Candidate: 3.7.8-4ubuntu2.1 Version table: *** 3.7.8-4ubuntu2.1 0 500 http://archive.ubuntu.com/ubuntu/ lucid-updates/main Packages 100 /var/lib/dpkg/status 3.7.8-4ubuntu2 0 500 http://archive.ubuntu.com/ubuntu/ lucid/main Packages ** Affects: logrotate (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/812889 Title: Option "-f" in /etc/cron.daily/logrotate force rotation of all logs every day, overwriting options weekly/monthly in config files To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/logrotate/+bug/812889/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
Re: [Bug 791513] Re: After upgrade to kernel 2.6.32.32.38 ubuntu don't start in Xenserver
On Tue, Jun 7, 2011 at 2:34 PM, Malcolm Scott wrote: > This is a serious regression. > > My testing suggests that this issue affects any guest which is assigned > more than 578MB of RAM. (A guest configured in XenCenter with 579MB of > RAM exhibits the fault, whereas the same guest reconfigured with 578MB > boots fine.) > > Victor, can you check whether reducing its RAM allocation allows your > guest to boot? > > The failure mode is that the guest spins on 100% CPU on the first core, > before any kernel messages are printed (even without the "quiet" > option). HI I install other VMs to test.. and with 578 or less I don't have problem... but, after change the memory to 579 or more I can't boot this VMs thanks -- -- Victor Hugo dos Santos Linux Counter #224399 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/791513 Title: After upgrade to kernel 2.6.32.32.38 ubuntu don't start in Xenserver -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 791513] [NEW] After upgrade to kernel 2.6.32.32.38 ubuntu don't start in Xenserver
Public bug reported: Today I installed tun the auto-upgrade in my systems and after the upgrade of kernel linux-generic-pae 2.6.32.32.38 I restarted the server and the server don't start again !!! :-( this server is a guest in a virtual server with XenServer 5.6 FP1 and this error already reported in this direction: http://forums.citrix.com/thread.jspa?messageID=1558603#1558603 ProblemType: Bug DistroRelease: Ubuntu 10.04 Package: linux-generic-pae 2.6.32.32.38 Regression: Yes Reproducible: Yes ProcVersionSignature: Ubuntu 2.6.32-31.61-generic-pae 2.6.32.32+drm33.14 Uname: Linux 2.6.32-31-generic-pae i686 AlsaDevices: Error: command ['ls', '-l', '/dev/snd/'] failed with exit code 2: ls: cannot access /dev/snd/: No such file or directory AplayDevices: Error: [Errno 2] No such file or directory Architecture: i386 ArecordDevices: Error: [Errno 2] No such file or directory CurrentDmesg: [ 546.039375] JBD: barrier-based sync failed on xvdb1-8 - disabling barriers Date: Wed Jun 1 15:11:03 2011 Lspci: Lsusb: Error: command ['lsusb'] failed with exit code 1: ProcCmdLine: root=UUID=951d4eda-2677-47a8-82d3-8a48eba9fcc0 ro console=hvc0 splash quiet -- quiet console=hvc0 partman/default_filesystem=ext3 ProcEnviron: SHELL=/bin/bash PATH=(custom, user) LANG=en_US.UTF-8 ProcModules: xenfs 4812 1 - Live 0xeda68000 xen_netfront 14919 0 - Live 0xeda22000 lp 7028 0 - Live 0xeda27000 parport 32635 1 lp, Live 0xeda72000 xen_blkfront 8991 5 - Live 0xeda2a000 SourcePackage: linux ** Affects: linux (Ubuntu) Importance: Undecided Status: New ** Tags: apport-bug i386 kconfig lucid needs-upstream-testing regression-update -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/791513 Title: After upgrade to kernel 2.6.32.32.38 ubuntu don't start in Xenserver -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 791513] Re: After upgrade to kernel 2.6.32.32.38 ubuntu don't start in Xenserver
-- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/791513 Title: After upgrade to kernel 2.6.32.32.38 ubuntu don't start in Xenserver -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 148459] Re: winbind (libnss_wins) calls openlog when it shouldn't
Hello Any news about this problem ?? Suse team publish a patch to resolv this problem https://qa.mandriva.com/show_bug.cgi?id=59677 commentaries ?? bye ** Bug watch added: Mandriva Linux #59677 http://qa.mandriva.com/show_bug.cgi?id=59677 -- winbind (libnss_wins) calls openlog when it shouldn't https://bugs.launchpad.net/bugs/148459 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 148459] Re: winbind (libnss_wins) calls openlog when it shouldn't
Hi, I have the same problem in Lucid. in "/etc/nsswitch.conf" I have (more important) === passwd: files ldap winbind group: files ldap winbind shadow: files ldap hosts: files mdns4_minimal [NOTFOUND=return] dns mdns4 wins networks: files dns === my smb.conf (from testparm output) == [global] workgroup = MYDOMAIN realm = MYDOMAIN.COM server string = %h server (Servidor de Archivos - Samba %v, Ubuntu) security = ADS allow trusted domains = No obey pam restrictions = Yes password server = otherserver.mydomain.com log level = 2 log file = /var/log/samba/log.%m max log size = 1000 name resolve order = host wins bcast time server = Yes unix extensions = No printcap name = cups dns proxy = No wins server = 192.168.1.22 idmap uid = 1-33554431 idmap gid = 1-33554431 template shell = /bin/bash winbind enum users = Yes winbind enum groups = Yes invalid users = "@MYDOMAIN\equipos del dominio" admin users = admin_user cups options = raw wide links = Yes delete readonly = Yes dos filetime resolution = Yes fake directory create times = Yes == and in the syslog, I have many errors from different daemons (samba, snmpd and ntp), but with "nss_wins" ident, for example: nss_wins[XXX]: call_nt_transact_ioctl(0x90078): Currently not implemented. nss_wins[XXX]: check_usershare_stat: file /var/lib/samba/usershares/. owned by uid 0 is not a regular file nss_wins[XXX]: Error writing 4 bytes to client. -1. (Transport endpoint is not connected) nss_wins[XXX]: /etc/snmp/snmpd.conf: line 3: Error: bad source address nss_wins[XXX]: gbahamonde (192.168.1.188) couldn't find service abastecimiento nss_wins[XXX]: getpeername failed. Error was Transport endpoint is not connected nss_wins[XXX]: last message repeated 2 times nss_wins[XXX]: last message repeated 3 times nss_wins[XXX]: last message repeated 4 times nss_wins[XXX]: libsmb/nmblib.c:834(send_udp) nss_wins[XXX]: lib/util_sock.c:1491(get_peer_addr_internal) nss_wins[XXX]: lib/util_sock.c:539(read_fd_with_timeout) nss_wins[XXX]: lib/util_sock.c:738(write_data) nss_wins[XXX]: nb-informatica (192.168.1.197) couldn't find service . nss_wins[XXX]: net-snmp: 1 error(s) in config file(s) nss_wins[XXX]: NET-SNMP version 5.4.2.1 nss_wins[XXX]: Packet send failed to 192.168.1.22(137) ERRNO=Network is unreachable nss_wins[XXX]: param/loadparm.c:8328(check_usershare_stat) nss_wins[XXX]: param/loadparm.c:8555(process_usershare_file) nss_wins[XXX]: param/loadparm.c:8569(process_usershare_file) nss_wins[XXX]: process_usershare_file: share name ::{2227a280-3aea-1069-a2de-X} contains invalid characters (any of %<>*?|/\+=;:",) nss_wins[XXX]: process_usershare_file: stat of /var/lib/samba/usershares/astecimiento failed. No such file or directory nss_wins[XXX]: process_usershare_file: stat of /var/lib/samba/usershares/nzalez failed. Permission denied nss_wins[XXX]: process_usershare_file: stat of /var/lib/samba/usershares/bholmes failed. Permission denied nss_wins[XXX]: process_usershare_file: stat of /var/lib/samba/usershares/arria failed. Permission denied nss_wins[XXX]: lbornoz (172.16.102.XXX) couldn't find service abilidad nss_wins[XXX]: lbornoz (172.16.102.XXX) couldn't find service plan_pub nss_wins[XXX]: read_fd_with_timeout: client 0.0.0.0 read error = Connection reset by peer. nss_wins[XXX]: read_fd_with_timeout: client 0.0.0.0 read error = Connection timed out. nss_wins[XXX]: Received TERM or STOP signal... shutting down... nss_wins[XXX]: smbd/nttrans.c:2119(call_nt_transact_ioctl) nss_wins[XXX]: smbd/process.c:62(srv_send_smb) nss_wins[XXX]: smbd/service.c:1202(make_connection) nss_wins[XXX]: xp-virtual (= couldn't find service ::{2227XX80-3aea-1069-a2de-08002b30309d} nss_wins[XXX]: write_data: write failure in writing to client 0.0.0.0. Error Connection reset by peer If I restart the daemons (samba, ntp or snmp), so the syslog register the correct daemon in the ident field.. but, after reboot of machine the problem comeback and is necessary restart the daemons again. On previous Ubuntu version (9.10) this problem don't exists. and the problem is that logcheck, logwatch and other softwares relational with logs work wrong. thanks and attentive -- winbind (libnss_wins) calls openlog when it shouldn't https://bugs.launchpad.net/bugs/148459 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