-
nikolam
I still wonder why SmartOS install on hardware, ignores static IP addresses set in /usbkey/config and always tries to set itselfs up on DHCP.
-
jbk
it's probably a problem with the configfile itself..
-
jbk
i've been using static IPs for the GZ for years
-
nikolam
Before, I have seen that I can not set static IP in config for only external interface. Now it seems it is the case for both interfaces.
-
nikolam
Does it depend if booted form the zones pool with piadm or from USB flash drive..
-
nikolam
jbk, you can ty it. just before reboot, connect smartos machine on different networks with different DHCP ip address ranges on them and see what happens.
-
nikolam
for admin and external
-
neirac
I tried to run Dtrace in a zone but I'm getting this error for this one liner: dtrace -n 'syscall::entry { @[execname] = count(); }'
-
neirac
dtrace: invalid probe specifier syscall::entry { @[execname] = count(); }: "/usr/lib/dtrace/scsi.d", line 46: translator member ic_cdb definition uses incompatible types: "uint8_t *" = "int ()"
-
neirac
I remember that worked, I'll check the omnios server also
-
jperkin
neirac: you're missing a ":" in your probe specifier
-
jperkin
i.e. syscall:::entry
-
neirac
jperkin thanks!!
-
neirac
I'll need to increase my font size, from now on
-
neirac
oh, same result with dtrace -n 'syscall:::entry { @[execname] = count(); }' ; now I was testing in gz
-
rmustacc
Did you build your own image?
-
rmustacc
I expect if you add '-x nolibs' it'll work.
-
neirac
rmustacc yes, I build an iso to test some changes I was doing in SmartOS
-
rmustacc
Were you maually using dmake install versus rerunning nightly?
-
neirac
rmustacc that worked, I used the gmake iso target in smartos
-
rmustacc
Anyways, I'd expect -x nolibs would work.
-
rmustacc
Right, but if it was a custom build, presumably you were doing stuff ahead of that.
-
neirac
yes -x nolibs worked, thanks a lot.
-
rmustacc
So, there haven't been any changes to the scsi_task_t that the translator is there so my suspicion is that somehow you changed genunix but didn't end up having all the kernel modules rebuilt.
-
rmustacc
As what you're getting is basically a mismatch in ctf uniquification.
-
neirac
rmustacc now I'll know what happened if I see an error like that again. I have a question. to test changes upstream I need to run a distribution that uses illumos-gate? in other opportunities I was lucky and did not find changes between gate and illumos-joyent or illumos-omnios, now I don't have that luck.