诺基亚手机Unable to find a 宏基笔记本nobootablee option. Press any key to shut down

grubby fatal error: unable to find a suitable template
Related questions
grubby fatal error: unable to find a suitable template
imported from
So I upgraded kernel yum -y update kernel on my AWS EC2 base image, and I get the following:
Running Transaction
Installing : kernel-2.6.32-504.3.3.el6.x86_64
grubby fatal error: unable to find a suitable template
Here is the contents of /boot/grub/grub.conf:
hiddenmenu
title CentOS (2.6.32-358.el6.x86_64)
root (hd0,0)
kernel /boot/vmlinuz-2.6.32-358.el6.x86_64 ro root=LABEL=rootfs console=ttyS0
initrd /boot/initramfs-2.6.32-358.el6.x86_64.img
So grub.conf is not getting updated, and since I already have kernel-2.6.32-504.1.3.el6.x86_64 installed, grub did not get updated the last time I updated kernel either. I tried adding the kernel manually:
grubby --grub --add-kernel="/boot/vmlinuz-2.6.32-504.3.3.el6.x86_64 ro root=LABEL=rootfs \
console=ttyS0" --title="CentOS (2.6.32-504.3.3.el6.x86_64)" \
--initrd=/boot/initramfs-2.6.32-504.3.3.el6.x86_64.img
and then /boot/grub/grub.conf looked like this:
hiddenmenu
title CentOS (2.6.32-504.3.3.el6.x86_64)
kernel /vmlinuz-2.6.32-504.3.3.el6.x86_64 ro root=LABEL=rootfs console=ttyS0
initrd /initramfs-2.6.32-504.3.3.el6.x86_64.img
title CentOS (2.6.32-358.el6.x86_64)
root (hd0,0)
kernel /boot/vmlinuz-2.6.32-358.el6.x86_64 ro root=LABEL=rootfs console=ttyS0
initrd /boot/initramfs-2.6.32-358.el6.x86_64.img
However, /vmlinuz-2.6.32-504.3.3.el6.x86_64 is not the kernel I entered. So I removed that and tried again with:
grubby --grub --add-kernel="/boot/boot/vmlinuz-2.6.32-504.3.3.el6.x86_64 ro root=LABEL=rootfs \
console=ttyS0" --title="CentOS (2.6.32-504.3.3.el6.x86_64)" \
--initrd=/boot/boot/initramfs-2.6.32-504.3.3.el6.x86_64.img
which resulted in this:
hiddenmenu
title CentOS (2.6.32-504.3.3.el6.x86_64)
kernel /boot/vmlinuz-2.6.32-504.3.3.el6.x86_64 ro root=LABEL=rootfs console=ttyS0 root=(hd0,0)
initrd /boot/initramfs-2.6.32-504.3.3.el6.x86_64.img
title CentOS (2.6.32-358.el6.x86_64)
root (hd0,0)
kernel /boot/vmlinuz-2.6.32-358.el6.x86_64 ro root=LABEL=rootfs console=ttyS0
initrd /boot/initramfs-2.6.32-358.el6.x86_64.img
At this point, I manually edited /boot/grub/grub.conf to default=0 and rebooted, and my EC2 wouldn't boot. So I tried a new instance copy and got all these same errors, so I copied the existing settings to a new entry:
hiddenmenu
title CentOS (2.6.32-504.3.3.el6.x86_64)
root (hd0,0)
kernel /boot/vmlinuz-2.6.32-504.3.3.el6.x86_64 ro root=LABEL=rootfs console=ttyS0
initrd /boot/initramfs-2.6.32-504.3.3.el6.x86_64.img
And rebooted, and it fails to boot again. Yet another try, I repeated the above but with root=/dev/xvda3, and that failed to boot as well. So at this point, I have no way at all of upgrading my kernel. What do I do?
UPDATE: I figured out the /boot/boot/ stuff, and my /boot/grub/grub.conf now looks like this:
hiddenmenu
title CentOS (2.6.32-504.3.3.el6.x86_64)
root (hd0,0)
kernel /vmlinuz-2.6.32-504.3.3.el6.x86_64 ro root=LABEL=rootfs console=ttyS0
initrd /initramfs-2.6.32-504.3.3.el6.x86_64.img
And I can successfully boot my system, however everything else about this remains true: installing a new kernel still results in "grubby fatal error: unable to find a suitable template", and grubby --default-kernel still results in no output. I have to edit my /boot/grub/grub.conf manually for any kernel update.
See also questions close to this topic
I am trying to run an C# program on my Raspberry Pi 3 using mono. The program starts correctly, but as soon as I reach a point where I use some OpenCV libraries the program error with the following output:
Unhandled Exception:
System.TypeInitializationException: The type initializer for 'Emgu.CV.CvInvoke' threw an exception. ---& System.DllNotFoundException: opencv_core220
at (wrapper managed-to-native) Emgu.CV.CvInvoke:cvRedirectError (Emgu.CV.CvInvoke/CvErrorCallback,intptr,intptr)
at Emgu.CV.CvInvoke..cctor () [0x00023] in &4f43ef68bef85f9cebb2b6&:0
--- End of inner exception stack trace ---
at Emgu.CV.Image`2[TColor,TDepth].AllocateData (System.Int32 rows, System.Int32 cols, System.Int32 numberOfChannels) [0x0002e] in &4f43ef68bef85f9cebb2b6&:0
at Emgu.CV.Image`2[TColor,TDepth].set_Bitmap (System.Drawing.Bitmap value) [0x00050] in &4f43ef68bef85f9cebb2b6&:0
at Emgu.CV.Image`2[TColor,TDepth]..ctor (System.Drawing.Bitmap bmp) [0x00008] in &4f43ef68bef85f9cebb2b6&:0
at App.Program.Main (System.String[] args) [0x00122] in &b44d2f4f9fba3e6a1570f&:0
[ERROR] FATAL UNHANDLED EXCEPTION: System.TypeInitializationException: The type initializer for 'Emgu.CV.CvInvoke' threw an exception. ---& System.DllNotFoundException: opencv_core220
at (wrapper managed-to-native) Emgu.CV.CvInvoke:cvRedirectError (Emgu.CV.CvInvoke/CvErrorCallback,intptr,intptr)
at Emgu.CV.CvInvoke..cctor () [0x00023] in &4f43ef68bef85f9cebb2b6&:0
--- End of inner exception stack trace ---
at Emgu.CV.Image`2[TColor,TDepth].AllocateData (System.Int32 rows, System.Int32 cols, System.Int32 numberOfChannels) [0x0002e] in &4f43ef68bef85f9cebb2b6&:0
at Emgu.CV.Image`2[TColor,TDepth].set_Bitmap (System.Drawing.Bitmap value) [0x00050] in &4f43ef68bef85f9cebb2b6&:0
at Emgu.CV.Image`2[TColor,TDepth]..ctor (System.Drawing.Bitmap bmp) [0x00008] in &4f43ef68bef85f9cebb2b6&:0
at App.Program.Main (System.String[] args) [0x00122] in &b44d2f4f9fba3e6a1570f&:0
The mentioned library "opencv_core220" is a dll located in the same directory as the exe I exececute using mono.
What can I do to fix this problem?
I never worked with mono so far, but I read you can not use dlls on linux, like on windows, but you have to use so-files. But I got no idea how to get them from my dlls.
The program totally works on windows.
I have created a VRF and I have added interfaces and routes to my VRF. My VRF is as shown below.
My VRF is names wan1:
[root@host ~]# ip route list vrf wan1
default via 12.12.12.12 dev enp1s0.4025
12.12.12.0/25 dev enp1s0.4025 proto kernel scope link src 12.12.12.1
12.12.12.1 dev enp1s0.4025 scope link
My VRF can ping:
[root@host ~]# ping 8.8.8.8 -I wan1
ping: Warning: source address might be selected on device other than wan1.
PING 8.8.8.8 (8.8.8.8) from 12.12.12.12 wan1: 56(84) bytes of data.
64 bytes from 8.8.8.8: icmp_seq=1 ttl=120 time=4.54 ms
64 bytes from 8.8.8.8: icmp_seq=2 ttl=120 time=4.54 ms
However, when I try to start a program in my VRF, I get the following error:
[root@pedge ~]# ip vrf exec wan1 /usr/sbin/ssh root@1.2.3.4
Failed to mount cgroup2: No such file or directory
I know my kernel supports:
[root@pedge network-scripts]# cat /proc/filesystems
securityfs
Any ideas why I am getting that error? I am running on Centos 7 with kernel 4.17.10-1
Thanks for any help
when I try to write:
let ID_DOCKER=$(sudo docker ps | grep gagareg/jenkins_with_dsl_plugin:2_1 |awk '{print $1}')
I get the following warning:
bash: let: ID_DOCKER=58d4f297cc57: value too great for base (error token is "58d4f297cc57")
I found a solution here
I try use 10#
everywhere I could think.
bad substitution
I'm developing device which has to communicate with PC via RS-232. I need to communicate in both ways - from device to PC and vice-versa.
From PC I need to send some informations about temperature and overall CPU/RAM/ROM usage, and from my device I will be sending simple messages about current state.
I have started writing simple app (Linux) for communication which is supposed to run in background, but I have realised that it could be not the best idea, so I'm asking.
Questions:
Kernel/User space - should it be some kind of kernel module or as I'm doing it now just an app in the user space?
if kernel module how to start with this? I have written simple modules but everything was for virtual devices.
if user space should I pay attention to something specific? Is there any way to block ability to kill this app?
How to write drivers for such device in Windows? I don't even know where to start.
Driver has to always be on while the device is connected.
User shouldn't have right to stop this driver.
Is there any way to install this driver from the device? I mean, when I connect it for the first time is there a way to load the driver from the device's memory and install it?
I would be grateful for any help and good examples of such drivers.
I might be sounding like a noob while asking this question but I really want to know how can I get the time from when my screen is on. Not the system up time but the screen up time. I want to use this time in a python app. So please tell me if there is any way to get that. Thanks in advance.
I'm trying to perform kernel PCA in R using the function kpca from the kernlab package. However, it seems that my data is too big to be used for this function.
This is the kernel PCA command I'm using:
kpc &- kpca(~.,data=pca.train[,1:13],kernel="rbfdot",
kpar=list(sigma=0.2),features=2)
And this this the error I'm getting:
Error: cannot allocate vector of size 1.1 Gb
Note that I performed PCA using prcomp() function using the same data set and it worked perfectly. Any ideas how I can overcome this error and perform kernel PCA smoothly in R?
Why is my data from my web form not updated to my database, H2, Spring Boot
&form action = "addAlien"&
&input type ="text" name="aid", value="123"&&br&
&input type ="text" name="aname"&&br&
&input type ="text" name="aship"&&br&
&input type ="submit"&&br&
Just downloaded Raspbian from RaspberryPi.org and flashed using Etcher/Windows10 64bit, on a 32GB microSD card. Popped into a Raspberry Pi 2. After 2-3 seconds boot process gives error (screenshot attached).
Windows 10 IoT on a separate card boots just fine on same pi.
(screenshot looks fine on my phone but got flipped after uploading, sorry)
I've got a JCOP card.
Have issued an erroneous command to modify it's ATR.
The horror is the card appears to not to return an ATR at all.
Now that the card is responding in a Windows app:
SCardConnect()
ERROR: The chip card is not responding to a reset.
SCardConnect(... SCARD_SHARE_(SHARED|DIRECT), SCARD_PROTOCOL_RAW, ...);
Failure with either SCARD_SHARE_...
I found here:
that for SCARD_PROTOCOL_RAW the wincard.c is using IFDControl_v2
instead of IFDTransmit.
Please tell me if it worthwhile to write a linux app based on pcsc-lite
doing the same task?
I want to somehow issue 2 commands:
1. 00A4040010 [Transport-Key] (OPEN the card)
2. 00F00000 (BOOT the card)
These shall definitely reset the ATR so that i will resurrect the card!
Does anybody know another way to reset such a card?
I have already used the grub bootloader as a second stage bootloader after U-boot, but I want to know if there is a possibility to use the grub bootloader as a first bootloader ?
I have been working upon creating a multibootable pendrive which is quite originated from KARTANA that was introduced in defcon 18'.
I need the possibility debade about putting an authentication to this drive.
How can i go about developing an authentication algorithm for this thumb drive.
Waiting for the experts to help me out.
I work in a lab where I am configuring a small computer to eventually be used to collect data on an instrument. The computer has a 32Gb SD card as its main storage device. I am using Ubuntu 10.04, as a previous version of the project had a disk image of its computer. I was able to use dd to load an old backup onto this 32Gb SD card and boot it. I will call this Partition 1.
For redundancy, we want to have a bootable backup copy of Parition 1 and its operating system at some other place on the SD card. It was easy enough for me to create a new partition (Parition 2) on the SD card, and then copy all necessary files via rsync's archive abilities. My trouble is now making Partition 2 bootable. The trouble is that both partitions are on the same 32Gb SD card, and I don't know how to not mess up the boot-up process, or even how to get grub to recognize that there are two options to bot from. I know I will need to go in and change the UUID's and all of that. I can't help but think there is an easier way to do this than manually going in and changing files.
Has anyone done something similar to this, and if so, what tools were useful? Also, what steps do I need to follow?
Any insight or pointing to a good reference is very appreciated.db:: 3.75::unable to find a volume with enough disk space for file extraction when trying to to watch a movie on netflix with Silverlight plug-in c7
Widget settings form goes here拒绝访问 | bbs.wfun.com | 百度云加速
请打开cookies.
此网站 (bbs.wfun.com) 的管理员禁止了您的访问。原因是您的访问包含了非浏览器特征(441f9f1fa6d343cb-ua98).
重新安装浏览器,或使用别的浏览器豆丁微信公众号
君,已阅读到文档的结尾了呢~~
Data Lifeguard Diagnostic Utility
扫扫二维码,随身浏览文档
手机或平板扫扫即可继续访问
Data Lifeguard Diagnostic Utility
举报该文档为侵权文档。
举报该文档含有违规或不良信息。
反馈该文档无法正常浏览。
举报该文档为重复文档。
推荐理由:
将文档分享至:
分享完整地址
文档地址:
粘贴到BBS或博客
flash地址:
支持嵌入FLASH地址的网站使用
html代码:
&embed src='http://www.docin.com/DocinViewer-4.swf' width='100%' height='600' type=application/x-shockwave-flash ALLOWFULLSCREEN='true' ALLOWSCRIPTACCESS='always'&&/embed&
450px*300px480px*400px650px*490px
支持嵌入HTML代码的网站使用
您的内容已经提交成功
您所提交的内容需要审核后才能发布,请您等待!
3秒自动关闭窗口ERRROR:Unable to find a bootableoption.Press any key to shut down_百度知道
ERRROR:Unable to find a bootableoption.Press any key to shut down
今天早上更新在后来卡住了让后我强制重启了就一直出新ERRROR:Unabletofindabootableoption.Pressanykeytoshutdown请问各位大神咋解决啊..现在都开不了机说错了出现的是“Error:unnble...
今天早上更新在 后来卡住了让后我强制重启了 就一直出新ERRROR:Unable to find a bootableoption.Press any key to shut down 请问各位大神咋解决啊..现在都开不了机说错了 出现的是“Error:unnble to find a bootable option,press any key to shut down
答题抽奖
首次认真答题后
即可获得3次抽奖机会,100%中奖。
你的回答被采纳后将获得:
系统奖励15(财富值+成长值)+难题奖励10(财富值+成长值)+提问者悬赏5(财富值+成长值)
为你推荐:
其他类似问题
个人、企业类
违法有害信息,请在下方选择后提交
色情、暴力
我们会通过消息、邮箱等方式尽快将举报结果通知您。

我要回帖

更多关于 宏碁nobootable修复 的文章

 

随机推荐