Search results for query: .shrc

  1. S

    Shell Share your .shrc, .kshrc or .mkshrc file segments: Bourne or Korn shell

    Share your .shrc and/or .kshrc configuration file(s) or samples. .profile can also be used to set common configurations of Bourne and Korn shells. Samples from this file intended for Bourne and Korn can be shared too. There's not as many posts about use of Bourne shells and variant Korn shells...
  2. S

    Colorize your BSD shell

    ...be used to see that variable from your shell. To enable some configurations for sh, the following can be run from the commandline. ENV=$HOME/.shrc; export ENV This can also be added to the configuration file. Then, restart the shell. Other Bourne shells reference a different configuration...
  3. Vull

    env TERM=xterm-256color

    ~/.shrcexport TERM=xterm-256color
  4. StreetDancer

    Solved FreeBSD 13.0-RELEASE-p11 & Ezjail Kernel Mismatch (Same p11 now)

    ...No such file or directory install: /usr/jails/basejail//etc/rc.d/zpool: No such file or directory install: /usr/jails/basejail//root/.shrc: No such file or directory Once this finishes or perhaps I have to cntrl+z/c ? *Unsure* I need to run this it says: To install the downloaded...
  5. Alexander88207

    QT_QPA_PLATFORMTHEME cannot be set to qt5ct

    Maybe its related to the display manager? What happens if you try lightdm?
  6. D

    QT_QPA_PLATFORMTHEME cannot be set to qt5ct

    ...Im using xdm to launch xfce if that matters. .... EDITOR=ee; export EDITOR PAGER=less; export PAGER # set ENV to a file invoked each time sh is started for interactive use. ENV=$HOME/.shrc; export ENV # Set qt5 to use qt5ct QT_QPA_PLATFORMTHEME=qt5ct; export QT_QPA_PLATFORMTHEME
  7. S

    Shell output of command executed via script or shell alias differs from output when same command run directly in terminal

    ...the file pl.m3u and contain a list of all of the files as presented above in the "media" directory. However if i use that same command in ~/.shrc as: alias mpl="ls > zz && sed '$d' zz > pl.m3u && rm zz" Or as a script mpl.sh: #! /bin/sh ls > zz && sed '$d' zz > pl.m3u && rm zz Or if...
  8. D

    Solved Default dot files in home directory

    ...on my desktop pc. On my laptop, I can see that there are files such as .cshrc, .login, .login_conf, .mail_aliases, .mailrc, .profile and .shrc, which must have been created by the installation process; I have not edited them later on. Is there a way to recreate these files on my desktop pc...
  9. Cath O'Deray

    Icons missing for Firefox, Thunderbird and some other applications

    ...BLOCKSIZE=M; export BLOCKSIZE EDITOR=/usr/local/bin/nano; export EDITOR VISUAL=/usr/local/bin/nano; export VISUAL ENV=$HOME/.shrc; export ENV if [ -x /usr/bin/resizewin ] ; then /usr/bin/resizewin -z ; fi if [ -x /usr/bin/fortune ] ; then /usr/bin/fortune freebsd-tips ; fi...
  10. elimelech007

    warning: wineserver not found!

    ...export PAGER export WINESERVER=wineserver32 # set ENV to a file invoked each time sh is started for interactive use. ENV=$HOME/.shrc; export ENV # Let sh(1) know it's at home, despite /home being a symlink. if [ "$PWD" != "$HOME" ] && [ "$PWD" -ef "$HOME" ] ; then cd ; fi # Query terminal...
  11. P

    Unable to delete some files

    ...wheel 2420 Jan 1 23:39 .mysql_history -rw-r--r-- 1 root wheel 507 Apr 9 2021 .profile -rw-r--r-- 1 root wheel 865 Apr 9 2021 .shrc drwx------ 2 root wheel 3 Dec 22 00:33 .ssh drwxr-xr-x 3 root wheel 6 Jan 1 21:57 .subversion drwxr-xr-x 2 root wheel 3 Jan...
  12. Rand0m

    [Linuxulator] How to install Brave (Linux app) on FreeBSD 13.0+

    Thanks so much, I will give it a try this weekend.
  13. B

    [Linuxulator] How to install Brave (Linux app) on FreeBSD 13.0+

    ...service devfs restart 6. Inside the jail you need to export setenv display :0 To make it persistent, put it inside jail's .cshrc or .shrc That should be it. Hopefully I haven't missed anything. I'm really close to being finished with a whole package solution for managing jails in a way...
  14. blind0ne

    Shell How to change EDITOR to default parameter

    Thanks a lot for an explanaitions, reading man of su was really surprised, thought tthat it was just tool for changing user, now the mistifications around not changed variables became more clear. So it's like virtual environment. Will read its man page more in depth. But I'm still wondering how...
  15. Vull

    Shell How to change EDITOR to default parameter

    ...sudo so I don't understand it so well. Once you can see what your present working directory is, you should try to sort out which .profile and .shrc files you've been editing. You should restore /home/ihor/.profile and /home/ihor/.shrc to their original contents, and put your changes in...
  16. blind0ne

    Shell How to change EDITOR to default parameter

    yep I've done It before, but it did not take any effect, i thought it should been. Then i've changed the shell through chsh and it works perfectly after this step. Maybe it's because I'm loggining in with sudo su, or it's not the case at all?
  17. Vull

    Shell How to change EDITOR to default parameter

    ..."root". Next, presumably in /home/ihor/.profile you reset the HOME environment variable to /root. Therefore, you then probably executed /root/.shrc (instead of /home/ihor/.shrc), because in your .profile file, the statement ENV=$HOME/.shrc; export ENV will expand to ENV=/root/.shrc instead...
Back
Top