Linux下安装Fedora
刻到u盘上
下好iso后准备刻录到u盘...可是查了一下只能在用一个叫dd的东西刻= =于是学了下...然而就是一句话:
dd if=/path/xxx.iso of=/dev/sdx
其中前面是文件,后面是盘,注意是整个盘sdx而不是什么sdx1啥的,注意这样做会格式化整个盘...请不要乱实验...。
(听说dd是自动识别然后自动刻录的真是厉害啊...在bios设置u盘优先启动然后安装即可
/home
vi /etc/fstab
/dev/sda5 /home ext4 defaults 0 2
折腾
显卡驱动 & 不能关机、重启、注销、待机等解决方法
原因在于linux自带的nouveau驱动对N卡支持不是很好(至少对于我的765m是不好的..),所以禁止nouveau驱动和使用去掉nouveau模块的内核镜像后就能重起能关机啦!所以我们blacklist了nouveau。
sudo gedit /etc/modprobe.d/blacklist.conf
加上
blacklist nouveauoptions nouveau modeset=0
然后重启。
可是这样就不能用独显了,所以我们还要装一个bumblebee来切换独显。(内核版本4.0.6-300.fc22.x86_64,bumblebee-nvidia版本:bumblebee-nvidia-352.21-1.fc22.x86_64测试成功)
sudo dnf -y --nogpgcheck install http://install.linux.ncsu.edu/pub/yum/itecs/public/bumblebee/fedora23/noarch/bumblebee-release-1.2-1.noarch.rpmsudo dnf -y --nogpgcheck install http://install.linux.ncsu.edu/pub/yum/itecs/public/bumblebee-nonfree/fedora23/noarch/bumblebee-nonfree-release-1.2-1.noarch.rpmsudo dnf install bumblebee-nvidia bbswitch-dkms primus kernel-devel
修改grub
缩短等待时间
编辑文件
sudo gedit /boot/grub2/grub.cfg
然后搜索timeout
,后面数字修改为1
sudo gedit /etc/default/grub
改成GRUB_TIMEOUT=1
调节亮度 & 关掉蓝牙
(可能要先安装rfkill才能关掉蓝牙
sudo gedit /etc/rc.local
然后在exit(0)
前面加上
rfkill block bluetoothecho 1580 > /sys/class/backlight/intel_backlight/brightness
dnf配置
sudo vim /etc/dnf/dnf.conf
加上fastestmirror=true
和keepcache=true
,分别表示选择最快镜像和保留缓存
更换源
cd /etc/yum.repos.d
然后选择其中一个国内源:
sudo wget http://mirrors.163.com/.help/fedora-163.reposudo wget http://mirrors.163.com/.help/fedora-updates-163.reposudo wget http://mirrors.sohu.com/help/fedora-sohu.reposudo wget http://mirrors.sohu.com/help/fedora-updates-sohu.reposudo wget http://mirror.bjtu.edu.cn/fedora-bjtu.reposudo wget http://mirror.bjtu.edu.cn/fedora-updates-bjtu.repo
加一个,中文软件很实用的
sudo wget http://repo.fdzh.org/FZUG/FZUG.repo -P /etc/yum.repos.d/
加google-chrome的源:
sudo wget http://repo.fdzh.org/chrome/google-chrome-mirrors.repo -P /etc/yum.repos.d/
加rpmfusion的源:
sudo dnf install http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-stable.noarch.rpmsudo dnf install http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-stable.noarch.rpm
使用socks5代理
sudo http_proxy=socks5h://127.0.0.1:10808 dnf
主题
numix主题和图标
sudo dnf copr enable satya164/numixsudo dnf install numix-gtk-theme
然后是图标:
git clone https://github.com/numixproject/numix-icon-theme-circle
将两个文件夹复制到/usr/share/icons/
目录下
evopop主题
sudo dnf copr enable heikoada/gtk-themessudo dnf install evopop-gtk-theme-common.noarch evopop-gtk-theme-gtk3 evopop-gtk-theme-metacity evopop-gtk-theme-gtk2
arc主题
http://files.cnblogs.com/files/iwtwiioi/Arc-OSX-gnome3.18-1.5.tar.gz
软件
dnf install 清单
gnome-tweak-tool # tweak工具kwplayer # 酷我smplayer # 视频播放器cherrytree # 必备树型笔记本audacious # 音乐播放器nautilus-open-terminal # 右键终端vim # 没话说= =texmaker # latextexlive-* # latexremarkable # markdowngcc-c++ # = =goldendict # 字典unrar # rartsocks # socks5
fedy
http://folkswithhats.org/
迅雷(xware)
sudo dnf install xware-desktop
然后设置一下路径(不要登陆),详细看
然后我们可以用这个命令运行登陆下载拉~!
/usr/share/xware-desktop/xwared & xware-desktop
要是想方便的话做一个desktop咯
QQ7.5(最新版)
参考:
sudo dnf install winewget http://winetricks.org/winetrickssudo mv winetricks /usr/bin/winetrickssudo chmod +x /usr/bin/winetrickswinetricks riched20 gdiplus
至于某些地方中文显示为框框,把/usr/share/wine/fonts
中的两个Tahoma字体删掉或者移动到别处,再在注册表中找到[HKEY_CURRENT_USER\Software\Wine\Fonts\Replacements]
,里面建立Tahoma的替换项目,比如新建字符串Tahoma
,值为WenQuanYi Micro Hei
,就是说用某字体替换Tahoma,如果Wine没有simsun字体,Replacements里面也没有,就用同样的方法创建SimSun的替换项目(最好从windows种copy一个SimSun字体过来,否则有各种字体问题)。
然后运行qq7.5的安装包(可以在 点击打开 这里下载),按步骤安装即可。
无法登录的话,打开wine taskmgr,把txplatform进程给kill掉就行了。要一劳永逸的话,在Winecfg的函数库中添加txplatform.exe,并设置为“停用”就行了。
然后就大功告成拉~
VirtualBox
cd /etc/yum.repos.d/sudo wget http://download.virtualbox.org/virtualbox/rpm/fedora/virtualbox.reposudo dnf updatesudo dnf install gcc kernel-develsudo dnf install VirtualBox-4.3sudo service vboxdrv setupsudo usermod -a -G vboxusers $USER
深度截图
没办法fc22的版本没有= =因此强行安装了fc21的...没想到能用..进入上面网址后依次下载并安装
deepin-gsettings, deepin-utils, deepin-ui, deepin-screenshot
wps
这个要去官网下载,而且下载完后将网络关掉,打开wps,将在线模板通通关掉。然后下载字体文件:,放到/usr/share/fonts
中即可。
acejudge(laekov写的评测机orz)
gnome插件
终端启动的用户 @ 主机名消失的解决方法
编辑~/.bashrc
,加上:
if [ -f /etc/bashrc ]; then . /etc/bashrcfi
sudo补全问题
sudo dnf install bash-completion
一些字体问题
只要安装一些windows字体就行拉,某度字体就不会调用那啥arial字体了..
一个简单的办法就是:wget http://www.my-guides.net/en/images/stories/fedora12/msttcore-fonts-2.0-3.noarch.rpmsudo dnf install ./msttcore-fonts-2.0-3.noarch.rpmmkfontscalemkfontdirfc-cache -fv
更改fonts.conf
,默认的字体非常鬼畜,所以我们改一下,另存为.fonts.conf
放到~
目录下:
serif SimSun sans-serif SimHei monospace YaHei Consolas Hybrid
GoldenDict用mplayer播放卡顿问题
在设置里将Use external program
设置为aplay
即可。
chrome的一些卡顿问题(cpu100%)
一些书签、标签页、菜单卡顿问题原因在于字体,详见:
解决方法就是换字体,经测试换成Source Han Sans CN Regular
是可以解决的。
同时在chrome的启动器添加--enable-harfbuzz-rendertext
参数即可解决。
gnome-terminal不能透明的问题
自己发现一个临时的办法:
在.bashrc
里加上 if [ -n "$WINDOWID" ]; then TRANSPARENCY_HEX=$(printf 0x%x $((0xffffffff * 98 / 100))) xprop -id "$WINDOWID" -f _NET_WM_WINDOW_OPACITY 32c -set _NET_WM_WINDOW_OPACITY "$TRANSPARENCY_HEX"fi
gedit GBK 乱码
打开dconf-editor(如果没用,sudo dnf install dconf-tools),找到org/gnome/gedit/preferences/encodings
,在auto-detected
中加入GBK
。
unzip 解压乱码
似乎要重新编译?不过另有方法。我们写一个python脚本来实现解压就行了。
#!/usr/bin/python3'''Author:iwtwiioiE-mail:iwtwiioi@gmail.comversion = 1.0'''IZIP_VERSION = 'izip 1.0'import os, sysimport zipfileimport chardetfrom optparse import OptionParseris_replace = Falsefile_encoding = ""file_password = ""extract_path = ""is_quite = Falseclass PasswordError(Exception): passdef getBytesEncoding(s): return chardet.detect(s)['encoding']def bytes2str(s): encoding = getBytesEncoding(s) if file_encoding: return s.decode(file_encoding) return s.decode(encoding)def getZipfileBytes(s): try: by = s.encode('cp437') except: by = s.encode() return bydef P(s): if is_quite: return print(s)def extract(file_name): if not os.path.exists(file_name) or not zipfile.is_zipfile(file_name): P('File "{0}" is not a zip file!'.format(sys.argv[i])) return if os.path.exists(extract_path) and os.path.isfile(extract_path): P('Error ** : path "{0}" is a file.'.format(extract_path)) return if not os.path.exists(extract_path): os.makedirs(extract_path) try: open_file = zipfile.ZipFile(file_name, 'r'); open_file.setpassword(file_password.encode()) except Exception: P('File "{0}" can not open!'.format(file_name)) raise Exception P('Processing\t{0}'.format(file_name)) for name in open_file.namelist(): try: utf8name = bytes2str(getZipfileBytes(name)) except Exception as e: P(' Failed\tEncoding can not be identified.') continue P(' Extracting\t' + utf8name) pathname = os.path.dirname(utf8name) if pathname != '' and not os.path.exists(extract_path + pathname): os.makedirs(extract_path + pathname) continue try: data = open_file.read(name) except Exception: P('*** Wrong password ***') raise PasswordError if not os.path.exists(extract_path + utf8name) or os.path.isfile(extract_path + utf8name) and is_replace: try: fo = open(extract_path + utf8name, 'wb') fo.write(data) fo.close() except Exception: P(' Failed\tCan not write file "{0}".'.format(extract_path + utf8name)) continue P(' Skipped\t' + utf8name) open_file.close() P('Done')def main(): global is_replace global file_encoding global file_password global extract_path global is_quite usage = 'usage: %prog [options] filename' parser = OptionParser(usage=usage, version=IZIP_VERSION) parser.add_option('-r', '--replace', dest='is_replace', action='store_true', default=False, help='if file already exisited, replace it') parser.add_option('-e', '--encoding', dest='encoding', action='store', metavar='ENCODING', help='specify the encoding of the file') parser.add_option('-p', '--password', dest='password', action='store', default='', help='password of the file') parser.add_option('-d', '--dir', dest='path', action='store', default='.', help='the path of extracting') parser.add_option('-q', '--quite', dest='is_quite', action='store_true', default=False, help='process quitely') (options, args) = parser.parse_args() is_replace = options.is_replace file_encoding = options.encoding file_password = options.password extract_path = options.path + '/' is_quite = options.is_quite ''' P('is_replace\t: {0}'.format(is_replace)) P('file_encoding\t: {0}'.format(file_encoding)) P('file_password\t: {0}'.format(file_password)) P('extract_path\t: {0}'.format(extract_path)) ''' for name in args: try: extract(name) except PasswordError: raise PasswordError except Exception: passtry: main()except PasswordError: sys.exit(2)except Exception: sys.exit(1)sys.exit(0)
想用右键?新建一个文件放到~/.local/share/nautilus/scripts/
文件夹里,内容如下
#!/bin/bash(for File in "$@"; do if [ -d "$File" ]; then zenity --error --title="Error" --text="'$File' is not a file." continue else echo "# Extracting '$File'" izip -r -e gbk -q $File rt=$? if [ $rt -eq 1 ]; then zenity --error --title="Error" --text="'$File' failed to extract." continue elif [ $rt -eq 2 ]; then while true; do psw=$(zenity --entry --title="Enter password for '$File'" --text "" --hide-text) if [ $? -ne 0 ]; then break fi izip -r -e gbk -q -p $psw $File zipret=$? if [ $zipret -eq 0 ]; then echo "# Right password! " break elif [ $zipret -eq 1 ]; then zenity --error --title="Error" --text="'$File' failed to extract." break elif [ $zipret -eq 2 ]; then echo "# Wrong password! " fi done fi fidone)|zenity \ --progress \ --title="Extract files in GBK" \ --text="Extracting..." \ --percentage=0 \ --auto-close \ --pulsateif [ "$?" = -1 ]; then zenity --error \ --text="Failed."fi
vim 配置
安装
配置文件
" autocompleteset nocompatiblefiletype offset rtp+=~/.vim/bundle/Vundle.vimcall vundle#begin()Plugin 'VundleVim/Vundle.vim'Bundle 'Valloric/YouCompleteMe'call vundle#end()filetype plugin indent onlet g:ycm_error_symbol = 'ER'let g:ycm_warning_symbol = 'WA'let g:ycm_global_ycm_extra_conf='~/.vim/bundle/YouCompleteMe/cpp/ycm/.ycm_extra_conf.py'autocmd CursorMovedI * if pumvisible() == 0|pclose|endifautocmd InsertLeave * if pumvisible() == 0|pclose|endifnmap:YcmDiags " competitionset nu ru mouse=a sw=4 ts=4 sts=4 nobk autoindent incsearch hlsearch t_Co=256set cindentsyntax on" colorscheme koehlercolorscheme molokai " 考场就用 koehlermap : w map : !./%< map : !./%< < ./in > ./out map : !g++ % -o %< -Wall -lm map : !g++ % -o %< -O2 -Wall -lm map : !g++ % -o %< -g -Wall -lm map : !python3 % map : !gdb %< map : vs ./in map : vs ./out map : !astyle --style=java -p -H < % > hh.cpp " Foldfunction! CFoldText() let sub = substitute(getline(v:foldstart), '\s*\(.*\){.*', '\1', 'g') return sub . ' (' . (v:foldend - v:foldstart + 1) . ' lines)'endfunctionset foldmethod=syntaxset foldtext=CFoldText()set fillchars-=fold:-set foldlevel=99nnoremap @=((foldclosed(line('.')) < 0) ? 'zC' : 'zO')
然后看配置高亮.
如果上面运行出错(反正我是崩了),用方法:
重启X
按alt+F2
,输入r
重启桌面环境