歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
Linux教程網 >> Linux基礎 >> Linux技術 >> ArchLinux折騰記

ArchLinux折騰記

日期:2017/3/3 12:28:59   编辑:Linux技術

系統

美化

主題:Arc-Dark

無線驅動安裝

按照 Broadcom_wireless wiki 運行
lspci -vnn | grep 14e4:
看芯片id,再在那2個列表裡找來決定用brcmsmac還是b43legacy還是broadcom-wl驅動,最後者則需要
yaourt -S broadcom-wl
安裝這個驅動,然後重啟後 iwconfig 看看有沒有無線網卡。

開wifi熱點

在安裝無線驅動後,pacman安裝create_ap,然後試試
sudo create_ap wlp4s0 enp5s0 wifi名 密碼
,其中的
wlp4s0
iwconfig
結果定,如果運行出
ERROR: Your adapter does not support AP (master) mode
那只能買外置的支持AP的無線網卡了。

輸入法

Fcitx+sogou
gedit輸入中文:未解決

字體渲染

用Infinality-bundle渲染:照此鏈接設置鏡像,之後pacman安裝
infinality-bundle
,按
alt+F2
輸入
r
即可看到新效果。

掛載windows上的盤/U盤

mount
命令是可以的,不過不方便,可以裝個
automounter
,重啟後就能看到效果了,不喜歡桌面那些文件夾可以在
桌面
裡關掉。

觸摸板驅動

自動開啟小鍵盤

軟件

sublime

中文輸入:直接pacman裝
sublime-text-dev-imfix

如果發現符號和中英文高度不同:更換同時支持中英字體如
YaHei Consolas
,寫
settings-user
保存即可

遠程Windows桌面

安裝
rdesktop
,運行是
rdesktop -a 16 ip
,其中 -a 是顏色,最高16

被遠程-VNC

eclipse

pacman安裝,然後發現不能新建java project(Null Pointer) ,解決方法看stackoverflow p36487303
自帶控件太大導致的界面空間很小:
在 home/用戶名/ 下新建
.gtkrc-2.0
,內容如下
[code]style "gtkcompact" {
font_name="Sans 9"
GtkButton::default_border={0,0,0,0}
GtkButton::default_outside_border={0,0,0,0}
GtkButtonBox::child_min_width=0
GtkButtonBox::child_min_heigth=0
GtkButtonBox::child_internal_pad_x=0
GtkButtonBox::child_internal_pad_y=0
GtkMenu::vertical-padding=1
GtkMenuBar::internal_padding=0
GtkMenuItem::horizontal_padding=4
GtkToolbar::internal-padding=0
GtkToolbar::space-size=0
GtkOptionMenu::indicator_size=0
GtkOptionMenu::indicator_spacing=0
GtkPaned::handle_size=4
GtkRange::trough_border=0
GtkRange::stepper_spacing=0
GtkScale::value_spacing=0
GtkScrolledWindow::scrollbar_spacing=0
GtkExpander::expander_size=10
GtkExpander::expander_spacing=0
GtkTreeView::vertical-separator=0
GtkTreeView::horizontal-separator=0
GtkTreeView::expander-size=8
GtkTreeView::fixed-height-mode=TRUE
GtkWidget::focus_padding=0
}
class "GtkWidget" style "gtkcompact"
style "gtkcompactextra" {
xthickness=1
ythickness=1
}
class "GtkButton" style "gtkcompactextra"
class "GtkToolbar" style "gtkcompactextra"
class "GtkPaned" style "gtkcompactextra"
Copyright © Linux教程網 All Rights Reserved