- 浏览: 127540 次
- 性别:
- 来自: 北京
最新评论
-
yangtaoxf126.com:
public class SimpleJDBC {
publ ...
oracle的sys用户怎么通过jdbc连接
# ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples
# If not running interactively, don't do anything
[ -z "$PS1" ] && return
# don't put duplicate lines in the history. See bash(1) for more options
export HISTCONTROL=ignoredups
# ... and ignore same sucessive entries.
export HISTCONTROL=ignoreboth
# check the window size after each command and, if necessary,
# update the values of LINES and COLUMNS.
shopt -s checkwinsize
# make less more friendly for non-text input files, see lesspipe(1)
[ -x /usr/bin/lesspipe ] && eval "$(lesspipe)"
# set variable identifying the chroot you work in (used in the prompt below)
if [ -z "$debian_chroot" ] && [ -r /etc/debian_chroot ]; then
debian_chroot=$(cat /etc/debian_chroot)
fi
# set a fancy prompt (non-color, unless we know we "want" color)
case "$TERM" in
xterm-color) color_prompt=yes;;
esac
# uncomment for a colored prompt, if the terminal has the capability; turned
# off by default to not distract the user: the focus in a terminal window
# should be on the output of commands, not on the prompt
#force_colored_prompt=yes
if [ -n "$force_color_prompt" ]; then
if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then
# We have color support; assume it's compliant with Ecma-48
# (ISO/IEC-6429). (Lack of such support is extremely rare, and such
# a case would tend to support setf rather than setaf.)
color_prompt=yes
else
color_prompt=
fi
fi
if [ "$color_prompt" = yes ]; then
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
else
PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
fi
unset color_prompt force_color_prompt
# If this is an xterm set the title to user@host:dir
case "$TERM" in
xterm*|rxvt*)
PROMPT_COMMAND='echo -ne "\033]0;${USER}@${HOSTNAME}: ${PWD/$HOME/~}\007"'
;;
*)
;;
esac
# Alias definitions.
# You may want to put all your additions into a separate file like
# ~/.bash_aliases, instead of adding them here directly.
# See /usr/share/doc/bash-doc/examples in the bash-doc package.
#if [ -f ~/.bash_aliases ]; then
# . ~/.bash_aliases
#fi
# enable color support of ls and also add handy aliases
if [ "$TERM" != "dumb" ] && [ -x /usr/bin/dircolors ]; then
eval "`dircolors -b`"
alias ls='ls --color=auto'
#alias dir='ls --color=auto --format=vertical'
#alias vdir='ls --color=auto --format=long'
#alias grep='grep --color=auto'
#alias fgrep='fgrep --color=auto'
#alias egrep='egrep --color=auto'
fi
# some more ls aliases
#alias ll='ls -l'
#alias la='ls -A'
#alias l='ls -CF'
# enable programmable completion features (you don't need to enable
# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
# sources /etc/bash.bashrc).
if [ -f /etc/bash_completion ]; then
. /etc/bash_completion
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples
# If not running interactively, don't do anything
[ -z "$PS1" ] && return
# don't put duplicate lines in the history. See bash(1) for more options
export HISTCONTROL=ignoredups
# ... and ignore same sucessive entries.
export HISTCONTROL=ignoreboth
# check the window size after each command and, if necessary,
# update the values of LINES and COLUMNS.
shopt -s checkwinsize
# make less more friendly for non-text input files, see lesspipe(1)
[ -x /usr/bin/lesspipe ] && eval "$(lesspipe)"
# set variable identifying the chroot you work in (used in the prompt below)
if [ -z "$debian_chroot" ] && [ -r /etc/debian_chroot ]; then
debian_chroot=$(cat /etc/debian_chroot)
fi
# set a fancy prompt (non-color, unless we know we "want" color)
case "$TERM" in
xterm-color) color_prompt=yes;;
esac
# uncomment for a colored prompt, if the terminal has the capability; turned
# off by default to not distract the user: the focus in a terminal window
# should be on the output of commands, not on the prompt
#force_colored_prompt=yes
if [ -n "$force_color_prompt" ]; then
if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then
# We have color support; assume it's compliant with Ecma-48
# (ISO/IEC-6429). (Lack of such support is extremely rare, and such
# a case would tend to support setf rather than setaf.)
color_prompt=yes
else
color_prompt=
fi
fi
if [ "$color_prompt" = yes ]; then
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
else
PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
fi
unset color_prompt force_color_prompt
# If this is an xterm set the title to user@host:dir
case "$TERM" in
xterm*|rxvt*)
PROMPT_COMMAND='echo -ne "\033]0;${USER}@${HOSTNAME}: ${PWD/$HOME/~}\007"'
;;
*)
;;
esac
# Alias definitions.
# You may want to put all your additions into a separate file like
# ~/.bash_aliases, instead of adding them here directly.
# See /usr/share/doc/bash-doc/examples in the bash-doc package.
#if [ -f ~/.bash_aliases ]; then
# . ~/.bash_aliases
#fi
# enable color support of ls and also add handy aliases
if [ "$TERM" != "dumb" ] && [ -x /usr/bin/dircolors ]; then
eval "`dircolors -b`"
alias ls='ls --color=auto'
#alias dir='ls --color=auto --format=vertical'
#alias vdir='ls --color=auto --format=long'
#alias grep='grep --color=auto'
#alias fgrep='fgrep --color=auto'
#alias egrep='egrep --color=auto'
fi
# some more ls aliases
#alias ll='ls -l'
#alias la='ls -A'
#alias l='ls -CF'
# enable programmable completion features (you don't need to enable
# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
# sources /etc/bash.bashrc).
if [ -f /etc/bash_completion ]; then
. /etc/bash_completion
发表评论
-
__define_initcall 作用
2010-11-25 19:26 1230前言 宏定义__define_initcall ... -
转载--Linux 2.6内核I/O端口资源管理
2010-11-02 15:39 838申明:本文章是对“Linux对I/O端口资源的管理”该文章进行 ... -
linux 2.6线程创建源码分析
2010-11-02 15:09 1123上章讲到线程,现在对线程创建的代码流程分析下。来一步一步揭开她 ... -
linux 2.6进程与线程
2010-11-02 15:09 12261 > 线程和进程的 ... -
linux中ELF加载过程分析
2010-10-19 11:16 1934linux中ELF加载过程分析 - 博青港湾-技术空间 - ... -
Linux设备模型 学习总结
2010-10-13 21:21 950看LDD3中设备模型一章,觉得思维有些混乱。这里从整体的角度来 ... -
linux软中断的实现
2010-10-13 21:12 1094中断服务程序往往都是在CPU关中断的条件下执行的,以避免中断 ... -
zImage / vmlinux / Image生成的流程图
2010-10-13 21:11 2401SRC_TREE :=./ HEADER_PATH ... -
执行程序时内存管理的情景
2010-10-13 21:07 1425do_execve ->open_exec->de ... -
Linux Kernel 2.6进程调度的分析(揭示了几乎所有2.6调度的东西)
2010-10-13 20:16 1907第一章 Kernel 2.4存在的 ... -
ibm developer blog
2010-10-10 10:05 850Linux slab 分配器剖析 http://www.ibm ... -
linux2.6.29 启动过程详细分析
2010-08-12 16:02 1360突然心血来潮,想自己写个模块,于是就把linux2.6.29的 ... -
Linux内存:内存管理的实质
2010-08-04 21:22 700<转 http://linux.chinaunix. ... -
container_of 解析
2010-07-29 22:50 970在学习Linux驱动的过程中,遇到一个宏叫做container ... -
高级IO操作——ioctl
2010-07-23 20:48 1459_IO, _IOR, _IOW, _IOWR 宏的用法与解析 ... -
主设备号、次设备号
2010-07-23 16:13 926主设备号、次设备号分 ... -
linux 编译内核 选项出错 综合
2010-07-20 23:24 995具体错误提示见最后面 ... -
ARM SDT下汇编到GNU汇编的转换
2010-07-16 08:52 858将ARM SDT下的汇编码移植到GCC for ARM编译器时 ... -
GNU ARM 汇编指令(转)
2010-07-16 08:50 1630第一部分 Linux下ARM汇编语法尽管在Linux下使用C或 ... -
arm 嵌入式LINUX启动过程
2010-07-11 00:44 3892一位大师级的人物写的,不看要后悔的哟!! ...
相关推荐
### Linux控制台下显示JPEG图片 在Linux系统中,用户经常需要处理各种图像格式,而JPEG是最常见的图像格式之一。通常,在Linux环境下查看图像需要通过X-Windows系统下的图形界面工具,例如GNOME或KDE提供的图像查看...
#### 四、在控制台下显示JPEG图像的具体实现 本节将基于前面介绍的Framebuffer和libjpeg的基本知识,描述如何编写一个简单的程序来实现在控制台环境下显示JPEG图像。 ##### 4.1 准备工作 1. **安装依赖库**:确保...
文件类型...........................................................................................................................7 三.Linux基本操作命令................................................
在日常的Linux管理中,命令行是主要的交互方式,而“命令带颜色”则是为了提高命令行操作的可读性和效率,通过高亮显示不同类型的文本,如文件路径、命令参数等。本文将详细介绍一个超级好用的Linux管理工具——Moba...
- 终端选项:可以自定义终端类型、字符编码、行宽等,适应不同环境需求。 - 键盘映射:调整键位映射,使Windows下的快捷键能在Linux环境中正常使用。 4. Linux基础操作: - 文件和目录管理:使用ls、cd、mkdir、...
Vi编辑器作为Linux操作系统中最常见的全屏编辑工具之一,几乎安装在每一台Linux机器上。Vi编辑器的名称来源于“visual interface”(可视界面),意味着用户输入的每一个字符都会即时显示在屏幕上。其强大的编辑能力...
此外,还有很多其他选项,如阴影颜色、模糊半径等,都可以在此文件中调整。 **四、启动和控制Picom** 1. **启动Picom**:在终端输入`picom &`即可后台启动,或者将启动命令添加到启动脚本中。 2. **停止Picom**:...
- 在工具界面左侧会出现服务器列表,初始状态下字体颜色为蓝色,表示尚未建立连接。 - 选择需要操作的服务器,点击“Connect”按钮进行连接。由于采用了多线程技术,每个服务器将单独启动一个线程进行处理。 - ...
2.7 ex指令:在Ex模式下启动vim文本编辑器 2.8 expr指令:简单计算器 2.9 fgrep指令:匹配字符串 2.10 fmt指令:编排文本文件 2.11 fold指令:限制文件列宽 2.12 grep指令:匹配搜索 2.13 ispell指令:拼字检查程序 ...
- 对于Apache服务,可以通过命令`sudo service apache2 restart`来重启(Linux环境下)。 #### Dede后台验证码不显示情况二:验证码只显示背景不显示字母 **问题描述:** 有时用户会发现验证码图片仅显示背景而无...
【标题】"tigervnc-Linux...综上所述,TigerVNC是一个强大且灵活的远程桌面解决方案,它在Linux环境下为x86/x86_64用户提供高效、安全的远程访问功能。通过正确安装和配置,用户可以充分利用其特性进行远程工作和管理。
此外,Argos还支持配置文件,用户可以在个人目录下的`.config/argos`路径下创建`argosrc`文件,自定义显示的样式、颜色以及更新频率等参数,以适应个人的工作需求。 总的来说,Argos是一个非常实用的工具,它将...
Linux下文件和目录的颜色代表什么 - **颜色含义**: - 红色:可执行文件。 - 蓝色:目录。 - 绿色:链接。 #### 51. 查看有多少活动httpd的脚本 - **方法**: - 使用`ps`命令结合grep查找活动的httpd进程。 ...
3. **颜色管理**:对于彩色打印机,PPD文件可以控制颜色模式,如CMYK或RGB,以及色彩深度。 4. **字体处理**:PPD文件可以定义打印机如何处理各种字体,包括内置字体和外部字体,以确保文档的准确打印。 5. **特殊...
你可以通过此标志重载环境变量TERM,这对于创建专门的termcap入口以便minicom在控制台上以原始模式初始化屏幕非常有用,结合`-f`标志,可以不进行翻译显示IBM行字符。 10. `-c`:颜色启用。对于支持ANSI转义序列...
位于`/etc/X11/xdm/`目录下的配置文件,其中`Xaccess`用于控制远程服务请求,`Xresources`用于调整xdm登录界面,`Xserver`将X画面映射到外部,`Xsession`则在用户登录后执行,而`Xsetup_O`用于颜色、显示图像或其他...
在Linux环境下,我们需要编写一个BMP解码器,读取文件头信息解析图像尺寸和颜色信息,然后将RGB数据转换为适合S3C2410 LCD的格式。解码后的数据可以直接写入LCD缓冲区,然后由LCD控制器刷新到屏幕上。 在实际应用中...
21. `chkconfig`: 管理系统服务的启动级别,控制服务在不同运行级别的启动和关闭。 22. `cksum`: 打印CRC校验和和字节数,用于文件完整性检查。 23. `clear`: 清除终端屏幕,使界面整洁。 24. `cmp`: 比较两个文件的...