Showing posts with label linux. Show all posts
Showing posts with label linux. Show all posts

Sunday, May 16, 2021

bash: Permission denied | cant open file for writing | permission denied read-only file system

 This video I have given three different problems related to file access permission error and shared the solution. This is a basic troubleshooting and we have to understand the error details and proceed accordingly.

 

The same steps you can use for #macOS #Linux #Redhat #Centos #AzureLinuxVM 




Monday, March 31, 2014

Thursday, January 23, 2014

Change boot screen in Ubuntu

Steps give below for how to change boot screen in Ubuntu
open terminal and run this command then you will be able to edit
sudo gedit /etc/default/grub
after you run the command it will ask you for you password. enter
note the picture you want to use needs to be in your home folder
here is a copy of mine
GRUB_DEFAULT=0
#GRUB_HIDDEN_TIMEOUT=0
GRUB_HIDDEN_TIMEOUT_QUIET=true
GRUB_TIMEOUT=-1
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT=”quiet splash”
GRUB_CMDLINE_LINUX=”"
GRUB_BACKGROUND=”/home/user/happ.jpeg”
note the last line and you must use the quotes
save changes and while in the terminal type sudo update-grub .
that should do it