- 浏览: 1151132 次
- 性别:
- 来自: 北京
文章分类
- 全部博客 (411)
- Java Foundation (41)
- AI/机器学习/数据挖掘/模式识别/自然语言处理/信息检索 (2)
- 云计算/NoSQL/数据分析 (11)
- Linux (13)
- Open Source (12)
- J2EE (52)
- Data Structures (4)
- other (10)
- Dev Error (41)
- Ajax/JS/JSP/HTML5 (47)
- Oracle (68)
- FLEX (19)
- Tools (19)
- 设计模式 (4)
- Database (12)
- SQL Server (9)
- 例子程序 (4)
- mysql (2)
- Web Services (4)
- 面试 (8)
- 嵌入式/移动开发 (18)
- 软件工程/UML (15)
- C/C++ (7)
- 架构Architecture/分布式Distributed (1)
最新评论
-
a535114641:
LZ你好, 用了这个方法后子页面里的JS方法就全不能用了呀
页面局部刷新的两种方式:form+iframe 和 ajax -
di1984HIT:
学习了,真不错,做个记号啊
Machine Learning -
赵师傅临死前:
我一台老机器,myeclipse9 + FB3.5 可以正常使 ...
myeclipse 10 安装 flash builder 4.6 -
Wu_Jiang:
触发时间在将来的某个时间 但是第一次触发的时间超出了失效时间, ...
Based on configured schedule, the given trigger will never fire. -
cylove007:
找了好久,顶你
Editable Select 可编辑select
Useful Shortcut Keys In Ubuntu
Ctrl + super(即start键,就是xp下常说的windows键) + d: 显示桌面;
Ctrl + Alt + t: 打开一个新的terminal;
http://maketecheasier.com/useful-shortcut-keys-in-ubuntu/2008/07/14
引用
须谨记的 terminal 命令摘录:
Screen Capture:
ctrl + d : 退出当前terminal ctrl + l : shortcut for clear ctrl + c : Kill the current process. ctrl + z : Send the current process to background. ctrl + a : 将光标移至行首 ctrl + e : 将光标移至行尾 ctrl + u : 删除行首至光标间的字符 ctrl + k : 删除光标处至行尾的字符 ctrl + w : 删除光标前的第一个单词 Shift + Ctrl + C = copy the highlighted text to the clipboard. Shift + Ctrl + V (or Shift + Insert) = pastes the contents of the clipboard. Shift + Ctrl + T : 在当前 terminal 窗口中打开一个新的 terminal tab.
http://askubuntu.com/questions/170163/how-do-i-set-a-shortcut-to-screenshot-a-selected-area
Multiple tabs in one Terminal:
http://en.wikipedia.org/wiki/Terminal_multiplexer
Unity Launcher & desktop entry:
Desktop Entry Specification:
http://standards.freedesktop.org/desktop-entry-spec/desktop-entry-spec-latest.html
https://help.ubuntu.com/community/UnityLaunchersAndDesktopFiles
# 查看当前哪些 .desktop applications 被 “Lock to Launcher”: $ gsettings get com.canonical.Unity.Launcher favoritesgsettings 就相当于是 windows 下的注册表,参见:
http://ekd123.org/blog/long-intro-to-gsettings/
那 gsettings 相关的文件到底存在哪里那?答案是存在 ~/.config/dconf/user 这个二进制文件中:
http://unix.stackexchange.com/questions/8922/where-does-gsettings-store-its-files
Ubuntu 下的文件类型是通过 MIME Types 定的,位于 /etc/mime.types:
https://help.ubuntu.com/community/AddingMimeTypes
How to pin Eclipse to the Unity launcher?
http://askubuntu.com/questions/80013/how-to-pin-eclipse-to-the-unity-launcher
怎么实现 ubuntu 下的 File Associations?这里以将java反编译工具 jd-gui 与 .class 和 .jar 文件关联为例,说明如下:
引用
首先,为 jd-gui 新建 desktop 文件 ~/.local/share/applications/opt-jd-gui.desktop:
关于 .desktop 文件,涉及到以下一些目录和文件:[Desktop Entry] Type=Application Name=jd-gui Icon=/home/lee/Dev/jd-gui-0.3.5.linux.i686/jd-gui.png Exec=/home/lee/Dev/jd-gui-0.3.5.linux.i686/jd-gui MimeType=application/java-archive;application/java-vm; Terminal=false Categories=decompiler;上面文件定义的 MimeType 并不会实现 jd-gui 和 .class、.jar 文件的自动文件关联(那写在这里有什么用?待查),还需要在 ~/.local/share/applications/mimeinfo.cache 中对它们进行文件关联:
[MIME Cache] application/java-archive=opt-jd-gui.desktop; // 对应 .jar 文件 application/java-vm=opt-jd-gui.desktop; // 对应 .class 文件
~/.local/share/applications mimeapps.list mimeinfo.cache /usr/share/applications defaults.list mimeinfo.cache两个目录的区别无非就是一个针对当前用户有效,另一个是全局有效;有冲突的话,当前用户的设置覆盖全局设置。
一些应用,如 Wine、Okular,被安装后会将右键菜单的 "open with" menu 搞的一团糟,在 右键菜单的 "open with" menu 中会多出好几个名字叫 Wine/Okular 的选项;针对这种问题,直接删除 /usr/share/applications(或其子文件夹,如Okular的多个desktop文件在子文件夹 kde4 下,因为它是基于kde的) 中多余的该应用的 .desktop 文件即可。
关于 desktop entry 的 StartupWMClass:
引用
在使用 squirrel-sql-3.5.3 时,发现一个奇怪的问题:自动生成的 desktop entry 无法 lock 到 unity 上。解决办法:
http://muzso.hu/2013/08/29/how-to-create-a-custom-unity-launcher-for-a-java-app-eg.-squirrel-sql-client#comment-1893
https://bugs.launchpad.net/ubuntu/+source/unity/+bug/878113/comments/8
http://elliotth.blogspot.it/2007/02/fixing-wmclass-for-your-java.html
关于 WM_CLASS:
http://tronche.com/gui/x/icccm/sec-4.html#s-4.1.2.5
http://standards.freedesktop.org/startup-notification-spec/startup-notification-0.1.txt
http://muzso.hu/2013/08/29/how-to-create-a-custom-unity-launcher-for-a-java-app-eg.-squirrel-sql-client#comment-1893
https://bugs.launchpad.net/ubuntu/+source/unity/+bug/878113/comments/8
http://elliotth.blogspot.it/2007/02/fixing-wmclass-for-your-java.html
关于 WM_CLASS:
http://tronche.com/gui/x/icccm/sec-4.html#s-4.1.2.5
http://standards.freedesktop.org/startup-notification-spec/startup-notification-0.1.txt
# 通过 xprop 查看一个 window 的 WM_CLASS (http://superuser.com/questions/142318/how-can-i-view-the-wmclass-attribute-of-a-window-in-xorg-linux): $ xprop WM_CLASS (then click on the launched window)
disable-mouse-wheel-paste on ubuntu:
#执行下面命令,看到 mouse 的 id 为 9 $ xinput list | grep -i mouse #查看 id 为 9 的设备的 button map,输出为 1,2,3,....16 $ xinput get-button-map 9 #禁掉 id 为 9 设备,即鼠标,滚轮被按下时的粘贴功能。建议将这句话设为系统的 Startup applications。 $ xinput set-button-map 9 1 0disable touchpad of laptop:
# 查看 touchpad 的名字、id 等 $ xinput list | grep -i touchpad ⎜ ↳ SynPS/2 Synaptics TouchPad id=13 [slave pointer (2)] # 禁掉该 touchpad xinput --disable "SynPS/2 Synaptics TouchPad"
Softwares:
一 修改ubuntu(12.04)下烦人的eclipse black background color in hover:
http://gladiacxtylish.wordpress.com/2011/12/06/eclipse-tooltips-black-background-color-fix-in-ubuntu-11-10/
http://www.vogella.com/blog/2012/12/04/eclipse-papercut-10-eclipse-on-ubuntu-fixing-the-black-background-color-in-hover/
http://askubuntu.com/questions/70599/how-to-change-tooltip-background-color-in-unity
引用
如最佳答案所言,12.04只需要修改 /usr/share/themes/Ambiance/gtk-2.0/gtkrc 文件即可。将其中的tooltip_fg_color(弹出框中的文字颜色)设为#000000(黑色),tooltip_bg_color(弹出框中的背景颜色)设为#f5f5b5(黄色)。
二 在使用 SQuirreL 查询数据库时,默认情况下 as 后的列别名会被忽略掉(即即使加了 columnName as columnAlias, 查询结果中看到的列名依然是 columnName),可以更改其以下配置使其正常过来:
http://stackoverflow.com/questions/12709814/column-aliasing-in-select-statements-doesnt-work-with-squirrel-sql-firebird
三 升级 libreoffice:
http://iloveubuntu.net/libreoffice-41-released-and-available-ppa
Apt dpkg etc Commands:
apt-get:
https://help.ubuntu.com/community/AptGet/Howto
# Run this command after changing /etc/apt/sources.list or /etc/apt/preferences . apt-get update # upgrades all installed packages. apt-get upgrade # The same as the above, except add the "smart upgrade" checkbox. It tells APT to use "smart" conflict resolution system, and it will attempt to upgrade the most important packages at the expense of less important ones if necessary. 另外, dist-upgrade 不会升级ubuntu系统,所以请放心使用("apt-get dist-upgrade" does not perform distribution upgrade. ) apt-get dist-upgrade # search for a particular package by name or description $ apt-cache search keyword # 安装 deb 包 $ sudo dpkg -i packagename.deb # dpkg 不会安装包的依赖,如果有依赖未安装会报错;遇到这种情况可以使用 gdebi 来安装 deb 包,该安装程序会将 deb 的依赖也安装上。参见 http://askubuntu.com/questions/40011/how-to-let-dpkg-i-install-dependencies-for-me $ sudo gdebi package.debUsing apt-cache & aptitude search packages:
http://www.cyberciti.biz/faq/searching-for-packages-in-debian-ubuntu-aptitude/
引用
使用 apt-cache 搜索本地安装的包
使用 aptitude 搜索 Ubuntu repository 中的包
为 Ubuntu 做 apt-get 时使用代理:
使用 aptitude 搜索 Ubuntu repository 中的包
http://qixinglu.com/post/ubuntu_apt-get_proxy_setup.html
http://askubuntu.com/questions/35223/syntax-for-socks-proxy-in-apt-conf
$ sudo apt-get -o Acquire::http::proxy="http://127.0.0.1:8087/" update(or, upgrade) $ sudo apt-get -o Acquire::socks::proxy="socks://127.0.0.1:8099/" update $ autossh -M0 -o "ServerAliveInterval 60" -o "ServerAliveCountMax 6" -D 8099 -g -Nqf user@ip
修改 command prompt 的字体颜色和背景色,使其更加容易与其他颜色的文字做区分:
#浅灰近白背景色、黑色字体,没有任何的ubuntu默认颜色是与这个相同的,而且很醒目 export PS1="\e[1;30m\e[47m\u@\h:\w\$ \e[m"上面的 export 只是临时更改当前的 command prompt,想要让修改对当前用户始终起作用,可以修改 ~/.bashrc 文件:
http://askubuntu.com/questions/123268/changing-colors-for-user-computer-name-and-current-directory-in-terminal
引用
ubuntu下对该文件涉及到的修改包括:
1 拿掉 force_color_prompt=yes 前的注释
2 打开 color_prompt 后,ubuntu默认的颜色并不是我想要的,我想要的是上面export的浅灰近白背景色、黑色字体,所以,修改
资料:
1 拿掉 force_color_prompt=yes 前的注释
2 打开 color_prompt 后,ubuntu默认的颜色并不是我想要的,我想要的是上面export的浅灰近白背景色、黑色字体,所以,修改
if [ "$color_prompt" = yes ]; then PS1='${debian_chroot:+($debian${JAVA_HOME}/jre _chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ ' else中的PS1,使其变成
PS1='${debian_chroot:+($debian${JAVA_HOME}/jre _chroot)}\[\033[01;30m\]\[\033[47m\]\u@\h:\w\[\033[00m\]\$ '
http://www.thegeekstuff.com/2008/09/bash-shell-ps1-10-examples-to-make-your-linux-prompt-like-angelina-jolie/
关于linux 下的 PS1, PS2, PS3, PS4 (PS stands for Prompt Statement):
http://ss64.com/bash/syntax-prompt.html
http://www.thegeekstuff.com/2008/09/bash-shell-take-control-of-ps1-ps2-ps3-ps4-and-prompt_command/
关于环境变量 LS_COLORS:
terminal中(只)查看环境变量 LS_COLORS:
$ dircolors添加 -p 参数后的输出:
引用
...
# Below are the color init strings for the basic file types. A color init
# string consists of one or more of the following numeric codes:
# Attribute codes:
# 00=none 01=bold 04=underscore 05=blink 07=reverse 08=concealed
# Text color codes:
# 30=black 31=red 32=green 33=yellow 34=blue 35=magenta 36=cyan 37=white
# Background color codes:
# 40=black 41=red 42=green 43=yellow 44=blue 45=magenta 46=cyan 47=white
#NORMAL 00 # no color code at all
#FILE 00 # regular file: use no color at all
RESET 0 # reset to "normal" color (注:对应rs)
DIR 01;34 # directory
LINK 01;36 # symbolic link. (If you set this to 'target' instead of a
# numerical value, the color is as for the file pointed to.)
MULTIHARDLINK 00 # regular file with more than one link (注:对应mh)
FIFO 40;33 # pipe
SOCK 01;35 # socket
DOOR 01;35 # door
BLK 40;33;01 # block device driver
CHR 40;33;01 # character device driver
ORPHAN 40;31;01 # symlink to nonexistent file, or non-stat'able file
SETUID 37;41 # file that is setuid (u+s)
SETGID 30;43 # file that is setgid (g+s)
CAPABILITY 30;41 # file with capability (注:对应ca)
STICKY_OTHER_WRITABLE 30;42 # dir that is sticky and other-writable (+t,o+w)
OTHER_WRITABLE 34;42 # dir that is other-writable (o+w) and not sticky
STICKY 37;44 # dir with the sticky bit set (+t) and not other-writable
# This is for files with execute permission:
EXEC 01;32
# List any file extensions like '.gz' or '.tar' that you would like ls
# to colorize below. Put the extension, a space, and the color init string.
# (and any comments you want to add after a '#')
# If you use DOS-style suffixes, you may want to uncomment the following:
#.cmd 01;32 # executables (bright green)
#.exe 01;32
#.com 01;32
#.btm 01;32
#.bat 01;32
# Or if you want to colorize scripts even if they do not have the
# executable bit actually set.
#.sh 01;32
#.csh 01;32
# archives or compressed (bright red)
.tar 01;31
.tgz 01;31
...
http://www.bigsoft.co.uk/blog/index.php/2008/04/11/configuring-ls_colors# Below are the color init strings for the basic file types. A color init
# string consists of one or more of the following numeric codes:
# Attribute codes:
# 00=none 01=bold 04=underscore 05=blink 07=reverse 08=concealed
# Text color codes:
# 30=black 31=red 32=green 33=yellow 34=blue 35=magenta 36=cyan 37=white
# Background color codes:
# 40=black 41=red 42=green 43=yellow 44=blue 45=magenta 46=cyan 47=white
#NORMAL 00 # no color code at all
#FILE 00 # regular file: use no color at all
RESET 0 # reset to "normal" color (注:对应rs)
DIR 01;34 # directory
LINK 01;36 # symbolic link. (If you set this to 'target' instead of a
# numerical value, the color is as for the file pointed to.)
MULTIHARDLINK 00 # regular file with more than one link (注:对应mh)
FIFO 40;33 # pipe
SOCK 01;35 # socket
DOOR 01;35 # door
BLK 40;33;01 # block device driver
CHR 40;33;01 # character device driver
ORPHAN 40;31;01 # symlink to nonexistent file, or non-stat'able file
SETUID 37;41 # file that is setuid (u+s)
SETGID 30;43 # file that is setgid (g+s)
CAPABILITY 30;41 # file with capability (注:对应ca)
STICKY_OTHER_WRITABLE 30;42 # dir that is sticky and other-writable (+t,o+w)
OTHER_WRITABLE 34;42 # dir that is other-writable (o+w) and not sticky
STICKY 37;44 # dir with the sticky bit set (+t) and not other-writable
# This is for files with execute permission:
EXEC 01;32
# List any file extensions like '.gz' or '.tar' that you would like ls
# to colorize below. Put the extension, a space, and the color init string.
# (and any comments you want to add after a '#')
# If you use DOS-style suffixes, you may want to uncomment the following:
#.cmd 01;32 # executables (bright green)
#.exe 01;32
#.com 01;32
#.btm 01;32
#.bat 01;32
# Or if you want to colorize scripts even if they do not have the
# executable bit actually set.
#.sh 01;32
#.csh 01;32
# archives or compressed (bright red)
.tar 01;31
.tgz 01;31
...
引用
The directory lister under UNIX is called ‘ls’. In the deep and distant past this was a very black and white affair. GNU has changed all that by introducing an environment variable called LS_COLORS which allows you to set the colours of files based on extension, permissions and file type.
http://blog.twistedcode.org/2008/04/lscolors-explained.html
http://ubuntuforums.org/showthread.php?t=1410897
引用
一 用各自的颜色标示LS_COLORS中各个量的脚本:
二 用各自的颜色标示dircolors命令中各个量的脚本:
http://askubuntu.com/questions/17299/color-meanings-in-terminal#!/bin/bash a=' ' for c in `echo $LS_COLORS | sed 's/[=:]/ /g'`; do if [[ "$c" =~ ^([0-9]*;?[0-9]+)$ ]]; then echo -en "\033[${c}m${a}\033[0m " else a=$c fi done # for new line echo输出:
二 用各自的颜色标示dircolors命令中各个量的脚本:
#!/bin/bash a=' ' for c in `dircolors -p | cut -d'#' -f1 | grep -v '^ *$'`; do if [[ "$c" =~ ^([0-9]*;?[0-9]+)$ ]]; then echo -en "\033[${c}m${a}\033[0m " else a=$c fi done echo -e "\b"输出:
引用
另外一个(相比前两个不算完全)的ls_colors显示脚本:
#!/bin/bash eval $(echo "no:global default;fi:normal file;di:directory;ln:symbolic link;pi:named pipe;so:socket;do:door;bd:block device;cd:character device;or:orphan symlink;mi:missing file;su:set uid;sg:set gid;tw:sticky other writable;ow:other writable;st:sticky;ex:executable;"|sed -e 's/:/="/g; s/\;/"\n/g') { IFS=: for i in $LS_COLORS do echo -e "\e[${i#*=}m$( x=${i%=*}; [ "${!x}" ] && echo "${!x}" || echo "$x" )\e[m" done }
Ubuntu 下定制合适的屏幕显示分辨率:
使用 xrandr 查看显示设备的名字:
$ xrandr Screen 0: minimum 320 x 200, current 1600 x 900, maximum 8192 x 8192 VGA1 connected 1600x900+0+0 (normal left inverted right x axis y axis) 0mm x 0mm这里的 VGA1 即为显示设备的名字,下记为 <DEVICE_NAME>.
使用 cvt 查看指定分辨率对应的 Modeline(这里以16:9显示器比较常用的1600x900,刷新率 60 为例):
$ cvt 1600 900 60 # 1600x900 59.95 Hz (CVT 1.44M9) hsync: 55.99 kHz; pclk: 118.25 MHz Modeline "1600x900_60.00" 118.25 1600 1696 1856 2112 900 903 908 934 -hsync +vsync输出里 “Modeline” 这个单词后的东西即为对应的 Modeline, 其中"1600x900_60.00" 为 Modeline 的名字,后面的一堆乱八糟数字为其对应的显示参数。
为显示设备添加该新的 modeline 并使用:
xrandr --newmode "1600x900_60.00" 118.25 1600 1696 1856 2112 900 903 908 934 -hsync +vsync xrandr --addmode <DEVICE_NAME> "1600x900_60.00"这样就使用上了这个新的分辨率。但是这样设置在系统重启后就失效了。为了永远有效,可将上面添加并使用新modeline的代码写到 display manager 对应的启动脚本里去。查看当前使用的是哪个 display manager:
$ cat /etc/X11/default-display-manager本人用的是 lightdm,lightdm对应的设置如下:
新建一个名为 lightdmxrandr.sh 的文件将其放入 /usr/local/bin 下,内容如下:
#!/bin/bash xrandr --newmode "1600x900_60.00" 118.25 1600 1696 1856 2112 900 903 908 934 -hsync +vsync xrandr --addmode VGA1 "1600x900_60.00" xrandr --output VGA1 --mode "1600x900_60.00"记得更改此文件的权限为可执行:
chmod +x lightdmxrandr.sh修改 lightdm 的配置文件 /etc/lightdm/lightdm.conf,在文件最后添加下面一行:
display-setup-script=/usr/local/bin/lightdmxrandr.shOver.
Problems or Bugs:
1. 14.04 下,如果拔掉笔记本的电源,则会出现鼠标丢失焦点的情况。解决办法是将 /etc/laptop-mode/conf.d/usb-autosuspend.conf 中 CONTROL_USB_AUTOSUSPEND 的值由 "auto" 该为空串 "",从而禁用 USB autosuspend feature,参见:
http://askubuntu.com/a/318181/119407
UsingTheTerminal
https://help.ubuntu.com/community/UsingTheTerminal
ubuntu速度慢的原因之内存和swap分区
http://www.opensoce.com/2010/08/Ubuntu-Su-Du-Man-De-Yuan-Yin-Zhi-Nei-Cun-He-Swap-Fen-Qu/
发表评论
-
python
2013-03-19 12:15 1279Python documentation, include T ... -
Linux File System | linux文件系统
2013-02-01 17:54 1649Unix Filesystem Hierarchy S ... -
Gerrit : Code Review Tool based on Git
2012-09-21 18:52 13029Gerrit Code Review for Git: htt ... -
Git : Distributed version control system
2012-09-20 09:59 6168Srcs : Git Reference http://gi ... -
Linux 下 解释性的语言 - shell
2012-09-04 23:57 1642Shell Scripts are collect ... -
未完 Regular Expressions | 正则表达式
2011-08-25 11:43 1532Extended Regular Expression ... -
Vim & Emacs
2009-11-23 00:30 1746精读: Learn Vim Progressively ... -
用信号量机制来实现多个进程对临界资源的互斥访问 & PV操作
2009-11-21 13:55 11347进程互斥 定义:两个或两个以上的进程,不能同时进入关于同一组 ... -
Linux启动过程剖析
2009-11-12 22:36 1429http://student.csdn.net/space.p ... -
Linux 与 Java
2009-07-30 09:21 1304Ubuntu 12.04 下安装配置 JDK: htt ... -
Linux Commands 命令
2009-07-08 22:12 2510Linux命令大全: http://ss64.com/bas ... -
crontab & Quartz
2009-06-11 17:36 3245Add Jobs To cron Under ...
相关推荐
ubuntu8.04使用手册,ubuntu8.04使用手册ubuntu8.04使用手册,ubuntu8.04使用手册,ubuntu8.04使用手册,
SeedUbuntu虚拟机使用手册1 SeedUbuntu虚拟机使用手册1是关于使用SeedUbuntu虚拟机的详细指南,本手册将指导用户从搭建实验环境到安装docker、创建镜像、使用容器、启动telnet服务等多个方面。 实验环境搭建 在...
第8章分享了一些Ubuntu使用小技巧,如启动系统、活动记录、文件操作技巧、备份与数据同步、系统恢复、常用命令和常见错误的处理。 第9章讲解了Ubuntu系统微调的相关内容,包括系统初始化、访问限制、刻录机使用、X...
### Ubuntu的使用教程知识点详解 #### 一、Ubuntu概述 - **起源与发展**:Ubuntu源自非洲南部的语言,意味着“人的本质在于与他人的联系”。这一理念体现在Ubuntu操作系统的设计哲学之中,强调用户之间的互助与...
Ubuntu使用教程主要介绍了Ubuntu系统的入门级操作和配置方法,其内容涵盖了网络连接、软件源设置、系统更新以及界面个性化设置等多个方面。以下为本教程的主要知识点: 1. 网络连接 Ubuntu系统在连接网络时提供了...
本手册是Ubuntu官方手册PDF文件,非影音版文件。而且是Ubuntu最新版本文件 v14.04. 希望能对您有帮助。 Prologue 5 Welcome 5 Ubuntu Philosophy 5 A brief history of Ubuntu 6 Is Ubuntu right for you? 7 Contact...
### Ubuntu使用教程知识点详解 #### 一、Ubuntu简介与特性 - **Ubuntu定义**:Ubuntu是一种基于Linux的操作系统,提供专业级别的支持。 - **应用范围**:广泛应用于个人电脑、服务器以及云端计算环境。 - **用户...
在深入探讨Ubuntu使用心得之前,让我们先了解一下Ubuntu操作系统的基础。Ubuntu是一个基于Debian的开源Linux发行版,由Canonical公司维护,其目标是提供一个用户友好的桌面环境和强大的服务器平台。Ubuntu的名字来源...
《非常详尽的Ubuntu系统安装使用手册》是一份详尽的指南,旨在帮助用户无痛地安装和使用Ubuntu操作系统。这份手册特别适用于那些对Linux系统还不熟悉,特别是Ubuntu的新手。手册包含了丰富的安装截图,清晰的配置...
Ubuntu12.04菜鸟使用手册合集+Ubuntu标准教程Ubuntu12.04菜鸟使用手册合集+Ubuntu标准教程Ubuntu12.04菜鸟使用手册合集+Ubuntu标准教程Ubuntu12.04菜鸟使用手册合集+Ubuntu标准教程Ubuntu12.04菜鸟使用手册合集+...
Ubuntu 使用教程是一个全面介绍如何操作和利用Ubuntu Linux操作系统的学习资源。Ubuntu是一款基于Debian的开源Linux发行版,因其用户友好性和强大的软件包管理系统而受到全球用户的喜爱。本教程旨在帮助初学者以及有...
Ubuntu操作系统安装使用教程 Ubuntu操作系统安装使用教程-月光博客
cv-bridgeConfig(用于20.04的ubuntu使用目标识别)
k8s离线文件包 Ubuntu 使用Kubeadm 离线安装k8s 参考连接 https://blog.csdn.net/u010952056/article/details/127276191?spm=1001.2014.3001.5501
当然,更加少有关于使用Mbr引导Ubuntu与Win7双系统的资料。我敢说,绝大部分玩双系统的都不会知道如何设置Ubuntu与Win7双系统利用Mbr引导。哈哈,我就是用了三年Linux到今天才无意中发现的。算是机缘巧合吧,是在帮...
net-tools,安装Ubuntu后使用ifconfig命令
Ubuntu使用iscsi方法,直接记事本打开即可。
在Ubuntu操作系统中,使用Qt开发串口程序是一个常见的任务,特别是在进行嵌入式系统开发或者设备通信时。Qt是一个强大的跨平台应用开发框架,支持多种操作系统,包括Linux。本篇文章将详细讲解如何在Ubuntu环境下...