As I have installed Endeavour Linux operating system, on first boot I could see Windows OS option in boot menu. Later its gone. After searching a while, I came across below solution which worked.
Main reason is the os-prober is disabled by default so it wont be able to detect other OS available in the same system. So first we have to enable it.
Open file `/etc/default/grub` and add `GRUB_DISABLE_OS_PROBER=false`...
Arch Linux - Frequent or Random Freezes
I have bought a new Leveno Thinkpad AMD Series laptop and installed EndeavourOS in it. Endeavour is a Arch flavour and Arch is known for stability.
Usually I am CentOS fan but as Corporate made its choice with CentOS future, I did research thoughting of sticking with one of my favorite Arch Linux.
But Arch, you have to setup everything and its an interesting process though time taking. So I have chosen...
How to start sonarqube using dockers ?
SonarQube is an open-source platform developed by SonarSource for continuous inspection of code quality to perform automatic reviews with static analysis of code to detect bugs, code smells, and security vulnerabilities on 20+ programming languages. SonarQube offers reports on duplicated code, coding standards, unit tests, code coverage, code complexity, comments, bugs, and security vulnerabilities.
If...
Javascript: Custom exceptions
In Javascript custom exception can be created and make them caught by `catch`.
For example lets see below code
let json = '{ "age": 30 }'; // incomplete data
try {
let user = JSON.parse(json);
if (!user.name) {
throw new Error("Incomplete data: no name");
}
alert( user.name );
} catch (err) {
alert( "JSON Error: " + err.message ); // JSON Error: Incomplete data: no name
}
Hope...
Computer Security Series - Part 1 - Basic Terminology
Security SeriesPart 1Hello Everyone, I am starting a security series. At this moment I don't have much information where we would be landing. Lets just get started!!!In this post I am coming up with security terminology and their definition, this is complete theory so you can also read in your mobile.Secure environment is a combination of people, process and tools( 3 tiers of security). All...
Vagrantfile: In a more ruby way to customize RAM and CPU core.
Hello Everyone, Here is my new Vagrantfile which coded in more ruby way. This code helps you with customize RAM, CPU and OS based provision script.Most of the code is self explanatory if you have basic understanding of Vagrant.
# -*- mode: ruby -*-
# vi: set ft=ruby :
# All Vagrant configuration is done below. The "2" in Vagrant.configure
# configures the configuration version...
Subscribe to:
Posts (Atom)