Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I customize bashrc, bash_profile or profile on a CoreOS installation?

Tags:

coreos

I fully realize that CoreOS is meant to be mostly immutable so that nothing is installed in the userspace. And for 99% of the use-cases I agree. I'm using CoreOS/toolbox when I need to get some actual work done but I also need to slightly update the user environment so that I can properly Docker-ify my development environment.

like image 947
Richard Avatar asked Dec 08 '22 03:12

Richard


1 Answers

The .bashrc is a symlink to a read-only file. All you need to do is:

cd $HOME
rm .bashrc
cp /usr/share/skel/.bashrc .

Hope that helps.

like image 86
Brandon Philips Avatar answered Apr 25 '23 09:04

Brandon Philips