Name | efibootdude JSON |
Version |
0.5.1
JSON |
| download |
home_page | None |
Summary | A visual wrapper for efibootmgr |
upload_time | 2024-06-29 11:36:58 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.8 |
license | MIT |
keywords |
app
installer
manager
appimages
|
VCS |
|
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
# EfiBootDude
`efibootdude` presents a visual (curses) interface to `efibootmgr` which allows editing the bios
boot menu and parameters while running Linux.
* Install `efibootdude` using `pipx install efibootdude`, or however you do so.
* Prerequisites: install [rhboot/efibootmgr](https://github.com/rhboot/efibootmgr)
* For example, on a Debian derived distro, use `sudo apt install efibootmgr`.
`efibootdude` covers only the most commonly used capabilities of `efibootmgr` including:
* reordering boot entries,
* removing boot entries,
* setting the boot entry for the next boot only,
* setting boot entries active or inactive, and
* setting the boot menu timeout value (until it boots the default entry).
To be sure, there are many other esoteric uses of `efibootmanager` including adding
a new boot entry; for such needs, just use `efibootmgr` directly.
## Usage
After running `efibootdude` and making some changes, you'll see a screen comparable to this:
![efibootdude-screenshot](https://github.com/joedefen/efibootdude/blob/main/images/efibootdude-screenshot.png?raw=true).
At this point
* The "current" line starts with `>` and is highlighted.
* The top line shows actions for the current line; type the underscored letter
to effect its action.
* Type `?` for a more complete explanation of the keys, navigation keys, etc.
* **ALWAYS** view the help at least once if unfamiliar with this tool,
it navigation, and/or uncertain of keys not shown on top line.
* With this current line, we can:
* Type `u` or `d` to move it up or down in the boot order.
* Type `t` to relabel the boot entry.
* Type `r` to remove the boot entry.
* And so forth.
* The entries with `*` on the left are active boot entries; toggle whether
active by typing `*` for the corresponding entries.
* Press `ESC` key to abandon any changes and reload the boot information.
* When ready to write the changes to the BIOS, enter `w`.
* When writing the changes, `efibootdude` drops out of menu mode so you can
verify the underlying commands, error codes, and error messages.
* After you write changes, type `b` to reboot, if you wish and the boot menu looks OK.
* BTW, the top-line keys vary per context; e.g.:
* `w` is only shown with pending changes, and
* `b` is only shown w/o pending changes.
## Caveats
* Some operations may not work permanently even though there is no indication from `efibootmgr`
(e.g., on my desktop, I cannot re-label boot entries).
* Some operations may only work (again) after re-booting (e.g., you might find activating
an entry does not work, but it does so after a reboot).
## About this Project
This project was inspired by [Elinvention/efiboots](https://github.com/Elinvention/efiboots). Relative to that project, the aims of `efibootdude` are:
* to be easier to install especially when not in your distro's repos.
* to clearly present the partition of the boot entries (as a mount point if mounted and, otherwise, the device pathname).
* to show the underlying commands being run for education, for verification, and for help on investigating issues.
Raw data
{
"_id": null,
"home_page": null,
"name": "efibootdude",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": null,
"keywords": "app, installer, manager, appimages",
"author": null,
"author_email": "Joe Defen <joedef@duck.com>",
"download_url": "https://files.pythonhosted.org/packages/cc/31/89ab04232ef0549ac6bb1730d2b3ab8013777423c32543072114926b07e7/efibootdude-0.5.1.tar.gz",
"platform": null,
"description": "# EfiBootDude\n`efibootdude` presents a visual (curses) interface to `efibootmgr` which allows editing the bios\nboot menu and parameters while running Linux.\n\n* Install `efibootdude` using `pipx install efibootdude`, or however you do so.\n* Prerequisites: install [rhboot/efibootmgr](https://github.com/rhboot/efibootmgr)\n * For example, on a Debian derived distro, use `sudo apt install efibootmgr`.\n\n\n`efibootdude` covers only the most commonly used capabilities of `efibootmgr` including:\n* reordering boot entries,\n* removing boot entries,\n* setting the boot entry for the next boot only,\n* setting boot entries active or inactive, and\n* setting the boot menu timeout value (until it boots the default entry).\n\nTo be sure, there are many other esoteric uses of `efibootmanager` including adding\na new boot entry; for such needs, just use `efibootmgr` directly.\n \n## Usage\nAfter running `efibootdude` and making some changes, you'll see a screen comparable to this:\n\n![efibootdude-screenshot](https://github.com/joedefen/efibootdude/blob/main/images/efibootdude-screenshot.png?raw=true).\n\nAt this point\n* The \"current\" line starts with `>` and is highlighted.\n* The top line shows actions for the current line; type the underscored letter\n to effect its action.\n* Type `?` for a more complete explanation of the keys, navigation keys, etc.\n * **ALWAYS** view the help at least once if unfamiliar with this tool,\n it navigation, and/or uncertain of keys not shown on top line.\n* With this current line, we can:\n * Type `u` or `d` to move it up or down in the boot order.\n * Type `t` to relabel the boot entry.\n * Type `r` to remove the boot entry.\n * And so forth.\n* The entries with `*` on the left are active boot entries; toggle whether\n active by typing `*` for the corresponding entries.\n* Press `ESC` key to abandon any changes and reload the boot information.\n* When ready to write the changes to the BIOS, enter `w`.\n* When writing the changes, `efibootdude` drops out of menu mode so you can\n verify the underlying commands, error codes, and error messages.\n* After you write changes, type `b` to reboot, if you wish and the boot menu looks OK.\n* BTW, the top-line keys vary per context; e.g.:\n * `w` is only shown with pending changes, and\n * `b` is only shown w/o pending changes.\n\n## Caveats\n* Some operations may not work permanently even though there is no indication from `efibootmgr`\n (e.g., on my desktop, I cannot re-label boot entries).\n* Some operations may only work (again) after re-booting (e.g., you might find activating\n an entry does not work, but it does so after a reboot).\n\n## About this Project\nThis project was inspired by [Elinvention/efiboots](https://github.com/Elinvention/efiboots). Relative to that project, the aims of `efibootdude` are:\n* to be easier to install especially when not in your distro's repos.\n* to clearly present the partition of the boot entries (as a mount point if mounted and, otherwise, the device pathname).\n* to show the underlying commands being run for education, for verification, and for help on investigating issues.\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "A visual wrapper for efibootmgr",
"version": "0.5.1",
"project_urls": {
"Bug Tracker": "https://github.com/joedefen/efibootdude/issues",
"Homepage": "https://github.com/joedefen/efibootdude"
},
"split_keywords": [
"app",
" installer",
" manager",
" appimages"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "62051ef6492e9ca1fa51084e78a0c587ec645614089dad9a3e54fcaab76afa12",
"md5": "eb4819db296d52ed7c5ae77e4baf186c",
"sha256": "5f470f06cd053f089dd5c20522f7029cd581d52682cf03a8b451fdf1d2837a50"
},
"downloads": -1,
"filename": "efibootdude-0.5.1-py3-none-any.whl",
"has_sig": false,
"md5_digest": "eb4819db296d52ed7c5ae77e4baf186c",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.8",
"size": 17110,
"upload_time": "2024-06-29T11:36:57",
"upload_time_iso_8601": "2024-06-29T11:36:57.126909Z",
"url": "https://files.pythonhosted.org/packages/62/05/1ef6492e9ca1fa51084e78a0c587ec645614089dad9a3e54fcaab76afa12/efibootdude-0.5.1-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cc3189ab04232ef0549ac6bb1730d2b3ab8013777423c32543072114926b07e7",
"md5": "5229662e238e08faf61c6c877c44c69d",
"sha256": "2852001fd84c45622e9a1aa4c141415adf9825dd048853b9926ca7fffebb84b4"
},
"downloads": -1,
"filename": "efibootdude-0.5.1.tar.gz",
"has_sig": false,
"md5_digest": "5229662e238e08faf61c6c877c44c69d",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 18380,
"upload_time": "2024-06-29T11:36:58",
"upload_time_iso_8601": "2024-06-29T11:36:58.515671Z",
"url": "https://files.pythonhosted.org/packages/cc/31/89ab04232ef0549ac6bb1730d2b3ab8013777423c32543072114926b07e7/efibootdude-0.5.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-06-29 11:36:58",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "joedefen",
"github_project": "efibootdude",
"travis_ci": false,
"coveralls": false,
"github_actions": false,
"lcname": "efibootdude"
}