首先保证vmware全屏,若不是vmware的问题,就是电脑屏幕分辨率的问题。
查看你电脑主操作系统的分辨率,然后将ubuntu的分辨率设置相同的值。
设置方法: 点击ubuntu左下角(9个点)菜单,选择设置 —> 设备—> 显示—> 调整分辨率,保存修改即可。
本人主操作系统为win7,网络设置为NAT。
选中为图形或无线硬件安装…, 如果未选择,安装后ubuntu可能缺少部分网络连接需要的库,导致无法上网。
针对这种问题: 只能用下载的镜像重新安装。(因为网络依赖库和驱动安装不整整,修改其他的配置只是做无用功。至于选择后安装的部分不想要的软件,启动ubuntu后卸载即可。)
打开终端 输入 ping 127.0.0.1,如果能拼通证明网卡驱动是安装好了的。
设置为NAT后,以前针对ubuntu16.04的解决方案对于ubuntu18.10无效,问题遗留,若有谁有有效的解决方案,麻烦评论告知下,共同进步。
安装好ubuntu18.10,进入桌面右键发现并没有新建空白文件选项。
Ans: https://jingyan.baidu.com/article/6079ad0ecbc85428ff86dbdc.html
1、在虚拟机VMware的菜单栏选择 虚拟机–>安装VMware Tools…(我用的汉化版的VMware,若你用的非汉化的请找对应位置)
2、选中“安装VMware Tools…”之后可以下图路径找到。或者在/media/VMware Tools目录中找到安装软件压缩包
3、把VMwareTools-10.0.0-4301679.tar.gz拷贝到/tmp目录下
4、在进入/tmp目录下解压VMwareTools-10.0.0-4301679.tar.gz文件。
tar -xzf VMwareTools-10.0.0-2977863.tar.gz
解压后的目录:
5、在进入vmware-tools-distrib文件夹中执行./vmware-install.pl
开始安装。
一路回车(默认选项),直到出现what is the location of “ifconfig” program on you machine?
需要输入ifconfig的全路径,用locate "ifconfig"
查找位置,然后输入。
接下来等待安装完成。
到此只需重启(reboot)一下系统就可以愉快的复制粘贴了。
https://www.linuxidc.com/Linux/2014-04/100498.htm
原因:软件之前安装了一次,只是没安装完。
用snap changes
命令查看安装情况。
ID Status Spawn Ready Summary
1 Done today at 02:50 CST today at 02:51 CST Initialize system state
2 Error today at 02:50 CST today at 03:04 CST Initialize device
3 Error today at 03:11 CST today at 03:25 CST Initialize device
4 Error today at 03:30 CST today at 03:44 CST Initialize device
5 Error today at 03:49 CST today at 04:03 CST Initialize device
7 Error today at 09:23 CST today at 15:41 CST Auto-refresh 7 snaps
8 Done today at 18:13 CST today at 18:45 CST Install "notepadqq" snap
我是在安装notepadqq遇到的,用sudo snap abort 8
命令终止重新安装
在ubuntu 中apt工具需要根据/etc/apt/sources.list 和 /etc/apt/sources.list.d文件夹。
(与 <=ubuntu 18.04版本的安装不同)
在<=ubuntu 18.04版本中安装notepadq时,用以下命令即可。
官网说明
建议用snap
命令而非apt-get
命令安装
sudo snap install --classic notepadqq
如果用**Launchpad PPA(apt-get)**安装,命令如下:
sudo add-apt-repository ppa:notepadqq-team/notepadqq
sudo apt-get update
sudo apt-get install notepadqq
但是在ubuntu18.10运行`sudo snap install --classic notepadqq`,总是安装失败出现*Connection reset by peer,而用Launchpad PPA(apt-get)安装时,总是出现http://ppa.launchpad.net/notepadqq-team/notepadqq/ubuntu cosmic 404**,最后在 [官网安装说明](https://launchpad.net/~notepadqq-team/+archive/ubuntu/notepadqq/)中看到notepadqq到现在为止没有建立针对 ubuntu18.10(cosmic)的版本。deb http://ppa.launchpad.net/notepadqq-team/notepadqq/ubuntu cosmic main
# deb-src http://ppa.launchpad.net/notepadqq-team/notepadqq/ubuntu cosmic main
deb http://ppa.launchpad.net/notepadqq-team/notepadqq/ubuntu bionic main
# deb-src http://ppa.launchpad.net/notepadqq-team/notepadqq/ubuntu bionic main
再执行:
sudo add-apt-repository ppa:notepadqq-team/notepadqq
sudo apt-get update
sudo apt-get install notepadqq
安装过程中可能出现部分依赖库下载失败,用 sudo apt-get update --fix-missing
多修复几次可以完成安装。
notepadqq卸载:
sudo apt-get remove notepadqq
sudo add-apt-repository --remove ppa:notepadqq-team/notepadqq
sudo apt-get autoremove
refer:https://jingyan.baidu.com/article/2c8c281d810c830008252a06.html
oracle官网下载账户,账号密码:[email protected],密码:OracleTest1234.
环境变量:
打开/etc/profille配置文件, sudo vim /etc/profille,然后添加这么如下几行:
export JAVA_HOME=/usr/local/java/jdk1.8.0_171
export JRE_HOME=${JAVA_HOME}/jre
export CLASSPATH=.:${JAVA_HOME}/lib:${JRE_HOME}/lib
export PATH=${JAVA_HOME}/bin:$PATH
修改完之后再/etc/profille, 然后在验证是否安装配置成功。
java -version
refer: https://blog.csdn.net/fenglllle/article/details/84963743
下载:
32位下载 https://dl.google.com/linux/direct/google-chrome-stable_current_i386.deb
64位: https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
安装
sudo dpkg -i google-chrome-stable_current_amd64.deb
修复
sudo apt-get -f install
2.卸载firefox浏览器
查看firefox安装了那些组件
dpkg --get-selections |grep firefox
卸载这些组件
sudo apt-get purge firefox firefox-locale-en firefox-locale-zh-hans
官网说明:https://launchpad.net/~git-core/+archive/ubuntu/ppa
sudo add-apt-repository ppa:git-core/ppa
sudo apt-get update
sudo apt-get install git
可以使用git --version查看安装好的版本
git config --global user.name "XXXX"
git config --global user.email "XXXXXXX"
http://pad.haroopress.com/user.html
sudo dpkg -i haroopad-v0.13.1-x64.deb
sudo apt-get -f #修复依赖
安装后启动出现错误:usr/share/haroopad/haroopad: error while loading shared libraries: libgconf-2.so.4: cannot open shared object file: No such file or directory
用sudo apt -y install libgconf2-4
命令安装
接着error while loading shared libraries: libgtk-x11-2.0.so.0: cannot open shared object file: No such file or directory
用sudo apt -y install libgconf2-4
命令安装
sudo apt-get install libgtk2.0-0:i386
1、安装某个单独的软件包:dpkg -i ,该命令用于手动安装deb包,它不能解决依赖性问题,因此只建议在第三方软件包中使用。
2、解决软件包的依赖性问题。正如上文所说,如果遇到了依赖性问题,可以使用下面命令解决。
dpkg -i 包名 (结果遇到依赖性问题,需要安装其他的包)
使用apt-get -f -y install 解决依赖问题后再执行dpkg安装deb包(使用它就可以自动下载上面所需要的包了)
文件夹快捷方式
sudo ln -sT [srcDir] [dstDir/name]
软件快捷方式
https://jingyan.baidu.com/article/fb48e8bee5aabf6e622e14c8.html