Recent content by osprey

  1. osprey

    How to limit CPU frequency at early boot?

    @Debian_SuperUser Inspired by your comments in #13, despite the derision, and inspired by @GFdeb12, it sent me to various websites ending here: https://cdrdv2.intel.com/v1/dl/getContent/671098 It's hard to see how altering the msr registers would help if they depend on the loading of the msr...
  2. osprey

    How to limit CPU frequency at early boot?

    Actually it was cpu load documentation in the kernel docs that I consulted. Unfortunately the kernel doesn't provide stats for cpu activity in the earliest stages of booting. Hence there are difficulties in determining the extent of its work, but as mentioned, the design is to work closer to...
  3. osprey

    Solved SSD TRIM versus garbage collection

    The garbage collection process occurs automatically, usually during a system idle. Trim, on the other hand needs to provide the ssd with the information about its deleting of files and that those file pages need to be made available for new information. So it's partially a timing matter, the...
  4. osprey

    How to limit CPU frequency at early boot?

    @Debian_SuperUser wrote: Some queries that arise for me in this case are the following: Are there any statistical outputs to show that this high cpu frequency is actually the causal factor? Or is this surmise? Is there anything in the the boot.log, kernel.log or kernel ring buffer to indicate...
  5. osprey

    Linux doesn't get installed!

    @Error808 wrote: There aren't too many details here to go on, but the following comes to mind which will hopefully be helpful. This looks like the computer has been configured to boot from its internal hard drive, and not the usb. Laptops from 2007 were often capable of booting from usb, but...
  6. osprey

    Issues with starting a Linux install.

    @CRR^2 wrote: That error normally occurs when secure boot is enabled in the BIOS/UEFI. If you disable secure boot there, then normal booting ought to occur. @Brickwizard mentioned this in post #15, but it may have been missed.
  7. osprey

    Solved Kali linux installation

    If the machine doesn't have the package: firmware-amd-graphics, installed, perhaps install that, reboot and see if it makes a difference.
  8. osprey

    Does anyone know a complete guidline for establishing security for debian servers?

    In relation to openscap and lynis, both are available in debian: [tom@min ~]$ apt-cache show openscap-<TAB> openscap-common openscap-scanner openscap-doc openscap-utils [tom@min ~/notes]$ apt-cache show lynis<TAB> lynis
  9. osprey

    What's the advantage of Kali Linux?

    @Trenix25 wrote: Poor debian, to be characterised in such derogatory terms :) Computer security is not distribution dependent in linux. Whilst there are distros that concentrate on being secure, such a Qubes and Tails, the nature of linux is that virtually any installation can make use of the...
  10. osprey

    Chat GPT

    There are a number of AI sites that have been useful here: Gemini, ChatGPT, Copilot, Perplexity. They have provided info on configuration, code, errors and then a lot of more general queries. If one is not so helpful, often another is. Asking the same question to the one AI site often provides...
  11. osprey

    Getting Started I Hope.

    The passwords in the BIOS refer to passwords for the BIOS, that is, a password to enter the BIOS itself, and not for the operating system. For the linux operating system the root password can be created from the process described in the link in post #49 above in this thread. That works! There's...
  12. osprey

    Getting Started I Hope.

    Here's a standard means of resetting or creating a root password: https://linuxconfig.org/recover-reset-forgotten-linux-root-password
  13. osprey

    Does anyone know a complete guidline for establishing security for debian servers?

    This page could be quite helpful: https://www.debian.org/doc/manuals/securing-debian-manual/automatic-harden.en.html The whole manual is very comprehensive for debian on the issues.
  14. osprey

    Can AI Zoom the Popularity of Linux?

    Linus on AI:
  15. osprey

    Solved Need a command to replace underscores in file names

    Two methods showing change of underscores to hyphens: Using find and rename: [tom@min ~]$ ls aaa_bb_cc.pdf ddd_eee_ffff_gg.pdf [tom@min ~]$ find . -name "*" -type f | rename 's/_/-/g' [tom@min ~]$ ls aaa-bb-cc.pdf ddd-eee-ffff-gg.pdf Using bash with it's substitution code: [tom@min ~]$...
Top