search for: nolog

Displaying 20 results from an estimated 26 matches for "nolog".

Did you mean: nologo
2019 Jan 25
0
[klibc:update-dash] expand: 'nolog' and 'debug' options cause "$-" to wreak havoc
...rg/?p=libs/klibc/klibc.git;a=commit;h=a311e6839f6e8e9797d0a0bd8e1222d22e10a018 Author: Martijn Dekker <martijn at inlv.org> AuthorDate: Tue, 6 Mar 2018 17:40:37 +0000 Committer: Ben Hutchings <ben at decadent.org.uk> CommitDate: Fri, 25 Jan 2019 02:57:21 +0000 [klibc] expand: 'nolog' and 'debug' options cause "$-" to wreak havoc Op 29-03-17 om 20:02 schreef Martijn Dekker: > Bug: if either the 'nolog' or the 'debug' option is set, trying to > expand "$-" silently aborts parsing of an entire argument. > > $ dash -o no...
2020 Mar 28
0
[klibc:update-dash] dash: expand: 'nolog' and 'debug' options cause "$-" to wreak havoc
...libs/klibc/klibc.git;a=commit;h=8d7c846f252b7eabd7cb7d02e7b53fb5a835402e Author: Martijn Dekker <martijn at inlv.org> AuthorDate: Tue, 6 Mar 2018 17:40:37 +0000 Committer: Ben Hutchings <ben at decadent.org.uk> CommitDate: Sat, 28 Mar 2020 21:42:54 +0000 [klibc] dash: expand: 'nolog' and 'debug' options cause "$-" to wreak havoc [ dash commit 81a501b7fbcff8da004251a85a8f948263254aa5 ] Op 29-03-17 om 20:02 schreef Martijn Dekker: > Bug: if either the 'nolog' or the 'debug' option is set, trying to > expand "$-" silently ab...
2016 Feb 16
3
slightly off-topic, RAID program for on-board SAS 2308-4i ?
Does anyone know what program can be used to query the RAID status from the OS for an on-board LSI SAS 2308-4i? On this page: http://docs.avagotech.com/docs/12351997 there is a curious note on the left that reads: "Integrated MegaRAID support available upon request" After one mostly fruitless round of chatting with LSI/Avago/Broadcom and one completely fruitless round of chatting
2015 Jan 30
5
Very slow disk I/O
On 1/30/2015 1:53 AM, Gordon Messmer wrote: > On 01/29/2015 05:07 AM, Jatin Davey wrote: >> Yes , it is a SATA disk. I am not sure of the speed. Can you tell me >> how to find out this information ? Additionally we are using RAID 10 >> configuration with 4 disks. > > What RAID controller are you using? > > # lspci | grep RAID [Jatin] [root at localhost ~]# lspci |
2015 Jan 30
0
Very slow disk I/O
....*$',line.strip()): state = line.split(':')[1].strip() if re.match(r'Rebuild',state): cmd2 = '/opt/MegaRAID/MegaCli/MegaCli64 pdrbld showprog physdrv['+str(enclnum)+':'+str(slotnum)+'] a'+str(controllerid)+' nolog' ll = getOutput(cmd2) state += ' completed ' + re.sub(r'Rebuild Progress.*Completed', '', ll[0]).strip(); if re.match(r'Slot Number: .*$',line.strip()): slotnum = line.split(':')[1].strip()...
2016 Feb 16
0
slightly off-topic, RAID program for on-board SAS 2308-4i ?
....*$',line.strip()): state = line.split(':')[1].strip() if re.match(r'Rebuild',state): cmd2 = '/opt/MegaRAID/MegaCli/MegaCli64 pdrbld showprog physdrv['+str(enclnum)+':'+str(slotnum)+'] a'+str(controllerid)+' nolog' ll = getOutput(cmd2) state += ' completed ' + re.sub(r'Rebuild Progress.*Completed', '', ll[0]).strip(); if re.match(r'Slot Number: .*$',line.strip()): slotnum = line.split(':')[1].strip()...
2015 Feb 02
1
Very slow disk I/O
...> state = line.split(':')[1].strip() > if re.match(r'Rebuild',state): > cmd2 = '/opt/MegaRAID/MegaCli/MegaCli64 pdrbld > showprog physdrv['+str(enclnum)+':'+str(slotnum)+'] > a'+str(controllerid)+' nolog' > ll = getOutput(cmd2) > state += ' completed ' + re.sub(r'Rebuild > Progress.*Completed', '', ll[0]).strip(); > if re.match(r'Slot Number: .*$',line.strip()): > slotnum = line.split(':'...
2017 Nov 02
3
low end file server with h/w RAID - recommendations
On Thursday 02 November 2017 14:10:25 Bowie Bailey wrote: > If you want raid 5 or 6, then you should get a hardware controller. For > raid 1, mdadm should work just fine.? I would suggest trying it before > buying a raid controller.? If it works for you, you save a few hundred > dollars and you have one less piece of hardware to worry about. > > I haven't looked at them in
2014 Aug 25
3
Hardware raid health?
I just had an IBM in a remote location with a hardware raid1 have both drives go bad. With local machines I probably would have caught it from the drive light before the 2nd one died... What is the state of the art in linux software monitoring for this? Long ago when that box was set up I think the best I could have done was a Java GUI tool that IBM had for their servers - and that seemed like
2017 Oct 02
2
NFS mount on Centos 7 crashing
This config is working fior me, with just using an older kernel. [root at mnemosyne ~]# uname -r 3.10.0-514.21.2.el7.x86_64 [root at mnemosyne ~]# rpm -qa | grep rpcbind rpcbind-0.2.0-42.el7.x86_64 [root at mnemosyne ~]# rpm -qa | grep nfs libnfsidmap-0.25-17.el7.x86_64 nfs-utils-1.3.0-0.48.el7.x86_64 Patrick -- =================================================================== | Equipe
2017 Oct 04
2
NFS mount on Centos 7 crashing
...Nikolaos Milas wrote: > Unfortunately, it doesn't work for me. Problem solved - at least in my case - by changing the NFS Export Options (of the NFS shared directory, at the data storage system) from secure to insecure. That is, I changed from: rw,no_root_squash,no_all_squash,secure,nolog to: rw,no_root_squash,no_all_squash,insecure,nolog I don't know if the behavior I had described can be explained by using the "secure" option, but after I changed to "insecure" everything works fine, using the latest packages - latest kernel and latest rpms. If any...
2008 Aug 29
1
DB stop&start
Hi I need a script to automatically Starting/Stopping an Oracle 10g DB on CentOS5.2 64bit i.e lsnrctl start/stop db start/stop emctl start/stop dbconsole" Any help? -- Madunix_at_Gmail Sysadmin "Computers are useless. They can only give you answers" - Pablo Picasso "Never trust a computer you can't throw out a window." - Steve Wozniak -------------- next part
2008 Nov 15
1
Oracle start up script issue with RHEL3 Cluster
...status) status ;; *) echo $" Not Applicable" exit 1 esac echo "exiting script" exit $RETVAL ################################################################################### stopdb.sh /home/oracle/orahome/bin/sqlplus /nolog<<EOF connect sys/sysxyzcall at xyzcall as sysdba shutdown immediate; host lsnrctl stop quit; EOF exit ###################################################################################### startdb.sh ####################################################################### /home/oracle/orahome/...
2004 Sep 01
2
ocfs doesn't free space?
an ocfs-volume was nearly full (only 800MB free). i deleted some datafiles to free space: $ df -h . Filesystem Size Used Avail Use% Mounted on /dev/sdp1 10G 5.3G 4.8G 53% /db/DPS so there are more than 4GB available. $ sqlplus /nolog SQL*Plus: Release 9.2.0.4.0 - Production on Wed Sep 1 12:57:48 2004 Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved. SQL> connect / as sysdba; Connected. SQL> create tablespace data_dp datafile '/db/DPS/tablespaces/dp/data01.dbf' size 999m autoextend on...
2003 Jun 10
1
AW: Problems with machine accounts
...logons = Yes domain admin group = root @domainadmin os level = 64 preferred master = Yes domain master = Yes dns proxy = No wins support = Yes guest account = smbguest # add user script = /usr/sbin/useradd -d /var/empty -g 300 -s /sbin/nolog$ null passwords = yes /etc/passwd: COMPAQ3$:*:2003:300:Workstation:/var/empty:/sbin/nologin =================================================================== EASY and FREE access to your email anywhere: http://Mailreader.com/ =========================================================...
2005 Aug 29
14
Oracle 9.2.0.6 on Solaris 10
How can I tell if this is normal behaviour? Oracle imports are horribly slow, an order of magnitude slower than on the same hardware with a slower disk array and Solaris 9. What I can look for to see where the problem lies? The server is 99% idle right now, with one database running. Each sample is about 5 seconds. I''ve tried setting kernel parameters despite the docs saying that
2006 May 19
3
Oracle on ZFS vs. UFS
...ecompiled binaries for qgen and dbgen (SPARC + x86) if anyone wants to verify my tests. In most of these tests UFS was considerable faster than ZFS. I tested . ZFS with default options . ZFS with compression enabled . ZFS without checksums . UFS (newfs: -f 8192 -i 2097152; tunefs: -e 6144; mount: nologging) Below the (preliminary) results (with a 1GB dataset from dbgen), runtime in minutes:seconds UFS ZFS (default) ZFS+comp ZFS+nochksum db creation 0:38 0:42 0:18 0:40 catalog 6:19 12:05 11:...
2003 Jul 10
0
Error: Feature not enabled
Hi, My RAC installation (Redhat AS 2.1, OCFS, External Firewire) went okay to the point of creating the database. But when i wanted to startup the database: - sqlplus /nolog - startup I get the error: Feature not enabled: Real Application Clusters. Did i do something wrong? I still can't figure this thing out yet. Thanks. Regards, Faisal
2002 Aug 14
1
Changing ACLs
Hello, I'd like to know if it's _possible_ to change access control lists on a samba server (samba 2.2.3a, linux 2.4.19-xfs) using the tools MS windows (NT, w2k) provides. I already can change them using chacl, setfacl on the command line - this works without a problem. But the administrators I have to work with have absolutely no experience in *ix, they'd like to use their windows
2003 Jun 10
0
Problems with machine accounts
...logons = Yes domain admin group = root @domainadmin os level = 64 preferred master = Yes domain master = Yes dns proxy = No wins support = Yes guest account = smbguest # add user script = /usr/sbin/useradd -d /var/empty -g 300 -s /sbin/nolog$ null passwords = yes /etc/passwd: COMPAQ3$:*:2003:300:Workstation:/var/empty:/sbin/nologin =================================================================== EASY and FREE access to your email anywhere: http://Mailreader.com/ =========================================================...