Neil wrote: > > But wondering, why when in xterm and I type "links", > I get- "bash: links: command not found"
Because the executable is called links-0.90. In the CLI an alias from "links" to "links-0.90" is operating (set up by /root/.profile). So when you type "links" in the CLI you get "links-0.90". However, the xterm does not use /root/.profile, it uses /root/.bashrc. So to get your those aliases in the xterm, you should copy them from /root/.profile to /root/.bashrc. Cheers, Steven
