Kali Linux Install NextCloud Client: Difference between revisions
From WikiMLT
mNo edit summary |
mNo edit summary |
||
Line 1: | Line 1: | ||
<noinclude><!--[[Category:Linux_Desktop|?]]-->{{ContentArticleHeader/Linux_Desktop}}</noinclude> | <noinclude><!--[[Category:Linux_Desktop|?]]-->{{ContentArticleHeader/Linux_Desktop}}</noinclude> | ||
== Install the latest version of the NextCloud Client == | |||
For Linux, the NextCloid desktop client is available as [https://nextcloud.com/install/#install-clients AppImage]. Here is how to deeply it via the command line.<syntaxhighlight lang="shell" line="1" class="force-prompt"> | |||
cd ~/Downloads | cd ~/Downloads | ||
wget https:// | wget -O Nextcloud.AppImage \ | ||
$(curl https://nextcloud.com/install/ | grep -Po 'https://github.com/nextcloud/desktop/releases/download/v[\d.]{5,9}/Nextcloud-[\d.]{5,9}-x86_64.AppImage') | |||
mv | mkdir ~/.local/share/NextCloud | ||
~/.local/share/ | mv Nextcloud.AppImage ~/.local/share/NextCloud | ||
chmod +x ~/.local/share/Nextcloud/Nextcloud.AppImage | |||
~/.local/share/Nextcloud/Nextcloud.AppImage | |||
</syntaxhighlight> | </syntaxhighlight> | ||
== Install the NextCloud Client from Kali's repository == | |||
The NextCloud client is is also available in the Kali's repository (probably in Ubuntu's and Debian's ones). The version in the repository is little bit older but it works as it is expected with my NextCloud server.<syntaxhighlight lang="shell" line="1"> | |||
sudo apt update | |||
sudo apt install nextcloud-desktop | |||
sudo apt install nautilus-nextcloud | |||
</syntaxhighlight> | |||
== Shortcuts == | |||
If you want to put a Telegram icon at the desktop execute the following command. Note Telegram must be started at least one time before running the find/copy command below.<syntaxhighlight lang="shell" line="1" class="force-prompt"> | If you want to put a Telegram icon at the desktop execute the following command. Note Telegram must be started at least one time before running the find/copy command below.<syntaxhighlight lang="shell" line="1" class="force-prompt"> |
Revision as of 21:02, 26 August 2022
Install the latest version of the NextCloud Client
For Linux, the NextCloid desktop client is available as AppImage. Here is how to deeply it via the command line.
cd ~/Downloads
wget -O Nextcloud.AppImage \
$(curl https://nextcloud.com/install/ | grep -Po 'https://github.com/nextcloud/desktop/releases/download/v[\d.]{5,9}/Nextcloud-[\d.]{5,9}-x86_64.AppImage')
mkdir ~/.local/share/NextCloud
mv Nextcloud.AppImage ~/.local/share/NextCloud
chmod +x ~/.local/share/Nextcloud/Nextcloud.AppImage
~/.local/share/Nextcloud/Nextcloud.AppImage
Install the NextCloud Client from Kali's repository
The NextCloud client is is also available in the Kali's repository (probably in Ubuntu's and Debian's ones). The version in the repository is little bit older but it works as it is expected with my NextCloud server.
sudo apt update
sudo apt install nextcloud-desktop
sudo apt install nautilus-nextcloud
Shortcuts
If you want to put a Telegram icon at the desktop execute the following command. Note Telegram must be started at least one time before running the find/copy command below.
find ~/.local -type f -name 'appimagekit*Telegram*.desktop' -exec cp {} ~/Desktop/Telegram.desktop \;
sed -r -e '/^(Version|SingleMainWindow)/d' -e 's/^(Name=Telegram).*$/\1/' ~/Desktop/Telegram.desktop -i
Then right click on the new icon at the desktop and choice on the Allow Launching
option. Or run the following commands which will do the same for you.
desktop-file-install --mode=0755 --dir=$HOME/Desktop ~/Desktop/Telegram.desktop
dbus-launch gio set ~/Desktop/Telegram.desktop "metadata::trusted" true