I cannot get in boot from hard drive option for Ubuntu 18.04
I have installed Ubuntu 18.04, but somehow I cannot get wifi logo.
So I am trying to reinstall ubuntu.
My computer is HP 17-ca0205ng.
When I restart the computer if I press esc key, I can get in options.
startup menu
F1 system information
F2 system dianosis
F9 boot device options
F10 BIOS setup
F11 system recovery
I tried each of them, but can never get in any option to select starting from hardware.
software-installation
add a comment |
I have installed Ubuntu 18.04, but somehow I cannot get wifi logo.
So I am trying to reinstall ubuntu.
My computer is HP 17-ca0205ng.
When I restart the computer if I press esc key, I can get in options.
startup menu
F1 system information
F2 system dianosis
F9 boot device options
F10 BIOS setup
F11 system recovery
I tried each of them, but can never get in any option to select starting from hardware.
software-installation
What is "wifi logo"? If that means that Wi-Fi doesn't work, re-installation won't fix it.
– Pilot6
Feb 27 at 16:10
add a comment |
I have installed Ubuntu 18.04, but somehow I cannot get wifi logo.
So I am trying to reinstall ubuntu.
My computer is HP 17-ca0205ng.
When I restart the computer if I press esc key, I can get in options.
startup menu
F1 system information
F2 system dianosis
F9 boot device options
F10 BIOS setup
F11 system recovery
I tried each of them, but can never get in any option to select starting from hardware.
software-installation
I have installed Ubuntu 18.04, but somehow I cannot get wifi logo.
So I am trying to reinstall ubuntu.
My computer is HP 17-ca0205ng.
When I restart the computer if I press esc key, I can get in options.
startup menu
F1 system information
F2 system dianosis
F9 boot device options
F10 BIOS setup
F11 system recovery
I tried each of them, but can never get in any option to select starting from hardware.
software-installation
software-installation
asked Feb 27 at 16:08
HaiyingHaiying
1
1
What is "wifi logo"? If that means that Wi-Fi doesn't work, re-installation won't fix it.
– Pilot6
Feb 27 at 16:10
add a comment |
What is "wifi logo"? If that means that Wi-Fi doesn't work, re-installation won't fix it.
– Pilot6
Feb 27 at 16:10
What is "wifi logo"? If that means that Wi-Fi doesn't work, re-installation won't fix it.
– Pilot6
Feb 27 at 16:10
What is "wifi logo"? If that means that Wi-Fi doesn't work, re-installation won't fix it.
– Pilot6
Feb 27 at 16:10
add a comment |
1 Answer
1
active
oldest
votes
You can't see the "WiFi Logo" because you're missing the drivers for your Wireless Card, which should be "Realtek RTL8821CE 802.11" in your case.
There is no original driver for that card so you'll have to install it from an external repo.
You need the sources and re-build it:
sudo apt-get install --reinstall git dkms build-essential linux-headers-$(uname -r)
git clone https://github.com/tomaspinho/rtl8821ce
cd rtl8821ce
chmod +x dkms-install.sh
chmod +x dkms-remove.sh
sudo ./dkms-install.sh
Reboot and try again.
Why do you think OP has Realtek RTL8821CE?
– Pilot6
Feb 27 at 16:35
Because of the computer model
– Cristian Vrinceanu
Feb 27 at 16:36
If you have the same model, it doesn't mean that you have the same wireless adapter.
– Pilot6
Feb 27 at 16:37
Let's say i'm taking a guess than... but pretty sure he has that wireless card
– Cristian Vrinceanu
Feb 27 at 16:40
It is a bad idea to guess this way and suggest some commands to a newbie. I came across so many cases when people were pretty sure that the adapters are same and confused everything. Vendors don't fix this type of hardware with models. They install what they have at the moment.
– Pilot6
Feb 27 at 16:42
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1121742%2fi-cannot-get-in-boot-from-hard-drive-option-for-ubuntu-18-04%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You can't see the "WiFi Logo" because you're missing the drivers for your Wireless Card, which should be "Realtek RTL8821CE 802.11" in your case.
There is no original driver for that card so you'll have to install it from an external repo.
You need the sources and re-build it:
sudo apt-get install --reinstall git dkms build-essential linux-headers-$(uname -r)
git clone https://github.com/tomaspinho/rtl8821ce
cd rtl8821ce
chmod +x dkms-install.sh
chmod +x dkms-remove.sh
sudo ./dkms-install.sh
Reboot and try again.
Why do you think OP has Realtek RTL8821CE?
– Pilot6
Feb 27 at 16:35
Because of the computer model
– Cristian Vrinceanu
Feb 27 at 16:36
If you have the same model, it doesn't mean that you have the same wireless adapter.
– Pilot6
Feb 27 at 16:37
Let's say i'm taking a guess than... but pretty sure he has that wireless card
– Cristian Vrinceanu
Feb 27 at 16:40
It is a bad idea to guess this way and suggest some commands to a newbie. I came across so many cases when people were pretty sure that the adapters are same and confused everything. Vendors don't fix this type of hardware with models. They install what they have at the moment.
– Pilot6
Feb 27 at 16:42
add a comment |
You can't see the "WiFi Logo" because you're missing the drivers for your Wireless Card, which should be "Realtek RTL8821CE 802.11" in your case.
There is no original driver for that card so you'll have to install it from an external repo.
You need the sources and re-build it:
sudo apt-get install --reinstall git dkms build-essential linux-headers-$(uname -r)
git clone https://github.com/tomaspinho/rtl8821ce
cd rtl8821ce
chmod +x dkms-install.sh
chmod +x dkms-remove.sh
sudo ./dkms-install.sh
Reboot and try again.
Why do you think OP has Realtek RTL8821CE?
– Pilot6
Feb 27 at 16:35
Because of the computer model
– Cristian Vrinceanu
Feb 27 at 16:36
If you have the same model, it doesn't mean that you have the same wireless adapter.
– Pilot6
Feb 27 at 16:37
Let's say i'm taking a guess than... but pretty sure he has that wireless card
– Cristian Vrinceanu
Feb 27 at 16:40
It is a bad idea to guess this way and suggest some commands to a newbie. I came across so many cases when people were pretty sure that the adapters are same and confused everything. Vendors don't fix this type of hardware with models. They install what they have at the moment.
– Pilot6
Feb 27 at 16:42
add a comment |
You can't see the "WiFi Logo" because you're missing the drivers for your Wireless Card, which should be "Realtek RTL8821CE 802.11" in your case.
There is no original driver for that card so you'll have to install it from an external repo.
You need the sources and re-build it:
sudo apt-get install --reinstall git dkms build-essential linux-headers-$(uname -r)
git clone https://github.com/tomaspinho/rtl8821ce
cd rtl8821ce
chmod +x dkms-install.sh
chmod +x dkms-remove.sh
sudo ./dkms-install.sh
Reboot and try again.
You can't see the "WiFi Logo" because you're missing the drivers for your Wireless Card, which should be "Realtek RTL8821CE 802.11" in your case.
There is no original driver for that card so you'll have to install it from an external repo.
You need the sources and re-build it:
sudo apt-get install --reinstall git dkms build-essential linux-headers-$(uname -r)
git clone https://github.com/tomaspinho/rtl8821ce
cd rtl8821ce
chmod +x dkms-install.sh
chmod +x dkms-remove.sh
sudo ./dkms-install.sh
Reboot and try again.
answered Feb 27 at 16:30
Cristian VrinceanuCristian Vrinceanu
1005
1005
Why do you think OP has Realtek RTL8821CE?
– Pilot6
Feb 27 at 16:35
Because of the computer model
– Cristian Vrinceanu
Feb 27 at 16:36
If you have the same model, it doesn't mean that you have the same wireless adapter.
– Pilot6
Feb 27 at 16:37
Let's say i'm taking a guess than... but pretty sure he has that wireless card
– Cristian Vrinceanu
Feb 27 at 16:40
It is a bad idea to guess this way and suggest some commands to a newbie. I came across so many cases when people were pretty sure that the adapters are same and confused everything. Vendors don't fix this type of hardware with models. They install what they have at the moment.
– Pilot6
Feb 27 at 16:42
add a comment |
Why do you think OP has Realtek RTL8821CE?
– Pilot6
Feb 27 at 16:35
Because of the computer model
– Cristian Vrinceanu
Feb 27 at 16:36
If you have the same model, it doesn't mean that you have the same wireless adapter.
– Pilot6
Feb 27 at 16:37
Let's say i'm taking a guess than... but pretty sure he has that wireless card
– Cristian Vrinceanu
Feb 27 at 16:40
It is a bad idea to guess this way and suggest some commands to a newbie. I came across so many cases when people were pretty sure that the adapters are same and confused everything. Vendors don't fix this type of hardware with models. They install what they have at the moment.
– Pilot6
Feb 27 at 16:42
Why do you think OP has Realtek RTL8821CE?
– Pilot6
Feb 27 at 16:35
Why do you think OP has Realtek RTL8821CE?
– Pilot6
Feb 27 at 16:35
Because of the computer model
– Cristian Vrinceanu
Feb 27 at 16:36
Because of the computer model
– Cristian Vrinceanu
Feb 27 at 16:36
If you have the same model, it doesn't mean that you have the same wireless adapter.
– Pilot6
Feb 27 at 16:37
If you have the same model, it doesn't mean that you have the same wireless adapter.
– Pilot6
Feb 27 at 16:37
Let's say i'm taking a guess than... but pretty sure he has that wireless card
– Cristian Vrinceanu
Feb 27 at 16:40
Let's say i'm taking a guess than... but pretty sure he has that wireless card
– Cristian Vrinceanu
Feb 27 at 16:40
It is a bad idea to guess this way and suggest some commands to a newbie. I came across so many cases when people were pretty sure that the adapters are same and confused everything. Vendors don't fix this type of hardware with models. They install what they have at the moment.
– Pilot6
Feb 27 at 16:42
It is a bad idea to guess this way and suggest some commands to a newbie. I came across so many cases when people were pretty sure that the adapters are same and confused everything. Vendors don't fix this type of hardware with models. They install what they have at the moment.
– Pilot6
Feb 27 at 16:42
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1121742%2fi-cannot-get-in-boot-from-hard-drive-option-for-ubuntu-18-04%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
What is "wifi logo"? If that means that Wi-Fi doesn't work, re-installation won't fix it.
– Pilot6
Feb 27 at 16:10