`

Ubuntu安装输入法,wine,关闭lightdm

阅读更多
buntu下安装五笔拼音输入法
之前在Ubuntu下使用ibus五笔输入法,用了一段时间发现五笔输入法不能输入词组,并且五笔不支持拼音的功能,从网上找到可以使用fcitx替换掉ibus,因此自已尝试了一把,安装步骤如下:
1. 安装fcitx输入法
sudo apt-get install fcitx
2. fcitx默认只安装了拼音、双拼、区位码等输入法,fcitx-table-all包括五笔等其他输入法,也可以选择只安装五笔(fcitx-table-wubi/fcitx-table-wbpy)
sudo apt-get install fcitx-table-all
3. 使用fcitx-config设置输入法顺序,在“输入法”菜单中将“拼音”、“双拼”、“区位”输入法的顺序设置为0(Disable),将“码表”的顺序设置为1,并且在码表菜单中将“五笔拼音”的顺序改为1,并启用拼音,码表其他的顺序改为99
4. 在系统设置->语言支持菜单中,将输入法设置“fcitx”,如果想使用回ibus,此处改回ibus
5. 运行fcitx,小企鹅输入法就可以使用了,同时支持五笔和拼音。使用“ctrl"+”空格“进行中英文切换

关机命令
$ sudo shutdown -h now 
$ sudo shutdown -h 0 
$ sudo shutdown -h 12:00 "System is shutting down" 
$sudo halt
$sudo poweroff 

sudo shutdown -P now
sudo shutdown -h now

重启命令
$ sudo reboot 
$ sudo shutdown -r 0 

resolve ubuntu shutting down stop at splash screen:
Type in terminal: gksudo gedit /etc/default/grub
Find the line: GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
Change this to: GRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi=force"
Save the file and close the file.
Finally, in terminal: sudo update-grub
解决Ubuntu无法关机
1. Type in terminal:
C代码  收藏代码
sudo gedit /etc/default/grub 

2. Find the line: GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"

3. Change this to: GRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi=force"

4. Save the file and close the file.

5. Finally, in terminal:
C代码  收藏代码
sudo update-grub
I found it here: Dell Studio 1569 Cannot Shutdown in Ubuntu 11.10 or 12.04
Entering BIOS usually by pressing Del button when computer starting. Go to Advanced Settings and make sure APM is Enabled.

If you have installed Windows Operating System, and you succeed to shutdown your computer on Windows, it means your APM is Enabled.

If it still don’t fix your problem, try it in terminal,
C代码  收藏代码
$ sudo gedit /etc/init.d/alsa-utils 

Change gedit with your favorite text editor. This will open alsa-utils or if it doesn’t exist, create new one.
Type,
C代码  收藏代码
ifconfig wlan0 down 
ifconfig eth0 down 
EXITSTATUS=0 

Save file, and try to shutdown Ubuntu.
重启ibus输入法
killall ibus-daemon
ibus-daemon -d
一、输入法安装

最新的Ubuntu自带Ibus输入法,一般无需安装,只需参照下文的方法调出控制图标即可步骤如下:
1、CTRL+ALT+T调出控制台,执行命令: ibus-daemon -d
2、这时右上角工具条上会有个键盘图标,键盘图标上点击左键,选择Preferences
3、在InputMethod输入法一栏选择列表框,把列表下的中文PINYIN输入法Add进下面的列表即可
4、CTRL+SPACE可以切换出输入法。
这样就调出自带的ibus输入法,一般来讲够用了,天缘从来都是只用这个自带的。

如需手动安装Fctix或重装IBUS才需继续看下去。
Ibus安装:
参考下面地址:http://wiki.ubuntu.org.cn/IBus
Fctix安装:
参考下面地址:http://wiki.ubuntu.org.cn/Fcitx
其中,基本指令如下:
卸载scim(据说会与fcitx冲突):
1
sudo apt-get purge scim
安装Fctix:
1
sudo add-apt-repository ppa:wengxt/fcitx-nightly
2
sudo apt-get update
3
sudo apt-get install fcitx fcitx-config-gtk fcitx-sunpinyin
安装其他码表:
1
sudo apt-get install fcitx-table-all
设为默认输入法(如果系统有多个输入法):
1
im-switch -s fcitx -z default
问题来了,估计N多人到这里都会有问题,不是调不出输入法,就是根本看不到设置界面,甚至是乱码。
天缘在执行执行im-switch总是出现如下提示:
No system wide default defined just for locale en_US.
Use "all_ALL" quasi-locale and set IM.
Using '/etc/X11/xinit/xinput.d/fcitx' to provide 'xinput-all_ALL'
最后也是稀里糊涂的又搞好了,大致步骤:
卸载Fctix-重装IBUS-重装Fctix-打开右上角车轮-系统设置-语言支持里捣鼓一会,结果就好了,因为不知道出在哪个环节问题,所以只能这么写了(*—*)。
二、输入法卸载

卸载Fcitx
1
sudo apt-get remove --purge fctix
卸载SCIM输入法
1
sudo apt-get remove --purge scim //删除SCIM及配置文件
2
sudo apt-get autoremove //删除SCIM依赖关系
3
sudo apt-get install -f //尝试修正安装过程出现的依赖性关系
二、小键盘显示

Ubuntu11.10到最新的12.04,(Ubuntu11.10英文版(locale=en_US)+Fctix输入法),每次重启机子,右上角的键盘图标都会消失掉。这个图标不出来,安装的输入法也无法使用ctrl+space调用出来。
运行如下两条指令调出IBUS输入法图标(显示在顶部的工具条右侧):
1
killall ibus-daemon
2
ibus-daemon -d
1
功能说明:
2
第一条:结束IBUS进程,有时不需要,直接使用下面一条即可。
第二条:重启IBUS输入法,后续如果调出图标,也可以在图标上鼠标右键,选择Restart重启输入法也可以达到同样效果。
下载额外数据文件失败
以下软件包要求安装后下载附加数据,但其数据无法下载或无法处理。
ttf-mscorefonts-installer


安装最新版 wine

ubuntu 官方自带了 wine ,但是推荐用 winehq 官方提供的最新版本 wine ,新版本解决了很多以前显得麻烦的问题。
PPA地址:https://launchpad.net/~ubuntu-wine/+archive/ppa
sudo add-apt-repository ppa:ubuntu-wine/ppa
sudo apt-get update
sudo apt-get install wine
配置

winecfg
中文问题

~/ .wine/drive_c/windows/Fonts/   #只留一个你想要显示的中文字体在这哈哈哈
安装windows dll部件
命令winetricks


New computer hangs on shutdown/reboot, how to troubleshoot
The problem is with the wireless adapter. I have the same model and the wrong driver is loaded which prevents shutdown. To fix it you need to do this:

Open a terminal and type:
Code:
sudo modprobe -rf rt2860sta
Followed by:
Code:
sudo modprobe rt2860sta
Then you need to blacklist the wrong driver:
Code:
echo blacklist rt2800pci | sudo tee -a /etc/modprobe.d/blacklist.conf
Once you have rebooted (you will need to do a hard power off for the last time!) you will find you can reboot properly. Thanks to Linuxexperte for this fix.


Here's how. I use PlayOnLinux, because it makes using WINE so much easier. If you don't have PlayOnLinux, install it from the Ubuntu Software Centre (if you want the latest version, go to thePlayOnLinux download page, click on "Ubuntu", and follow the instructions).
Open PlayOnLinux. Wait a few seconds while it refreshes (the status bar at the bottom).
Click on the big "+ Install" button. A new window opens.
Click on the "Internet" button.
Click on "Internet Explorer 8".
Click on "Install".
About to install IE8

An installation wizard appears. Click Next; wait a bit.
IE8 will start to install, asking you a question and then to accept the license terms. It will prompt you to install updates; clear this check-box and press Next. Don't install updates
Wait a bit longer.
When prompted, select "Restart now (recommended)". This will not restart your computer; instead, PlayOnLinux will simulate a Windows restart.
Now, you will have an Internet Explorer icon on your desktop and another within the PlayOnLinux window. You can double-click either of these to start IE8.

Note that the display will not precisely match that on Windows for several reasons, but at least it will give you IE8 on Ubuntu!


解决:ttf-mscorefonts-installer
requested additional data downloads after package installation, but the data could not be downloaded or could not be processed.
Solution 1:
Connect to the internet and run this command below, to fix the error

sudo apt-get install --reinstall ttf-mscorefonts-installer
This will reinstall the package, and download the data files needed to configure the package. Wait for some times to finish downloading. The download size is approximately 4MB.

Solution 2:
Connect to the internet and go to this sourceforge link and download all the .exe files there except wd97vwr32.exe file.

Copy those files in your home directory.

Run this command to configure the package

sudo dpkg-reconfigure ttf-mscorefonts-installer
This will ask you whether you have downloaded microsoft fonts or not. Use Tab to select OK, and hit Enter.
Then again you will be asked to enter the directory name for the downloaded files, Type the location of your home directory and use Tab to select OK, and hit Enter.

For example, if your login name is anwar, the location will be /home/anwar, because I copied the downloaded fiiles there.

Done! you have successfully configured and setup the package.

What was the cause of the problem?
This package ttf-mscorefonts-installer is used to download Microsoft's font files (those files are made freely available by Microsoft) from the Internet and install them. Since you must accept the EULA of Microsoft to use those font files, those fonts cannot be included in the package like other Free (Free as freedom) packages.

The problem was, somehow you get disconnected from Internet before downloading those files. So, is the message asking to download more data files.

关闭lightdm图形
sudo service lightdm stop
(老版本的ubuntu用的是service gdm stop)

原文:http://blog.163.com/luowei505050@126/blog/static/119907206201312293734588/
分享到:
评论

相关推荐

    Ubuntu安装教程

    2. **修改lightdm配置**: 打开`/etc/lightdm/lightdm.conf.d/10-ubuntu.conf`,添加`greeter-show-manual-login=true`和`allow-guest=true`,然后重启系统,开机时会出现root登录选项。 ### 四、更改IP地址 在...

    ubuntu12.04、14.04、16.04安装nvidia显卡驱动

    在安装Nvidia显卡驱动之前,我们需要关闭lightdm服务并进入TTY模式。使用以下命令关闭lightdm服务: sudo service lightdm stop 然后,按下CTRL+ALT+F1键进入TTY模式。 知识点3:添加驱动源 在安装Nvidia显卡...

    Ubuntu 安装及armlinux环境搭建

    - 卸载防火墙(Ubuntu默认不安装SELinux,因此无需关闭): ```bash root@lyl:~# apt-get remove iptables ``` - 安装Samba: ```bash root@lyl:~# apt-get install samba ``` - 启动Samba服务: ```bash ...

    ubuntu 安装1080ti 驱动

    在Ubuntu系统中安装NVIDIA GeForce GTX 1080 Ti显卡驱动是一项关键任务,特别是对于需要高性能图形处理的用户,如进行深度学习、游戏或3D建模等。以下是一个详尽的步骤指南,帮助你在Ubuntu 14.04上安装并配置1080 ...

    笔记本 ubuntu22.04 安装RTX3080TI nvidia显卡驱动

    为了安装图形界面的管理器,你需要安装lightdm,因为Ubuntu 22.04默认可能未预装: ```bash sudo apt-get install lightdm ``` 在安装驱动之前,需要关闭图形服务: ```bash sudo service lightdm stop ``` 切换到...

    Ubuntu22.安装macos主题方法

    在Ubuntu 22.04上安装MacOS主题可以为你的Linux系统带来一种全新的视觉体验,使其外观和感觉更接近Apple的macOS操作系统。这里我们将详细介绍如何安装名为"WhiteSur"的MacOS主题,它是Ubuntu社区中最受欢迎的MacOS...

    ubuntu系统下安装nvidia显卡驱动方法 保姆级教程

    在Ubuntu系统中,安装NVIDIA显卡驱动是一个关键步骤,特别是对于那些依赖高性能图形处理的用户,例如游戏爱好者、开发者或者进行科学计算的用户。以下是一个详细的保姆级教程,指导您如何在Ubuntu 16.04系统下安装...

    ubuntu22.04lts服务端安装桌面离线包

    本文将详细讲解如何在Ubuntu 22.04 LTS服务端通过离线包安装桌面环境。 首先,我们需要理解离线包的概念。离线包是指预先下载好的软件包,可以在没有网络连接的情况下安装。这对于网络不稳定或带宽有限的环境特别...

    在Ubuntu上安装NVIDIA显卡驱动,可以按照以下步骤进行,以确保流程的清晰和准确性: 1. 准备工作 查看显卡型号:使用

    ### 在Ubuntu上安装NVIDIA显卡驱动的详细步骤 #### 一、准备工作 **1.1 查看显卡型号** 在开始安装NVIDIA显卡驱动之前,首先要确定你的显卡型号。这一步非常重要,因为不同的显卡需要安装不同版本的驱动程序。...

    ubuntu安装nvidia显卡驱动教程详解.pdf

    ### Ubuntu安装NVIDIA显卡驱动教程详解 #### 一、准备工作 **1. 确认系统配置和兼容性** 为了确保NVIDIA显卡能在Ubuntu系统中正常工作,首先需要检查系统的兼容性。可以通过以下几种方式来确认: - **查看NVIDIA...

    华为鲲鹏服务器2280V2使用网络代理安装ubuntu18.04.1操作系统桌面

    在本文中,我们将详细探讨如何在华为鲲鹏服务器2280V2上使用网络代理安装Ubuntu 18.04.1桌面版操作系统。在安装过程中,可能会遇到一些问题,如网络配置、Hash Sum不匹配等,我们将逐一解决。 首先,安装操作系统时...

    Ubuntu的安装以及root直接进入教程.pdf

    本文将详细介绍如何在Windows 7系统上安装Ubuntu 12.10版本,并在安装完成后直接以root权限登录。首先,确保你具备以下条件: 1. 至少20GB的硬盘空间用于安装Ubuntu。 2. 下载EasyBCD软件,这是一款引导管理工具,...

    Ubuntu 安装Nvidia显卡驱动方法介绍.pdf

    ### Ubuntu 安装 Nvidia 显卡驱动方法详解 #### 一、引言 随着图形处理技术的不断发展,高性能显卡的应用越来越广泛。对于使用 Ubuntu 操作系统的用户来说,正确安装 Nvidia 显卡驱动不仅能显著提升图形性能,还能...

    Ubuntu 18.04或者20.04 安装显卡驱动.pdf

    ### Ubuntu 18.04或20.04安装显卡驱动——屏蔽开源驱动nouveau 在Ubuntu系统中,对于NVIDIA等高性能显卡的支持通常需要安装专用的驱动程序来发挥其最大性能。本篇文章将详细介绍如何在Ubuntu 18.04或20.04系统上...

    Ubuntu物理机上安装显卡驱动的指南

    可以尝试重新安装lightdm或Ubuntu桌面环境,或者通过启动时绕过NVIDIA驱动来解决问题。 安装显卡驱动前,请务必备份重要数据,并确认驱动与Ubuntu版本和显卡型号的兼容性。在安装过程中严格按照指南操作,以避免...

    Ubuntu的安装以及root直接进入教程.docx

    本文将详细介绍如何在Windows 7系统上安装Ubuntu 12.10版本,并且在安装完成后设置直接以root权限登录。首先,确保你有足够空间的分区,至少20GB,用于安装Ubuntu。你需要下载两个关键文件:EasyBCD软件和Ubuntu ...

    Ubuntu14+CUDA8.0+cudnn傻瓜式安装手册

    ### Ubuntu14+CUDA8.0+cudnn傻瓜式安装手册 #### 一、前言与准备 本文档旨在为初次接触Ubuntu系统且需要在该系统上搭建CUDA及cuDNN环境的用户,提供一个详尽易懂的安装指南。安装过程中可能会遇到一些常见问题,本...

    ubuntu14.04安装cuda8.0、opencv2.4.13、caffe

    ### Ubuntu 14.04 下 CUDA 8.0、OpenCV 2.4.13 和 Caffe 的安装配置 #### 一、系统环境准备 **1. 环境要求** - 操作系统: Ubuntu 14.04 (64位) - 显卡: GTX 750 Ti - CUDA 版本: 8.0.61 - cuDNN 版本: cudnn-8.0-...

Global site tag (gtag.js) - Google Analytics