Is there something notable about this beyond just a new version?
CentOS 7 released on x86_64
11–20 of 123 posts
Re: CentOS 7 released on x86_64
#12Is there something notable about this beyond just a new version?
https://access.redhat.com/documentation/en-US/Red_Hat_Enterp...
Re: CentOS 7 released on x86_64
#13"CentOS is an Enterprise-class Linux Distribution derived from sources freely provided to the public by Red Hat." ? It used to be from a "Prominent North American Enterprise Linux Vendor". Something changed at some point.
Re: CentOS 7 released on x86_64
#14"CentOS is an Enterprise-class Linux Distribution derived from sources freely provided to the public by Red Hat." ? It used to be from a "Prominent North American Enterprise Linux Vendor". Something changed at some point.
http://www.redhat.com/about/news/press-archive/2014/1/red-ha...
Re: CentOS 7 released on x86_64
#15"CentOS is an Enterprise-class Linux Distribution derived from sources freely provided to the public by Red Hat." ? It used to be from a "Prominent North American Enterprise Linux Vendor". Something changed at some point.
http://lists.centos.org/pipermail/centos-announce/2014-Janua...
Re: CentOS 7 released on x86_64
#16512MB is the minimum memory requirement for CentOS-7 Well. Dangit. Grumble grumble...
Re: CentOS 7 released on x86_64
#17Woo. Have been using the RHEL 7 Amazon AMI images, and it's nice not to worry about shell scripts / custom supervisord stuff for your web services anymore. My node app is deployed with a single `myapp.service` file thanks to systemd: [Service] ExecStart=/usr/local/bin/node --harmony /var/www/myapp/server.js Restart=always User=nobody Group=nobody Environment=PATH=/usr/bin:/usr/local/bin Environment=NODE_ENV=productio…
Re: CentOS 7 released on x86_64
#18Woo. Have been using the RHEL 7 Amazon AMI images, and it's nice not to worry about shell scripts / custom supervisord stuff for your web services anymore. My node app is deployed with a single `myapp.service` file thanks to systemd: [Service] ExecStart=/usr/local/bin/node --harmony /var/www/myapp/server.js Restart=always User=nobody Group=nobody Environment=PATH=/usr/bin:/usr/local/bin Environment=NODE_ENV=productio…
that looks so much cleaner than init.d scripts. I have heard some people refer to systemd as not very linux-esque - can someone comment on what that might mean?