我尝试使用以下命令安装 LibreOffice:
root@kali:~# apt-get install LibreOffice_5.1.2.2_Linux_x86-64_deb.tar.gz
但我得到了这个,你知道如何解决这个问题吗?
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package LibreOffice_5.1.2.2_Linux_x86-64_deb.tar.gz
E: Couldn't find any package by glob 'LibreOffice_5.1.2.2_Linux_x86-64_deb.tar.gz'
E: Couldn't find any package by regex 'LibreOffice_5.1.2.2_Linux_x86-64_deb.tar.gz'
答案1
您应该提取LibreOffice_5.1.2.2_Linux_x86-64_deb.tar.gz
并安装其中的任何 deb 软件包。
例如tar xvf LibreOffice_5.1.2.2_Linux_x86-64_deb.tar.gz && dpkg -i $(find . -name '*.deb')
答案2
在 Kali Sana 2.0 中,我只使用了以下命令:
sudo apt-get install libreoffice
sudo apt-get install libreoffice-gnome
忠告:确保您并不总是以 root 身份登录。为您的日常操作创建一个用户名。
Kali 并不是用于一般办公计算的理想 Linux 版本,但我已经使用它很长时间了,发现它非常方便。