-
Open a Terminal: You'll need to open a terminal on your Linux system.
-
Edit the GRUB Configuration File: Use a text editor with root privileges to edit the GRUB configuration file. The file is typically located at
/etc/default/grub
. You can open it with a command like:sudo nano /etc/default/grub
-
Edit GRUB_CMDLINE_LINUX_DEFAULT: In the opened file, look for the line that starts with
GRUB_CMDLINE_LINUX_DEFAULT
and add thequiet splash
parameters, if they are present, remove them. This line controls the boot options for the default kernel. It should look something like this:Before editing:
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
After editing (remove "quiet splash"):
GRUB_CMDLINE_LINUX_DEFAULT=""
Removing "quiet splash" will prevent the splash screen from appearing during boot and will display kernel and boot logs.
-
Save and Exit: Save the changes and exit the text editor. In Nano, you can do this by pressing
Ctrl + O
to save andCtrl + X
to exit. -
Update GRUB: After modifying the GRUB configuration, you need to update GRUB's configuration file with the changes you made. Run the following command:
sudo update-grub
-
Reboot: Finally, reboot your computer to see the changes take effect.
- Since the xfce power manager uses UPower in the background, setting this should suffice
- Update the Ignore lid to true
IgnoreLid=true
in/etc/UPower/UPower.conf
- Click start-> Manjaro Settings Manager -> Time and Date -> Set Time and Date automatically
- Download
chezmoi
on your machine. - Run
chezmoi init muditporwal
to setup.
- Download using link
https://az764295.vo.msecnd.net/stable/6c3e3dba23e8fadc360aed75ce363ba185c49794/code-stable-x64-1691619534.tar.gz
- Extract and use code
- Check if the SSH agent is running by using the
ssh-add -l
command. - If it's not running, you can start it with
ssh-agent
and add your SSH key usingssh-add
.