Y
Hacker News
new
|
ask
|
show
|
jobs
by
digitalsushi
2606 days ago
anyone have any insights on how oracle does their intake of this to create OEL? it's always been a bit of a mystery to me.
1 comments
pnutjam
2606 days ago
Download CentOS
grep -rli 'centos' * | xargs -i @sed -i 's/centos]/Oracle\ Unbreakable\ Linux/gi' @
done
link
devops4free
2606 days ago
Why would you waste cycles invoking grep and xargs and memory piping data back and forth, where pure sed can do it? ;)
link
pnutjam
2606 days ago
Oracle has some pretty beefy hardware. They can afford the cycles. ;)
link
pjmlp
2606 days ago
It is a little bit more than that.
link
digitalsushi
2606 days ago
I know there's quite a bit of testing involved to verify their unbreakable kernel stuff and ksplice stuff is compatible. I would suspect there is also the spacewalk integration stuff that is fairly different than redhat's satellite stuff.
link
pnutjam
2606 days ago
I didn't realize, until recently, that satellite 6 is no longer based on spacewalk.
link
rurban
2605 days ago
DTrace esp.
link
grep -rli 'centos' * | xargs -i @sed -i 's/centos]/Oracle\ Unbreakable\ Linux/gi' @
done