Linux Programmer | RHCE | RHCSA

Search This Blog

Monday 21 August 2017

How to configure Grive for Linux ?

1. download the grive source code repository

2. install dependency packages

     apt-get install git cmake build-essentia libgcrypt11-dev libyajl-dev libboost-all-dev libcurl4-openssl-dev libexpat1-dev libcppunit-dev binutils-dev

3. extract downloaded grive source code folder 
unzip {grive}.zip

4. cd grive-master

5. create debian package 

dpkg-buildpackage -j2 
( here, j2 is no of cpu, you can check it by lscpu)

6. mkdir build
cd build
cmake ..

if error of yajl during cmake then, install yajl-tools & apt-get install yajl* package

make -j2
sudo make install

SSH not working with password after upgrade ubuntu 22.04

Issue: In recent upgrade of ubuntu 22.04 we are not able to login server with SSH password. but when we try to login with key then it allow...