Installing Laravel 5.8 on WAMP server
Please follow these steps below to install Laravel on WAMP server.
Please follow these steps below to install Laravel on WAMP server.
Open the terminal as administrator mode To see the list: bcdedit /enum firmware To delete a menu: bcdedit /delete {identifier}
1. Get the UUID of the partition by the following commandsudo blkid 2. Create a directory where you want to be mounted/shown the filesmkdir mydrive 3. Open the fstab file to be mounted the drive automatically on system startupsudo nano /etc/fstab 4. Paste the following line end of the fstab file after checking the Note below.UUID=561B-01A3 /home/username/mydrive vfat defaults,umask=000 0 2…
If there is a permission error displayed after creating a symlink to /srv/http/ from your user account then just enter the following command. It gives read-only permission to everyone so that public can read the webfiles. There is nothing to add or edit in httpd.conf file.chmod 755 /home/username/
1. The base-devel and git packages are needed to installed google chrome on Manjaro 20 Xfce. Enter the following command to install base-devel package.sudo pacman -Syu base-devel –needed 2. Get AUR chrome package and install it by the following commands.git clone https://aur.archlinux.org/google-chrome.gitcd google-chromemakepkg -slssudo pacman -U google-chrome-83.0.4103.61-1-x86_64.pkg.tar.xz 3. Open Google Chrome from the Start Menu.
Drive Partitioning and Formattingcfdisk /dev/sdamkfs.ext4 /dev/sda1mkswap /dev/sda2swapon /dev/sda2mount /dev/sda1 /mnt Packages Installationping google.comnano /etc/pacman.d/mirrorlist Bangladesh and Singapore Mirrors only pacstrap /mnt base linux grub nano dhcpcd htop sudogenfstab -U /mnt >> /mnt/etc/fstabarch-chroot /mntpasswd Time and Language settings (It could be done after the installation too)ln -sf /usr/share/zoneinfo/Asia/Dhaka /etc/localtimenano /etc/locale.gen en_US.UTF-8 UTF-8 locale-gennano /etc/locale.conf LANG=en_US.UTF-8 Network…
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. First install xorg-xrandr package if xrandr does not work 2. Create 10-dellmonitor.conf file under /etc/X11/xorg.conf.d directory 3. Enter the following lines in that file and saveSection “Monitor” Identifier “VGA1” Modeline “Dell” 173.00 1920 2048 2248 2576 1080 1083 1088 1120 -hsync +vsync Option “PreferredMode” “Dell”EndSection 4. Reboot the computer
If you want to use ftp://localhost anonymously e.g. without any user and password on your xampp server at ubuntu or linux mint distro then please follow the steps below. 1. Enter the command to edit: sudo nano /opt/lampp/etc/proftpd.conf 2. Copy the following scripts and paste into bottom of that file – # A basic anonymous configuration, no…