由买买提看人间百态

topics

全部话题 - 话题: bashrc
1 2 3 下页 末页 (共3页)
y*r
发帖数: 590
1
存在~./bashrc里没错。
在~./bash_profile 里再加上
if [ -f "$HOME/.bashrc" ] ; then
source $HOME/.bashrc
fi
应该就可以了
w**2
发帖数: 724
2
来自主题: Programming版 - iMAC terminal bash doesn't take .bashrc ?
New to iMAC,
so when i do "ps" in the iMAC terminal, it says "bash".
but in .bashrc i do have "export PATH=....".
when i do "echo $PATH", it doesn't show my new path.
now if i do "source ~/.bashrc", then new path is added.
why .bashrc is not working from boot up ?
thanks !
w*s
发帖数: 7227
3
【 以下文字转载自 Linux 讨论区 】
发信人: wds (大盘5000不是梦), 信区: Linux
标 题: bin run as root, 它会不会pick up /root/.bashrc里的setting ?
发信站: BBS 未名空间站 (Fri Dec 2 21:51:29 2016, 美东)
/root/.bashrc sets LD_LIBRARY_PATH.
然后我的binary程序run as root,请问它会自动pick up root的.bashrc吗?
w*s
发帖数: 7227
4
/root/.bashrc sets LD_LIBRARY_PATH.
然后我的binary程序run as root,请问它会自动pick up root的.bashrc吗?
j****c
发帖数: 19908
5
象 .bashrc 那样设置一下 PATH 和几个软件的运行环境
#: ls -a ~/
显示有个.config文件,貌似不是我想要的。
还有,果子用的是哪个shell?
g*****x
发帖数: 3283
6
~/.profile
~/.bashrc
bash和linux没关系
r*******d
发帖数: 958
7
mac 新手
我把几个alias命令存在~/.bashrc里,不管用
存到~/.profile里,也不成
请问alias应该存到哪里?
另外,切换中英文输入法有没有快捷键,
来回移动鼠标去切换烦死我了。
还有,如果把窗口最小化了,
有什么快捷键能把它再弄出来吗?
最合适化有没有快捷键?
多谢!
l****h
发帖数: 272
8
来自主题: Linux版 - 请问bashrc的设置term问题
我想把term设置成xterm-256color,这样vim就可以用256色。可是办公室的机器是
windows,它的登录服务器的软件不支持256色,vim变得面目全非。
请问有没有一个变量,能识别或标式客户端登录的软件。这样可以用if语句在bashrc里
设置不同的term。如果从windows登录,term是dtterm; 从linux登录,term就是xterm-
256color。
谢谢!
s*****t
发帖数: 89
9
来自主题: Programming版 - iMAC terminal bash doesn't take .bashrc ?
google .bash_profile vs .bashrc
w**2
发帖数: 724
10
来自主题: Programming版 - iMAC terminal bash doesn't take .bashrc ?
i don't see .bash_profile,
there is a .bashrc in the folder
m*****g
发帖数: 71
11
来自主题: Programming版 - iMAC terminal bash doesn't take .bashrc ?
.bashrc要在.bash_profile里调用才行,另外没有.bash_profile还可能有.bash_login
或者.profile
c*****m
发帖数: 1160
12
Windows client, Ubuntu 12.4 server.
本用户在/etc/passwd里面设置的是 /bin/bash
在server上直接登录,或者在Windows client上用no machine登录,然后打开
terminal,都很正常,用到bash,而且在 .bashrc里面的设置都能应用(提示符是有颜
色的,且显示时间)。
在Windows client用putty登录,发现它没有执行 .bashrc里面的设置。(提示符没有
颜色)。这时候执行
$echo $SHELL
得到的还是 /bin/bash
如果我执行一下
/bin/bash
那么 .bashrc里面的设置正式跑起来了(提示符有颜色);这时候再 $echo $SHELL,
还是相同的 /bin/bash (这时候还是在putty remote connection中)
所以现在的问题是: 用 putty初登录时是什么shell?如果确实是bash,为什么没有执
行.bashrc,而要跑 /bin/bash 之后才执行?
B*********s
发帖数: 292
13
我记得linux有许多个文件都在开机的时候被调用,比如
/etc/rc.local
rc.d/* (怎么我硬盘里没有 /etc/rc.d? 应该在哪个目录下?)
.profile
.bashrc
现在我想在电脑启动登录之后执行一个家目录的backup.sh,结果发现:
/etc/rc.local是给所有用户使用的。虽然我这台电脑只有我这一个用户,但是不符合
理念。我这个backup.sh应该在用户登录之后才调用。
rc.d/* 是作为service的方式吧。理由同上。
.bashrc只有在开启命令行才起作用。我现在是用gnome,怎样让每次gnome一登录就调
用backup.sh呢?
.profile和.bashrc是一样的吧?
所以现在问题有二:
1,怎样让gnome每次登录时调用~/backup.sh?
2,到底linux有多少个地方能够实现自启动?换一个角度问:如果我怀疑这系统启动时
执行了某个命令,我应该查看哪些文件?如果能以我熟悉的ubuntu为例就更好了。
(MSWindows里,自启动无非就是:autoexec.bat, 注册表里的两个run目录,菜单项里
的Start
b*s
发帖数: 82482
14
我个人习惯是,自用的alias和环境变量放在.bashrc里面,在.bash_profile里面
source一下就行了。

通常用户设置shell的env variable 是在~/.bashrc 和~/.bash_profile, 还有/etc/
bashrc 以及/etc/environment, 但是这些都有什么区别? 除了shell还有哪些地方用
这些变量?
哪位大牛来全面普及一下
j******3
发帖数: 299
15
谢谢你的回复。请问那个路径是在哪里设置
我尝试用
vim .bashrc
加入了一行
export CLASSPATH="/jar locations/*.jar"
然后source .bashrc
同时用
sudo vim /etc/environment 里面加入类似的
CLASSPATH="/jar locations/*.jar"
Reboot
还是提示同样的错误。。。。
E*V
发帖数: 17544
16
来自主题: Linux版 - 新手问问题,在Mac里用linux
edit your .bashrc?
I don't know if you are using bash or not.
if you are,
like this
$vi ~/.bashrc
PATH=/usr/your/path:$PATH
q**j
发帖数: 10612
17
来自主题: Linux版 - 初学linux,好几个小问题。
这个是IBus的Error message. 但是找不到这个hidden的.bashrc文件。
IBus has been started! If you can not use IBus, please add below lines in
$HOME/.bashrc, and relogin your desktop.
export GTK_IM_MODULE=ibus
export XMODIFIERS=@im=ibus
export QT_IM_MODULE=ibus
n******r
发帖数: 718
18
来自主题: Linux版 - 初学linux,好几个小问题。
.bashrc 在/home/yourusername里应该有吧. 没有的话自己建一个:
gedit .bashrc
g****n
发帖数: 3313
19
想在LINUX启动时,自动打开两个 TERMINAL 窗口,然后让这个连个TERMINAL的默认目
录是/HOME/USER1
怎么修改呢? 没在GOOGLE中找到答案。。。。。
这个USER1的.BASHRC指向的是/HOME/ROOT/.BASHRC, 所以不想修改这个,因为想要有的
USER 启动的时候不会出现这个TERMINAL窗口。
谢谢
Z**0
发帖数: 1119
20
首先,user1居然用root目录下面的.bashrc,这个很雷啊。
其次,各个用户的单独配置,都是在用户自己的目录下,各个用户间本身没有干扰。
想必你是问让一个用户登陆后,开出两个terminal窗口?这个肯定是在gui下。所以肯
定不是用.bashrc了。需要根据你自己的用gnome,kde,还是其它,来决定
E*V
发帖数: 17544
21
我觉得。bashrc就是个人定制的啊,为啥要一直?
另外,默认的。bashrc,一般都是从/etc/里面某个文件copy的。
l*f
发帖数: 218
22
来自主题: Linux版 - Newbie question
我对linux不熟悉,想在Fedora里设置LD_LIBRARY_PATH,网上找到一个instruction,不
是很理解
1.) use < .bashrc > file in your home directory (instead of .bash_profile)
2.) add the following line to this file :
LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib ; export LD_LIBRARY_PATH
3.) also add this line to < /etc/ld.so.conf > file
4.)run /sbin/ldconfig after /etc/ld.so.conf changing
请问1.)里面.bashrc跟.bash_profile都是什么用的, 如何知道bash启动之后调用那个
设置
m*********g
发帖数: 273
23
来自主题: Linux版 - Newbie question
In your home directory:
ls -al
if .bashrc is not there, you can create one. You can define your bash
behaviour there.
For example: if you put
alias rm='rm -i'
in .bashrc, every time you run rm, it will ask you to confirm.
H****n
发帖数: 175
24
来自主题: Linux版 - 找不到命令的路径
source your shell rc file : .bashrc
or
find the path line in your .bashrc
then copy it to your script
d*y
发帖数: 7
25
来自主题: Linux版 - 找不到命令的路径
source ~/.bashrc can solve this problem. Thanks!
ut why ...
I have found that that command is a function defined in one system .bashrc
file
s*******n
发帖数: 2828
26
来自主题: Linux版 - LaTex editor on Ubuntu
这是我的vimrc
let g:tex_flavor = "latex"
let g:Tex_CompileRule_dvi="latex -src-specials -interaction=nonstopmode $*"
let g:Tex_DefaultTargetFormat='pdf'
let g:Tex_MultipleCompileFormats='pdf'
let g:Tex_IgnoredWarnings =
\"Underfull\n".
\"Overfull\n".
\"specifier changed to\n".
\"You have requested\n".
\"Missing number, treated as zero.\n".
\"There were undefined references\n".
\"Citation %.%# undefined\n".
\"LaTeX Font Warning:\n"
" This number N says that latex-suite should ignore the first N of th... 阅读全帖
v*s
发帖数: 29
27
来自主题: Linux版 - 不用安装的trash bin?
我试了下加两个文件就行,但不保证没有bug
$cat /etc/profile.d/trash.sh
str="alias rm='mv -i -t $HOME/.trash/'"
grep ${str} ~/.bashrc || echo ${str} >> ~/.bashrc
再把这行加到cron.daily
find /home/ -regex /home/.[^/]*/.trash/.* -ctime +7 -delete
当然要保证每个user都有~/.trash目录,可以在第二个script里加上去
但我觉得这些都没啥用,有rm -i足够了。自己不小心,再多防护都白费
r***e
发帖数: 2000
28
来自主题: Linux版 - setting PATH; how?
I noticed there were some out dated path in my $PATH, for example,
Qt3 and RealPlayer, etc. However, I couldn't find exactly where did
I set them. I checked .bash_profile, .bashrc, /etc/bashrc, /etc/profile
and they were not there.
How can I remove them from $PATH? Thank you.
It's bash under Fedora 18, if that matters.
o******1
发帖数: 1046
29
多谢指点!
不过下面的这个方法似乎也不行
===
#!/bin/bash
source /home_dir/.bash_profile
/home_dir/bin/c_prog
===
按照你说的,先把两个变量export到$HOME/.bash_profile中(我还export到$HOME/.
bashrc以及source了.bashrc)。然后script中的source之后多加了两行,一行
是echo "world",另一行是echo "$LD_LIBRARY_PATH",前一个显示了,后一个没有。
当然C的output也不显示。
B********r
发帖数: 397
30
通常用户设置shell的env variable 是在~/.bashrc 和~/.bash_profile, 还有/etc/
bashrc 以及/etc/environment, 但是这些都有什么区别? 除了shell还有哪些地方用
这些变量?
哪位大牛来全面普及一下
l**********r
发帖数: 4612
31
【 以下文字转载自 Linux 讨论区 】
发信人: linuxbeginer (linux), 信区: Linux
标 题: 【讨论】Linux启动时执行配置文件的顺序
发信站: BBS 未名空间站 (Sat Oct 13 14:41:08 2007)
1,请问LINUX系统中各类变量设置文件:
/etc/profile, /etc/bashrc, ~/.bash_profile, ~/.bash_login, ~/.profile,~/.
bashrc
其中前两个是全局变量设置文件,后四个是用户自定义变量设置文件,他们之间是怎样的
执行顺序?
2.在linux下分别打命令env,set,export,stty
这4个命令的输出各取自于上述中哪个变量配置文件?这4个命令作用有什么不同?
在网上找了很久了,也么有人能完整回答特别是第二个问题。谢谢
T*******n
发帖数: 493
32
来自主题: TeX版 - LATEX Search PATH Problem
A few ideas to debug this:
(1) Verify that you are using bash, not sh/csh/tcsh (on some platforms
if you invoke bash as sh, it won't read the .bashrc file).
(2) What does "echo $TEXINPUTS" (without quotes) show? This should
tell you whether the .bashrc file was read correctly.
(3) What does "kpsepath tex" show? The custom path should appear at
the end.
(4) What does "kpsewhich aguplus.cls" show? LaTeX using kpsewhich to
find the files it needs (and when it finds several files by t
b***l
发帖数: 15
33
来自主题: Unix版 - what rcfile does sys use when login?
i am wondering what the system will use to set the variables, such as HOST,
LOGNAME, and so on?
~/.bashrc will set user-defined variables. But what rcfile does the system use
before invoking ~/.bashrc?
Another question is: after I login, I want to set a variable VAR to "VAR", for
exampel. And I want the other login shells know that $VAR now is set to
"VAR". Is this possible?
One more question: xhost + [host] will add "host" to a list. Is this list a
variable or the list is stored in a file? Whi
a**********0
发帖数: 422
34
来自主题: JobHunting版 - echo $JAVA_HOME gives no output?
i looked into .bashrc yes i didn't set it up
b****c
发帖数: 4
35
来自主题: Boston版 - ☆欢迎新朋友报到☆
1 您MITBBS的ID是 bashrc
2 您的星座 天蝎
3 您学什么专业的呢 EE
4 您具体住大Boston地区哪里? still looking for,
somewhere near Andover
5 您对Boston的印象如何 seemes to like it
6 您最喜欢的音乐家 没有音乐细胞。。。。
7 您最喜欢的运动 ski, badminton, tennis, you
name it
8 预计Boston版要常常版聚fb,您最爱吃的三个
A**********r
发帖数: 244
36
~/.profile
bash
j****c
发帖数: 19908
37
没看到这个文件啊
所有隐藏文件就这些
. .gconfd
.. .gnome2
.CFUserTextEncoding .mplayer
.DS_Store .pps
.Trash .recently-used.xbel
.Xauthority .serverauth.22248
.bash_history .ssh
.config .vim
.dropbox .viminfo
.fontconfig
.gconf
y****e
发帖数: 23939
38
.profile
没有就自己create一个
N**O
发帖数: 1106
39
【 以下文字转载自 Linux 讨论区 】
发信人: OMalley (Lost), 信区: Linux
标 题: 我的 Dropbox 使用经验(强烈推荐)
发信站: BBS 未名空间站 (Tue Mar 30 20:16:49 2010, 美东)
如果你还不知道什么是 Dropbox, 这里有个视频介绍
http://www.youtube.com/watch?v=7QmCUDHpNzE
我自己已经用了有快一年了,感觉是太方便了。我办公室和家里的机器还有笔记本上面
都装了 Dropbox(我甚至在实验室的Linux Server上也装了)。这样不论我在哪台电脑
上,我的文档都是最新的。下面我来介绍一下我自己的一些使用技巧:
我是个 Linux user,我用 Emacs。在使用 Dropbox 前,每当我在一台电脑上更改了配
置文件 (如 .bashrc, .emacs, .Xdefaults, .Xresources, .vimrc, .screenrc 等等)
, 为了能在其他机器上用,我只能发 email 或用 USB drive 把新的配置文件 copy 到
其他电脑上。
a***y
发帖数: 19743
40
来自主题: Apple版 - 关于Mac Migrate 的问题
大概要重装这些
不然就是你要重新设置path
.bashrc
export PATH=....
s***a
发帖数: 1676
41
.profile只有在命令行下管用,确定一下你的alias是否是在terminal下用
切换输入法可以设置快捷键,在system preference里,
注意cmd+space被用来做spotlight的快捷键乐
r*******d
发帖数: 958
42
谢谢二位,这么迅速的回复,一会试试
苹果用户就是热情哈,咱在hardware从来没这么被礼遇过,哈哈。
wy
发帖数: 14511
43
~/.bash_profile
c***k
发帖数: 1589
44
这些我都没有用也挺好的,楼主把脚本贴出来看看?
x*********s
发帖数: 5554
45
来自主题: Apple版 - 中毒了?
bashrc 和bash_profile不知道怎么被改得乱七八糟
我重新source了一下,然后terminal就自动关闭了,再打开也不行。
中毒了?
wy
发帖数: 14511
46
来自主题: Apple版 - 中毒了?
remove you .bashrc and .bash_prfoile?
e*****n
发帖数: 324
47
来自主题: Apple版 - 中毒了?
如果你觉得是 bashrc 的问题,用 applescript 也不能删掉?
x*********s
发帖数: 5554
48

谢谢! 把这句话写到bashrc里面了, 不过没有menu extras前后没有" "
还有什么类似的技巧?比如defaults write com.apple.Safari
TargetedClicksCreateTabs -bool true 之类的
z****g
发帖数: 339
49
哦 不知道
我发现我改过.bashrc
1 2 3 下页 末页 (共3页)