11.17.2021
Solaris su error
2.06.2019
ERROR: Retrieving Ignite-UX version on the server: fully.qualied.domain
Add swacl for client and server:
client:
swacl -l root -M other:@ignite.server.fqdn:rt
Ignite server:
swacl -l root -M other:@client.hostname.fqdn:rt
1.11.2018
ilo ssh -- Received disconnect from XXXX: 11: Client Disconnect
From an HPUX box, if you can't connect to an ilo / ilo2 and you get this: Received disconnect from XXXX: 11: Client Disconnect
The fix is to either use putty or a linux host to ssh from, or use the following options:
ssh -o HostKeyAlgorithms=ssh-rsa,ssh-
12.29.2017
NFS Service Guard packages
For a big NFS server:
grep -e ^NFSD_SERVERS -e ^MAX_STATD_THREADS /etc/default/nfs
ch_rc -a -p NFSD_SERVERS=400 /etc/default/nfs
ch_rc -a -p MAX_STATD_THREADS=1600 /etc/default/nfs
12.21.2017
ERROR: Retrieving Ignite-UX version on the server
New IGNITE server install. Make_net_recovery on client fails with this: ERROR: Retrieving Ignite-UX version on the server
Fix by:
swacl -l host -M 'any_other:-r--t'
swacl -l root -M 'any_other:-r--t'
then run make_recovery again.
2.18.2016
12.29.2015
Google Now on Tap doesn't turn on
10.08.2015
lp printer save / restore
10.04.2015
chrome / chromebook sync issues
9.24.2015
8.31.2015
convert hex to binary in bash shell on linux
remember hex must be in uppercase for BC command on most linux / unix distros
echo "ibase=16;obase=2;000000004B817EFB" | bc
results:
1001011100000010111111011111011space it out to make it easier to read:alias spc=" sed 's/./& /g'"
echo "ibase=16;obase=2;000000004B817EFB" | bc | spc1 0 0 1 0 1 1 1 0 0 0 0 0 0 1 0 1 1 1 1 1 1 0 1 1 1 1 1 0 1 1
chrome remote desktop host component install for centos / rpm based distros
8.19.2015
find last ignite server used by client
5.09.2015
swpackage error / copy depot bundle to file
ERROR: The fileset XXXXX will not fit on the tape
"/tmp/XXX.depot". The fileset requires 4249089 Kbytes of
tape space, but the tape provides only 1298828 Kbytes. The
fileset requires a larger tape.
Fix by:
swpackage -s /source/dir -x allow_large_serial_depot=true -x media_capacity=50000 -x target_type=tape @ /ignite/r11.depot bundle/package/etc
media_capacity=larger than depot file
4.10.2015
ldapclientd won't start hpux
1.15.2015
sendmail errors: Deferred: local mailer (/usr/bin/rmail) exited with EX_TEMPF
11.27.2014
ssh doesn't work after ignite recovery
following shows up in syslog:
sshd[14702]: error: openpty: No such file or directory
sshd[14704]: error: session_pty_req: session 0 alloc failed
check another server with ssh working using lsof and you'll find
/dev/ptmx reference:
sshd 22391 root 7u STR 156,0 0t41177 2935 /dev/ptmx->ptm
re-create the device file using mknod to this:
crw-rw-rw- 1 root root 72 0x00009c Nov 27 04:23 /dev/ptmx
Also /dev/klog was missing (as seen in syslog) after the ignite recovery:
crw------- 1 bin bin 189 0x000000 Dec 22 2010 /dev/klog
