Edit UFI Boot Menu from Windows 10
Open the terminal as administrator mode
To see the list:
bcdedit /enum firmware
To delete a menu:
bcdedit /delete {identifier}
Open the terminal as administrator mode
To see the list:
bcdedit /enum firmware
To delete a menu:
bcdedit /delete {identifier}
Please follow the steps below for Docker and Docker-Compose Installation on Raspberry Pi 4: # Get the official installation scriptsudo apt updatesudo apt upgradecurl -fsSL https://get.docker.com -o get-docker.shsudo sh get-docker.sh # To run docker commands without using sudosudo usermod -aG docker $USERsudo reboot # To verify dockerdocker version # To install docker-compose (specially on raspberry)sudo…
Here I have described that, how to mount an NTFS drive on linux debian server. First Login to your account Install ntfs-3g app sudo apt install ntfs-3g See the list of all drives sudo fdisk -l Suppose you want to mount /dev/sda8 Create a sub-directory for that drive inside the media directory sudo mkdir /media/mydrive Open and edit the fstab file for…
Get git version: Set global user name: Set global email: Clone a repository: git clone https://github.com/your/repository.git To get up to date from remote repo: git pull Check git status: git status To initialize: git init To stage edited files: git add . To commit the changes: git commit -m “Changing summary” To set a remote…
1. If your Email Verification Link is generating a http instead of https URL then, add the following line in app/Providers/AppServiceProvider.php file.public function boot(): void{ URL::forceScheme(‘https’);} 2. If you are using https protocol to reverse proxy or load balancer then, edit the following line in app/Http/Middleware/TrustProxies.php file.protected $proxies = ‘*’;
Follow these steps after completing XAMPP installation:sudo nano /etc/environment Write :/opt/lampp/bin/php before ending the ” double quotation mark and save. sudo ln -s /opt/lampp/bin/php /usr/local/bin/php Now run xampp, sudo /opt/lampp/lampp start Now installing Composer: curl https://getcomposer.org/installer | php sudo mv composer.phar /usr/local/bin/composer Now create a new project: composer create-project –prefer-dist laravel/laravel myapp “5.8.*” cd myapp php artisan serveNow…
If your laravel application is running behind the Proxy Server or the Load-Balancer then you should follow these settings. Even, if the proxy server or Load-balancer receives https:// requests from global users and your app server receives http:// requests from the proxy or LB then you should follow these steps too. 2. You need to…