pacman package manager for Arch Linux
Force pacman to refresh the package lists :
pacman -Syyu
References :
https://wiki.archlinux.org/index.php/Pacman
Force pacman to refresh the package lists :
pacman -Syyu
References :
https://wiki.archlinux.org/index.php/Pacman
sudo mount /dev/sda1 /mnt
sudo mount --bind /dev /mnt/dev && sudo mount --bind /dev/pts /mnt/dev/pts && sudo mount --bind /proc /mnt/proc && sudo mount --bind /sys /mnt/sys
sudo chroot /mnt
grub-install /dev/sda
or
grub-install --recheck /dev/sda
update-grub
exit && sudo umount /mnt/sys && sudo umount /mnt/proc && sudo umount /mnt/dev/pts && sudo umount /mnt/dev && sudo umount /mnt
References :
http://howtoubuntu.org/how-to-repair-restore-reinstall-grub-2-with-a-ubuntu-live-cd
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF echo "deb http://download.mono-project.com/repo/debian wheezy main" | sudo tee /etc/apt/sources.list.d/mono-xamarin.list sudo apt-get update
References :
http://www.mono-project.com/docs/getting-started/install/linux/
sudo apt-get install php5-xdebug
find / -name 'xdebug.so'
Now update the options in PHP.INI – /etc/php5/apache2/php.ini
# Added for xdebug zend_extension="/usr/lib/php5/20121212/xdebug.so" xdebug.remote_enable=1 xdebug.remote_handler=dbgp xdebug.remote_mode=req xdebug.remote_host=127.0.0.1 xdebug.remote_port=9000 xdebug.max_nesting_level=300
Restart Apache2, and you are ready to go!
sudo service apache2 restart
References :
http://ubuntuforums.org/showthread.php?t=525257
http://wylbur.us/2014-06-17-add-xdebug-to-ubuntu-1404
http://purencool.com/installing-xdebug-on-ubuntu
https://www.jetbrains.com/phpstorm/help/configuring-xdebug.html
copy fonts to one of these folders :
$Home/.fonts/
$HOME/.local/share/fonts/
/usr/share/fonts
/usr/local/share/fonts/truetype
then run this command or restart your system :
sudo fc-cache -fv
References :
http://www.wikihow.com/Install-TrueType-Fonts-on-Ubuntu
http://askubuntu.com/questions/533462/how-do-i-uninstall-a-font-installed-using-gnome-font-viewer
https://askubuntu.com/questions/191778/how-to-install-many-font-files-quickly-and-easily
To create symlink /opt/foo –> /usr/bin/bar, (i.e., create symlink at /opt/foo which references to file /usr/bin/bar) do:
ln -s /usr/bin/bar /opt/foo
References :
http://askubuntu.com/questions/56339/how-to-create-a-soft-or-symbolic-link
https://en.wikipedia.org/wiki/Symbolic_link
http://manpages.ubuntu.com/manpages/wily/en/man1/ln.1posix.html
Install Apache
sudo apt-get install apache2
Install MySQL
sudo apt-get install mysql-server php5-mysql
Install PHP
sudo apt-get install php5 libapache2-mod-php5 php5-mcrypt php5-curl sudo apt-get install php5-cli
Create a MySQL Database and User for WordPress
mysql -u root -p create database wordpressdb; create user wordpressuser@localhost identified by 'pass1234'; grant all privileges on wordpressdb.* to wordpressuser@localhost; FLUSH PRIVILEGES; exit
Download WordPress
wget http://wordpress.org/latest.tar.gz
or
sudo apt-get install wordpress
sudo apt-get install php5-gd libssh2-php
The group ownership we will give to our web server process, which is www-data. This will allow Apache to interact with the content as necessary.
sudo chown -R :www-data /var/www/html/wordpress
MySQL Error: : ‘Access denied for user ‘root’@’localhost’
/etc/my.cnf
or /etc/mysql/my.cnf
, depending on your distro.skip-grant-tables
under [mysqld]
mysql -u root -p
mysql> flush privileges;
ALTER USER 'root'@'localhost' IDENTIFIED BY 'NewPassword';
mysql -u root -p
Refernces :
https://www.digitalocean.com/community/tutorials/how-to-install-wordpress-on-ubuntu-14-04
https://www.digitalocean.com/community/tutorials/how-to-install-linux-apache-mysql-php-lamp-stack-on-ubuntu-14-04
https://kyup.com/tutorials/install-wordpress/
https://help.ubuntu.com/community/WordPress
https://www.digitalocean.com/community/tutorials/how-to-install-wordpress-with-lamp-on-ubuntu-16-04
https://www.digitalocean.com/community/tutorials/how-to-install-linux-apache-mysql-php-lamp-stack-on-ubuntu-16-04
https://stackoverflow.com/questions/41645309/mysql-error-access-denied-for-user-rootlocalhost
sudo vmware-installer --uninstall-product vmware-workstation
References :
http://askubuntu.com/questions/131045/how-do-i-uninstall-vmware-workstation
– Open a terminal
– type in or copy/paste:
sudo gedit /etc/sysctl.conf
– a file will be opened
– add the following line at the bottom of that file:
# Swappiness vm.swappiness = 10 vm.vfs_cache_pressure = 50
– save the file and close it.
After rebooting the swappiness is set to 10. This can be checked by running the following command in a terminal:
sudo cat /proc/sys/vm/swappiness
References :
https://sites.google.com/site/tipsandtricksforubuntu/system-tips/swappiness
https://www.digitalocean.com/community/tutorials/how-to-add-swap-on-ubuntu-14-04