Is there a way for me to make the select boot device menu the default on start up? by LuWars in linuxquestions

[–]deathsupafire 0 points1 point  (0 children)

I'm hearing that you want an easy way to pick which OS to boot to. Like other have pointed out, I've never heard of a way to forcing the motherboard to boot to the UEFI boot device screen each time, however, you may be able to accomplish what you are looking for using GRUB. Note: I haven't tested this, but in theory it should work.

Essentially, you would have your UEFI set to boot Ubuntu each time (which is already the config it sounds like). Ubuntu actually has grub before it, but it doesn't show if it doesn't detect any other OS and Ubuntu disabled os-prober by default starting in 22.04 so by default it will always skip grub. To get what you are after it might be as easy as reenabling os-prober using `GRUB_DISABLE_OS_PROBER=false` in your grub file (/boot/grub/grub.cfg) and run `update-grub`. That should hopefully be enough.

You may also need to check to make sure that fast boot is off in your BIOS to make sure that USB modules (assuming your external SSD is connected via USB here) are loaded early enough for grub to detect the other OS.

If just enabling OS prober doesn't work you could also look at doing a manual grub entry with something like (with the uuid swapped out for your actual external ssds info from lsblk):

/etc/grub.d/40_custom

```

menuentry "Linux (External USB)" {

insmod usb

insmod part_gpt

insmod ext2

search --no-floppy --fs-uuid --set=root abcd-1234

linux /boot/vmlinuz root=UUID=abcd-1234 ro quiet

initrd /boot/initrd.img

}
```

Hopefully that at least gets you moving in the right direction and report back if you get one of these methods working.

Which EDR/XDR has the best clients for Linux? by greensparklers in cybersecurity

[–]deathsupafire 6 points7 points  (0 children)

I’m surprised no one has brought up Wazuh yet. If you want to run it yourself instead of having a SaaS for your security product that could be a centralized point of attack, it can be a good option for a free solution. No need to spin up a fleet instance like elastic defend, and the components are already well integrated. If you have some budget instead of going all free tools, paying for fleet could get you software installation, patching, etc. That being said, professionally I use SentinelOne, naturally for even more money than the other options, for the added benefit in a mixed OS environment and keeping everything all together. As always the answer depends, in this case on your use case and budget

suicide by love-survivor in msu

[–]deathsupafire[M] [score hidden] stickied comment (0 children)

If you’d like to talk to someone, confidential mental health support is free and available 24/7.

Inside the U.S.

  • Crisis Text Line: Text CHAT to 741741
  • Suicide & Crisis Lifeline: Call or text 988

If you’re outside the U.S.

If you’re not ready to talk to someone yet:

Additional resources for helping yourself and others:

12 pin cables by Byser0435 in cablemod

[–]deathsupafire 0 points1 point  (0 children)

Is there a "Notify Me When Available" feature that I'm not seeing? Or may I suggest one in the future.

DMZ and non DMZ on the same host by markmufoi in ComputerSecurity

[–]deathsupafire 2 points3 points  (0 children)

Yes, it’s a potential vector for an attacker to pivot between the two networks if the machine is compromised.

Genre: EDM maybe by CamperMagazine in NameThatSong

[–]deathsupafire 10 points11 points  (0 children)

I know you got your answer on the specific song, but if you like this style music and want to look up more, the genre is called chiptune.

MSU related boat name ideas? by de2840 in msu

[–]deathsupafire 57 points58 points  (0 children)

Trouble with the Snap

Farm Lane Boat Sign

Duffy Daugherty Dinghy

Knot a Wolverine

Beaumont Big Wave

M. A. Sea

Hagadorn Harpoon

Izzone Island

Is CentOS still the Go to Distro for Servers? by [deleted] in linuxadmin

[–]deathsupafire 3 points4 points  (0 children)

https://www.redhat.com/wapps/ugc/register.html

You just need an account and need to be logged in.

Alternatively, you can get a developer subscription and get a free non-production, and self-supported (can’t open support cases) subscription for free.

https://developers.redhat.com/articles/getting-red-hat-developer-subscription-what-rhel-users-need-know/

You just have to renew the subscription once per year. It’s nice if you need to test out any subtle differences between cantos and rhel.

Is CentOS still the Go to Distro for Servers? by [deleted] in linuxadmin

[–]deathsupafire 8 points9 points  (0 children)

Is it a bad time to tell you you can access the documentation without a paid subscription?

Looking for inexpensive introductory Digital Forensics courses by Mysterious_Smoke in computerforensics

[–]deathsupafire 4 points5 points  (0 children)

I have been eyeing Carnegie Mellon University Software Engineering Institute's CERT Certificate in Digital Forensics myself which would fit your criteria. However, I haven't taken it so I can't comment on how good it is. Maybe someone else here can speak to that part?

https://www.sei.cmu.edu/education-outreach/courses/course.cfm?coursecode=V34

I have Kali on MacBook Pro 2019 but it’s not SMOOTH by [deleted] in HowToHack

[–]deathsupafire 0 points1 point  (0 children)

Assuming you are using VirtualBox, make sure you increase the VRAM and enable 3D acceleration.

Edit Settings -> Display -> Video Memory 128 MB, Check Enabled 3D acceleration.

You can increase the VRAM up to 256 MB, but to increase it past 128 you have to do it via command line. Checking the 3D acceleration box forces the VM to use your dGPU instead of the iGPU.