Rclone is a command-line program to manage files on cloud storage. It helps to sync your data from your cloud storage to the local storage. It can be installed follwoing way without root permission in your system.
You can download linux Intel/AMD - 64 Bit or clone it from github repository using follwoing command.
# download
wget https://downloads.rclone.org/v1.69.1/rclone-v1.69.1-linux-amd64.zip
# extract
unzip rclone...
# change the directory
cd rclone... (unzipped directory)
# for setting rclone (create ~/.local/bin and ~/.local/share/man/ folders if not preexist)
cp rclone ~/.local/bin
chmod +x ~/.local/bin/rclone
cp rclone.1 ~/.local/share/man/man1/
For setting google drive using rclone check here https://rclone.org/drive/
Its a command line ultility for using clipboard. Its very helpful copying the selection without using mouse. You can set the xclip without root permission as follows.
Clone the repository using follwoing code.
git clone https://github.com/astrand/xclip.git
It can be downloaded and extracted as follows also:
# download
wget https://versaweb.dl.sourceforge.net/project/xclip/xclip/0.12/xclip-0.12.tar.gz
# extract files
tar xvzf xclip-${XCLIP_VERSION}.tar.gz
# change the directory
cd xclip...
# configure and install (make local folder if not preexist)
./configure --prefix=$HOME/local --disable-shared
make
make install
# add PATH in bashrc
export PATH="$HOME/local/bin:$PATH"
Its a shell tool for executing jobs in parallel using multiple computers/processors. A job can be a single command or a small script that has to be run for each of the lines in the input. The documentation for use can be downloaded from https://zenodo.org/records/1146014
# download
wget https://ftp.gnu.org/gnu/parallel/parallel-20120122.tar.bz2
# extract
tar -xf parllel...
# change directory
cd parallel...
# configure
./configure --prefix=$HOME/local --disable-shared
make
make install
# add PATH in bashrc if not available
export PATH="$HOME/local/bin:$PATH"