I want to install Grsync on Ubuntu server 12.04 without internet, or to download the package from Windows.
Asked
Active
Viewed 1,188 times
1 Answers
3
Run
sudo apt-get install grsync. It will fail, but show you the required package dependencies missing on your system. On my box, it shows:The following NEW packages will be installed: grsync libgtk2.0-0
Go to http://packages.ubuntu.com/precise/grsync and download the missing dependencies.
Copy the downloaded *.deb files to
/var/cache/apt/archives/.Run
sudo apt-get install grsyncagain. Now it should pick files from cache and won't require an internet connection to installgrsync.
A.P.
- 416