I was about to say it may be an issue with initrd, but looking closer, it appears that you are booting to the bash prompt instead.
So it looks like it is jumping into single user mode by default. In that case, run:
init 3
(for multi-user network access)
Or:
init 5
(for multi-user network access with GUI)
if you can boot to either one, I suggest you look in /etc/inittab and make sure that it boots to the appropriate multi-user level by looking for this line:
id:3:initdefault:
EDIT: I just realize you are booting with init=/bin/bash, which meant you are bypassing /etc/inittab. In fact, I was able to reproduce it by adding init=/bin/bash within my Centos VM.
Restart again, but this time, remove init=/bin/bash.
I was about to say it may be an issue with initrd, but looking closer, it appears that you are booting to the bash prompt instead.
So it looks like it is jumping into single user mode by default. In that case, run:
(for multi-user network access)
Or:
(for multi-user network access with GUI)
if you can boot to either one, I suggest you look in /etc/inittab and make sure that it boots to the appropriate multi-user level by looking for this line:
EDIT: I just realize you are booting with init=/bin/bash, which meant you are bypassing /etc/inittab. In fact, I was able to reproduce it by adding init=/bin/bash within my Centos VM.
Restart again, but this time, remove init=/bin/bash.