Laravel is a great frame work and I really love the following features Migrations & Seeding Built-in Authentication Filters Events IOC container Eloquent ORM Powerful Controller Routing HTTPS Support Bundles Unit-Testing Laravel with Sublime editor has changed the way of my PHP
Drag Drop / Copy Paste from Host to Guest Vice Versa not working for copied VM on VMware workstation 10.0.1
I faced issue when tried to drag drop / copy paste on Ubuntu 14 guest copied from another machine on Windows 8.1 Guest VMware Workstation 10.0.1 build-1379776 I was able to fix the issue after doing the following steps Go
Enabling Flash on Firefox – Ubuntu
In case the automatic installation of Firefox plugin fails, you can use the following Manual steps: Go to http://get.adobe.com/flashplayer/otherversions/ Choose Linux 32-bit / 64 bit depending on your OS Choose latest Flash Player on Step 2 and download the file
Debian 7
I did a fresh install of Debian 7 ( Wheezy) on the box running this blog.. seems nice little more performance and bit less memory usage.
Amazon s3 backup using s3cmd 1.1.0 beta2 on Ubuntu
Advantage of using s3cmd 1.1.0 beta2 is that it supports multi part upload which is must to upload files larger than 5 GB. cd /opt/ Download the s3cmd 1.0.0-beta2 package from SourceForge: wget http://sourceforge.net/projects/s3tools/files/s3cmd/1.1.0-beta2/s3cmd-1.1.0-beta2.tar.gz/download Make sure you have latest version
Fedora18 on Virtual Box
I tried to install Fedora 18 64 bit on my Virtual Box running on 64 bit windows 8 every time it failed with errors.. Finally I tried downloading 32 bit version and it got installed fine. Only issue I faced
Time to try KVM
I have tried both XEN and OPEN VZ virtualisations and now feel to try the KVM.. According to an article I read recently KVM Virtualization KVM Virtualization is the best option when you need full OS and kernel control. This
scp from a remote server running on non default ssh port
Similarly, I was trying scp command to copy a file from another server running on a port other than default one.. but I tried one with usual convention scp [email protected]:/var/www/[file name] -p [port]. But didn’t work It must be scp
Issue with ssh-copy-id command to server runnning on different SSH port
It took me some time to trace out the issue.. may be it will help someone.. This didn’t work for me ssh-copy-id -i /home/[user]/.ssh/id_rsa.pub [email protected] -p [port] But worked when I tried this ssh-copy-id -i /home/[user]/.ssh/id_rsa.pub “[email protected] -p [port]” Cheers!