-
-
0alsactl init pulseaudio -k pulseaudio --start
-
0#重启声卡 alsactl init #restore pulseaudio -k #重开pulseaudio进程 pulseaudio --start
-
2自动连接WiFi Create a script, e.g. ~/bin/nm-connect-me.sh with the follwing contents: #!/bin/sh # Automatically try to connect to 'MyWiFi' when WiFi is enabled# # the output of nmcli should be in English LC_ALL=C # loop for a while until NetworkManager is accepting commands while [ "$(nmcli -t -f WIFI,STATE g)" = 'enabled:disconnected' ] do nmcli con up id MyWiFi sleep 5 done exit 0
-
0AppImage 修改 解包: ./NAME.AppImage --appimage-extract 打包: ./appimagetool-x86_64.AppImage squashfs-root NAME_NEW.AppImage
-
10使用电子表格自然会使用各种公式, 在libreoffice中可以为公式起个别名, 那么引用这条长公式的时候,就用这个别名即可。 菜单:插入-->名称-->管理,按“添加”, #名称:输入自定义的别名 #区域:写入公式(如果涉及有关单元格,应该用$绝对引用) 例如:得到本文档的路径和文件名: #名称:cFileName #区域:CELL("filename") 得到一个别名为cFileName的公式。 再添加新的公式别名,可以引用已经定义了的别名。 例如:得到本文档的路径: #
-
0sudo apt-get install mdadm mdadm --verbose --create /dev/md0 --level=raid1 --raid-devices=2 /dev/sda6 /dev/sdb4 #创建文件系统 mkfs.ext4 /dev/md0 #创建一个目录用来挂载阵列 sudo mkdir /mnt/DATAS #挂载你的阵列并将它添加到 /etc/fstab 上 /dev/md0 /mnt/md0 ext4 defaults 0 0 #运行,检查 fstab 中的条目是否有错误 mount -av #查看阵列的状态。 sudo mdadm --detail /dev/md0 cat /proc/mdstat #修改权限 sudo chown -R td:td /mnt/DATAS #使用下面的命令保存 RAID 的配置到文件“mdadm.conf”中。 mdadm --detail --scan --verbose >> /etc/m
-
2手动调整分辨率,首先要得到分辨率的表示字符串。然后修改/etc/X11/xorg.conf配置文件。 1.命令行:cvt <你需要的分辨率><空格><刷新
-
1Since version 4, both Samba Server & Samba Clients do not allow an older level of protocols negotiation. You have to enable them in smb.conf file Edit /etc/samba/smb.conf in the [global] section, add the following line client min protocol = NT1 [global] server role = standalone server map to guest = Bad User usershare allow guests = yes hosts allow = 192.168.0.0/16 hosts deny = 0.0.0.0/0 # Add the following line to disable SMB V1 and allow SMB V2 or higher min protocol = SMB2 max protocol = SMB3 client min protocol = SMB2 client max protocol = SMB3 client ipc min protocol = SMB2
-
31、下载apk-tool 以及 apktool-install-linux (32位程序) http://code.google.com/p/android-apktool/downloads/detail?name=a 下载签名工具:dex2j
-
10使用工具:pyinstaller 首先安装好Kivy-1.8.0-py2.7-win32.zip,以及pyinstaller 2.1。 两者解压即可。 1、进入Kivy目录,kivy.bat,进入kivy运行环境(CMD窗口)。 >>> cd pyinstaller-2.1 >>> python pyinstaller.py --onedir --windowed --icon ..\my.iso --name test ..\main.py (可选option --onefile --console ) 2、运行上面的命令后,在当前目录下创建test目录,生成test.spec配置文件。 3、进入testu目录,删除里面生成的dist、build两个文件夹。 4、打开test.spec文件。 开头增加两行: from kivy.tool
-
4AMD显卡3650:启用动态电源管理后,屏幕不定时冻结。 lspci -v |grep VGA 01:00.0 VGA compatible controller: Advanced Micro Devices, Inc. [AMD/AT
-
2亲爱的各位吧友:欢迎来到我用linux
-
2HDMI to VGA, edit config.txt # For more options and information see # http://www.raspberrypi.org/documentation/configuration/config-tx # Som
-
1当用netstat -an的时候,可以看到类似的输出: udp 0 0 0.0.0.0:32768 0.0.0.0:* 但是查找/etc/services又没有这个端口的相关说明,怎么办呢? 使用ls
-
5avconv -threads 2 -i "/media/dv/capture/k1.dv" -deinterlace -f mp4 -r 25 -c:v libx264 -s 640x480 -b:v 1400k -flags2 dct8x8 -pix_fm
-
01、安装ubuntu server 12.04.2。 #服务器升级 sudo do-release-upgrade -d #必要时修改源地址,加快升级速度 sudo nano /etc/apt/sources.list sudo apt-get update sudo apt-get upgrade # 2、========================================== #本地语言设定文件 #服务器还是用英文语言好 locale locale -a cat /var/lib/locales/supported.d/local #可选的中文语言环境 zh_CN.GBK GBK zh_CN.UTF-8 UTF-8 zh_CN GB2312 en_US.UTF-8 UTF-8 #修改后,重新配置 dpkg-reconfigure locales cd /usr/share/locales ls >>>install-language-pack remove-language-pack sudo ./insta
-
2RAW格式转换: 使用dcraw,ufraw。因为相机厂商不断更改RAW文件格式。 因此,如果dcraw、ufraw无法正确显示,
-
0速来围观
-
51、更改分辨率 进入debug模式: cd /mnt/grub/ vi menu.lst 按i进行编辑 kernel参数增加: UVESA_MODE=1024×768 DPI=160 esc退出编辑状态,:进入命
-
1默认关闭了系统休眠功能,要重新启用,使用如下命令: 首先使用:sudo pm-hibernate 测试系统硬件是否支持系
-
2libreoffice导出为PDF文件,中文字体名使用了英文名, 使用Inkscape将PDF转化为SVG图形后,无法识别字体, 下面的脚本进行批量修改。 #!/bin/bash # s
-
0by nixCraft on November 8, 2005 · 27 comments· LAST UPDATED November 15, 2007 in Debian Linux, File system, Gentoo Linux When you use term
-
1编辑: gksu mousepad /usr/share/mime/packages/freedesktop.org.xml 将下面一句: <mime-type type="application/vnd.adobe.flash.movie"> 替换为: <mime-type type="application/x-shockwave-flash"> 将 <alias type="application/x-shockwave-flash"/> 替换为: <alias type="application/vnd.adobe.flash.movie"/> 最后刷新: sudo update-mime-database /usr/share/mime sudo sed -i.bak -e *s/mime-type.*vnd\.adobe\.flash\.movie/mime-type\ type=\"application\/x-shockwave-flash/g* \ -e *s/alias.*x-shockwave-flash/alias\ type=\&
-
2从网页或者其他地方复制、粘贴进libreoffice,经常出现灰色的区域,消除的方法: 1、按ctrl + F8(菜单 视图-->字段背景颜色),可以显示或不显示
-
1以下按键的互换在图形界面上才起作用。 1、首先用xmodmap -pke命令,得到一份各个按键代码及其作用: keycode 9 = Escape NoSymbol Escape keycode 10 = 1 exclam 1 exclam keycode 11 = 2 at 2 at keycode 12 = 3 numbersign 3 numbersign keycode 13 = 4 dollar 4 dollar keycode 14 = 5 percent 5 percent keycode 15 = 6 asciicircum 6 asciicircu …… 2、然后用xev |grep keycode命令,查看物理按键的代码。 例如: 按下左ctrl键是: state 0x0, keycode 37 (keysym 0xffe3, Control_L), same_screen YES 按下左Alt键是 state 0x0, keycode 64 (keysym 0xffe9,
-
6安装模块: sudo ap-get install pulseaudio pulseaudio-module-bluetooth pavucontrol 加载模块: sudo pactl load-module module-bluetooth-discover
-
6batch get the image from webpage. #!/usr/bin/python3 import re import urllib.request def getHtml(url): 。。 page = urllib.request.urlopen(ur
-
2首先下载grub4dos。新版迁移地址:
-
1编写mb文件: 格式:编码【空格】词组 例如: ks 快速 保存后缀为mb的文本文件。 放入个人用户文件夹内: ~/.config/fcitx/data/quickphrase.d 也可以
-
2=============================================================== sudo apt-get install lighttpd ==============================================
-
01,安装软件包,执行sudo apt-get install openssh-server Ubuntu缺省安装了openssh-client,如果你的系统没有安装的话,再用apt-get install openssh
-
0# This is a sample menu.lst file. You should make some changes to it. # The old install method of booting via the stage-files has been remov
-
0#!/bin/bash #先用xrandr命令查看output的名字例如VGA1、LVDS1等 # filename on|off case $1 in on xrandr --output VGA1 --mode 1024x768 --rate 60
-
0ext3 转 ext4 livecd成功进入,umount掉所有分区 tune2fs -O extents,uninit_bg,dir_index /dev/sda6 fsck -f /dev/sda6 然后改/etc/fstab,将ext3改