search for: nocheck

Displaying 17 results from an estimated 17 matches for "nocheck".

Did you mean: nochecks
2004 Jun 23
2
Which disk is it?
...kernel: EXT3-fs error (device sd(8,6)): ext3_readdir: directory #3473659 contains a hole at offset 1852399616 $ mount /dev/sdb6 on / type auto (rw) none on /proc type proc (rw) /dev/sdb5 on /boot type ext3 (rw) /dev/sda6 on /home type ext3 (rw,nosuid,noatime) /dev/sdb8 on /tmp type ext3 (rw,nosuid,nocheck) /dev/sdb7 on /var type ext3 (rw,nosuid,noatime) /dev/sdb9 on /extra type ext3 (rw,noatime,data=journal,nocheck) /dev/hda6 on /mnt/hda type ext3 (rw,nosuid,noatime,nocheck) none on /dev/pts type devpts (rw,gid=5,mode=620) /dev/sdc6 on /copymail type ext3 (rw,nosuid,noatime,data=writeback,nocheck)...
2011 Dec 28
3
packages and Solaris
Hi folks, I''m about to propose to my current company that we use puppet to manage releases of home grown software. The environment is a mix of Solaris 8/9/10 and RHEL 5&6. I''ve got a handle on how to create recipes to release software into the RHEL environment. The unknown for me is how to manipulate the pkgadd provider to load the locally grown package stream. Can
2007 May 03
3
Re: UPDATE automated installation of puppet into s olaris 10 zones
>> You''re right, if the package content from the global zone is >> reflected in all zones, the necessary files are already there. >> >> Typically I try to keep additional installed packages as >> independent as possible. So all additional software packages have >> the following parameters set in the pkginfo file: >> >>
2015 Jan 14
1
[PULL] uaccess: fix sparse warning on get/put_user for bitwise types
...abecae05aba5f437d2: vhost/net: length miscalculation (2015-01-07 12:22:00 +0200) are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git tags/uaccess_for_upstream for you to fetch changes up to 0795cb1b46e7938ed679ccd48f933e75272b30e3: sparc32: nocheck uaccess coding style tweaks (2015-01-13 15:24:14 +0200) ---------------------------------------------------------------- uaccess: fix sparse warning on get/put_user for bitwise types At the moment, if p and x are both tagged as bitwise types, some of get_user(x, p), put_user(x, p), __get_user(x,...
2015 Jan 14
1
[PULL] uaccess: fix sparse warning on get/put_user for bitwise types
...abecae05aba5f437d2: vhost/net: length miscalculation (2015-01-07 12:22:00 +0200) are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git tags/uaccess_for_upstream for you to fetch changes up to 0795cb1b46e7938ed679ccd48f933e75272b30e3: sparc32: nocheck uaccess coding style tweaks (2015-01-13 15:24:14 +0200) ---------------------------------------------------------------- uaccess: fix sparse warning on get/put_user for bitwise types At the moment, if p and x are both tagged as bitwise types, some of get_user(x, p), put_user(x, p), __get_user(x,...
2001 Dec 03
2
ext3_free_blocks
...8128, count = 1 EXT3-fs error (device sd(8,38)): ext3_free_blocks: Freeing blocks in system zones - Block = 16, count = 1 EXT3-fs error (device sd(8,38)): ext3_free_blocks: bit already cleared for block 16 The filesystem this belongs to is /copymail: LABEL=/copymail /copymail auto nocheck,nosuid 1 2 mounted with the default journal mode. The machine did NOT panic, halt or crash in a bizarre way. Can this message occur when the controller remaps bad blocks on the disk? -- Ralf Hildebrandt (Im Auftrag des Referat V A) Ralf.Hildebrandt@charite.de Charite Campus Virchow-Klinikum...
2012 May 18
1
hppa, powerpcspe: call for klibc/mksh testers
...? m68k and kept it running on d-p.o which helps a bit). Anyway: a new klibc (2.0~rc5-1) has been uploaded, and an mksh companion version (40.9.20120518-1) depending on it and trying to use klibc for /bin/mksh-static, complete with testsuite that is run by the buildd (unless DEB_BUILD_OPTS contains nocheck). Please, please build and test these klibc and mksh versions on as new a sid environment as you can get (I could probably ask for access to an hppa lenny chroot, but? ugh!) and see whether it?ll work for you ? klibc on sh4, for example, was broken and nobody noticed it until I ssh?d to a porterbo...
2005 Oct 31
2
What is the history of CONFIG_EXT{2,3}_CHECK?
Can anyone tell me the history of CONFIG_EXT{2,3}_CHECK? There is code for a "check" option for mount if these options are enabled, but there's no way to enable them. TIA Adrian -- "Is there not promise of rain?" Ling Tan asked suddenly out of the darkness. There had been need of rain for many days. "Only a promise," Lao Er said.
2007 Jun 19
2
[PATCH] Fix change of CDROM for block-configure command
Hi All, We contributed the problem when CD-ROM was changed as follows. There was especially no comment though we confirmed the correction method. Therefore, the patch that corrects these problems is contributed. Signed-off-by: Takanori Kasai <kasai.takanori@jp.fujitsu.com> Best Regards, --- Takanori Kasai ----- Original Message ----- From: "Kasai Takanori"
2006 Nov 28
4
how to prevent filesystem check
...d the slave read only. in my fstab on the slave I have a line like the following: /dev/sdb1 /mount ext3 acl,noauto,user_xattr,nosuid,ro 0 0 so in man 5 fstab, it is written, that when the 6. field is 0, no filesystem check will be done at mount time. and in man mount, I read that, the nocheck parameter is the default, that means, that no filesystem checks should be performed when the partition is mounted. but when I mount the filesystem on the slave, I see the following messages in /var/log/messages: EXT3-fs: mounted filesystem with ordered data mode. EXT3-fs: INFO: recovery require...
2006 Aug 09
0
ActiveRecord provides unnecessary default value (SQL Server)
...#39;'m doing: obj.new obj.little_date What I observe is that if there is no constraint on the little_date column, then the value of obj.little_date is nil (as you would expect). However, if there is a default constraint on little_date, created by something like: "ALTER TABLE XXX WITH NOCHECK ADD CONSTRAINT DF_blah DEFAULT (getdate()) FOR little_date" and I then do: obj.new obj.little_date then little_date has a value of "Sat Jan 01 00:00:00 Central Standard Time 2000" What gives? Is ActiveRecord attempting to create a default for this record since "it saw&qu...
2010 Nov 23
0
Automount, External USB disk and e2fsck
Does Automount/autofs automagically run e2fsck? If so, how does one disable this? We have an external USB connected 2TB hard drive setup to automount. Sometimes e2fsck gets fired up, I think from Automount. I have this line in the automount config: /backupdisk -fstype=ext3,nocheck :LABEL=BACKUP I believe this should prevent Automount from running e2fsck, but it still runs it. (We have a cron job that daily does a e2fsck -p on this disk at a 'quiet' time.) -- Robert Heller -- 978-544-6933 / heller at deepsoft.com Deepwoods Software -- http://...
2007 Sep 15
1
v1.1.alpha5 crashes with segmentation fault
...l SIGSEGV, Segmentation fault. settings_is_active (set=0x0) at master-settings.c:505 505 if (*set->protocols == '\0') { (gdb) bt full #0 settings_is_active (set=0x0) at master-settings.c:505 No locals. #1 0x080535d5 in master_settings_read (path=<value optimized out>, nochecks=false, nofixes=false) at master-settings.c:1397 ctx = {type = SETTINGS_TYPE_ROOT, parent_type = SETTINGS_TYPE_ROOT, protocol = MAIL_PROTOCOL_ANY, root = 0x80721d0, server = 0x80721d0, auth = 0x80727c8, socket = 0x807293c, auth_socket = 0x8072930, auth_passdb = 0x8072878, auth_userdb = 0x...
2006 Mar 16
1
Segfault when parsing configuration on x86_64
...ead (path=0x41798e "/etc/dovecot.conf", section=0x0, callback=0x409580 <parse_setting>, sect_callback=0x409a50 <parse_section>, context=0x7fbffff880) at settings.c:222 #3 0x000000000040a0e1 in master_settings_read ( path=0x41798e "/etc/dovecot.conf", nochecks=false) at master-settings.c:1159 #4 0x000000000040875a in main (argc=2, argv=0x7fbffffa18) at main.c:762 #5 0x0000003d4341c4bb in __libc_start_main () from /lib64/tls/libc.so.6 #6 0x000000000040357a in _start () #7 0x0000007fbffffa08 in ?? () #8 0x000000000000001c in ?? () #9 0x000000000...
2013 Apr 18
0
[Bug 9813] New: --resume parameter to improve speed of dropped/partial transfers
..., would resume where it was and then finish the final half of the structure; ideal for static transfers (i.e - nothing should have drastically changed between then and now). In order to control this there would be some other parameters: --resume enables resuming of a previous transfer --resume-nocheck resumes the previous transfer even if the parameters don't match (resume will however fail if the "current" file is not matched by the new parameters) --resume-recheck resumes as normal, but rechecks all "earlier" files upon completion, e.g - if files 1-100 are skipped w...
2016 May 26
0
Samba 4.4.3 debian wheezy backport intructions
...ezy; urgency=low + + * Wheezy backport + * Only depend on python 2.7 + * Do not use systemd + * Depend on libgnutls-dev + + -- Achim Gottinger <achim at ag-web.biz> Thu, 26 May 2016 18:35:25 +0200 + samba (2:4.4.3+dfsg-4) unstable; urgency=medium * Fix build with DEB_BUILD_OPTIONS=nocheck diff -ru samba-4.4.3+dfsg.orig/debian/control samba-4.4.3+dfsg/debian/control --- samba-4.4.3+dfsg.orig/debian/control 2016-05-03 22:15:40.000000000 +0200 +++ samba-4.4.3+dfsg/debian/control 2016-05-26 17:07:20.321089167 +0200 @@ -12,7 +12,6 @@ Standards-Version: 3.9.8 Build-Depend...
2013 Apr 18
0
Processed: adding new jessie tag to sid-tagged bugs
...-presence-service-0.88] sugar-presence-service-0.88: deprecation of dh_pycentral, please use dh_python2 Added tag(s) jessie. > tags 465248 + jessie Bug #465248 [openssl] openssl: long term mass bug filing for cross build support Bug #579802 [openssl] debian/rules: Allow cross-compilation and add nocheck Added tag(s) jessie. Added tag(s) jessie. > tags 629784 + jessie Bug #629784 [src:darcs-monitor] darcs-monitor: FTBFS: unsatisfiable build-dependencies: libghc6-haxml-dev (< 1.14), libghc6-haxml-dev (< 1:1.14) Added tag(s) jessie. > tags 680801 + jessie Bug #680801 [src:ed] ed: FTBFS: *...