Access Iphone file in arch linux computer

First install following packages

sudo pacman -Sy ifuse usbmuxd libplist libimobiledevice

Then reboot the system

Then make directory a to mount the files

mkdir ~/iPhone

Use the ifuse to mount the Iphone

ifuse ~/iPhone

If you want to mount specific application folder , run following command to identify the mount details

ideviceinstaller -l

If I want to mount Browser app folder , I have to run following

ifuse --documents com.eilvera.idwl ~/Browser/

Docker Tips

Here you can learn about the docker basic and its commands

  1. How to execute the docker run command

The docker run command is used to get the specific docker image from registry and start and run the container of the image.
For this example, the alpine docker image is used as it is more light weight linux image.

docker run alpine:3.4 uptime

Here the apline is a public image and it will be pulled from registry and created the container and started the container and ran the 'uptime' and exit....

PHP Composer

It is really useful to install the required library specific to the php project.

Following simple command help you to install it in your linux env.

curl -s https://getcomposer.org/installer | php

sudo mv composer.phar /usr/local/bin/composer

Not only you can get the lib but also you can publish your lib.

In following site you can check the available package.
Packagist.

In windows, It can be installed simply download and run the following exe file and It will be set in the PATH as well.
[Composer e...

Linux Help

How to show line number in vi editor
: Run

:set nu

How to show line number in gedit
: 1)Click on Edit menu
2)Select the Preference

3)Tick the Display line numbers

How to clear the screen

: ctrl + l

How to check the IP

: ifconfig

How to check the running process

: ps aux | grep redis

How to add users

  1. Open the terminal application.
  2. Login to Ubuntu server using ssh.
  3. Add a new user named foo to www-data group by running
 useradd -g www-data foo

com...