系统声音设置无效,不能用
查阅资料,认为是ubuntu的root用户登陆默认是没有声音的(不确定)
使用指令:
pulseaudio --start --log-target=syslog #本次开机有效
如果需要长久有效,把该指令添加开机自启(/root/.profile).
Ubuntu16.04和Windows10双系统,每次进去Ubuntu系统,返回win10,时间就会乱
使用指令:
timedatectl set-local-rtc 1
在分区完毕后,总是出现system program problem detected异常。
网线拔掉,就完事了
注意安装引导要和/boot的盘符一致。
下载后的安装包,双击用自带的Ubuntu软件无法安装。
进入软件安装包对应的目录,使用
sudo dpkg -i 软件包名称
...
sudo apt-get install -f
...
sudo dpkg -i 软件包名称 # 即可安装了
装双系统时,不小心把Ubuntu16.04自带的grub引导给覆盖了,导致进入不了装好的ubuntu系统。
依旧用装系统时用的系统盘, 进入试用的ubuntu系统
打开一个终端(Ctrl+Alt+T,或者Dash+搜索terminal)
输出
sudo add-apt-repository ppa:yannubuntu/boot-repair && sudo apt-get update
sudo apt-get install -y boot-repair && boot-repair
在root用户下,启动不了用户df内配置的chromium-browser.
查阅后发现是chromium-browser浏览器本身的问题,解决方案较多,主要集中于浏览器限制以配置好的df用户使用.
选用一个简单的方法,在root用户下以df用户来运行chromium-browser软件.
核心步骤:
root@df-home:~# xhost +
access control disabled, clients can connect from any host
点击图标启动即可~
pulseaudio --start --log-target=syslog #解决声音异常
xhost + #开启用户权限
vim /root/.profile
#在文件末尾添加对应的指令
fcitx-configtool
打开系统的输入法配置页面
全局配置|显示高级选项|选中(只在用额外切换键取消激活….)
使用Ubuntu软件安装shutter卡死.
sudorm -rf /var/lib/dpkg/lock
# 如果此时开启软件中心,发现进度还在, 那么我们需要找到相关的进程关闭他,
# 使用命令: ps -af | grep dpkg 查看当前安装软件的进程
root@df-home:~# ps -af | grep dpkg
root 9317 9312 0 16:34 pts/19 00:00:00 /bin/sh /var/lib/dpkg/info/libxml-sax-perl.postinst configure
root 10134 10117 0 16:50 pts/1 00:00:00 grep --color=auto dpkg
其中root使用的9317的进程就是要关闭的,我们看到两个数字“9317”,“9312”,不用管只需要关掉9317
sudo kill -99317
sublime里面切换输入法无效,输入不了中文
输入指令
cd ~
vim sublime-imfix.c
修改文件内容
#include
void gtk_im_context_set_client_window (GtkIMContext *context,GdkWindow *window)
{
GtkIMContextClass *klass;
g_return_if_fail (GTK_IS_IM_CONTEXT (context));
klass = GTK_IM_CONTEXT_GET_CLASS (context);
if (klass->set_client_window)
klass->set_client_window (context, window);
g_object_set_data(G_OBJECT(context),"window",window);
if(!GDK_IS_WINDOW (window))
return;
int width = gdk_window_get_width(window);
int height = gdk_window_get_height(window);
if(width != 0 && height !=0)
gtk_im_context_focus_in(context);
}
sudo apt-get install build-essential
sudo apt-get install libgtk2.0-dev
gcc -shared -o libsublime-imfix.so sublime-imfix.c `pkg-config --libs --cflags gtk+-2.0` -fPIC
LD_PRELOAD=./libsublime-imfix.so subl
sudo mv libsublime-imfix.so /opt/sublime_text
输入指令
vim /usr/share/applications/sublime_text.desktop
修改文件内容
[Desktop Entry]
[...]
Exec=env LD_PRELOAD=/opt/sublime_text/libsublime-imfix.so /opt/sublime_text/sublime_text %F
[...]
[Desktop Action Window]
[...]
Exec=env LD_PRELOAD=/opt/sublime_text/libsublime-imfix.so /opt/sublime_text/sublime_text -n
[...]
[Desktop Action Document]
[...]
Exec=env LD_PRELOAD=/opt/sublime_text/libsublime-imfix.so /opt/sublime_text/sublime_text --command new_file
[...]
输入指令
vim /usr/bin/subl
修改文件内容
#!/bin/sh
export LD_PRELOAD=/opt/sublime_text/libsublime-imfix.so
exec /opt/sublime_text/sublime_text "$@"
http://www.jianshu.com/p/c244ebc3893e