The alias tag has no wiki summary.
0
votes
3answers
329 views
How to make bash aliases available as linux commands?
I have many bash aliases on a remote location.
But when I try to run those from my local linux box,
I get the 'command not found' error. e.g.
$ ssh root@remote 'status'
bash: status: command not ...
4
votes
2answers
795 views
Create an alias to a samba share from the command line
I'm currently wanting to deploy a setup to around 300 Macs. I have all of it scripted and ready to deploy, excepting that I'm having trouble creating a working alias to a samba share from the command ...
1
vote
2answers
66 views
Changing the program name displaying on Konsole, using an alias
I have an alias for irssi:alias irssi="screen irssi. When I am running irssi in Konsole, the tab name shows up as "screen". Is there a way to make it display as "irssi"? My tab format on Konsole is: ...
1
vote
2answers
50 views
System-level bash/zsh alias blacklist
Is there a blacklist feature/functionality in bash/zsh to prevent specified commands and such from being overridden with an alias?
Specifically - is there something that can be set system-level in a ...
0
votes
2answers
122 views
command line alias versus .bash_profile alias
when I create this alias from the command line everything works fine
alias ejecta='for I in 1 2 3; do /usr/sbin/diskutil unmountDisk disk$I;done'
When the same alias is created in .bash_profile. the ...
1
vote
1answer
331 views
How can I set outlook web app to send from/send as an email alias?
I have an email account I access through the outlook web app and I have an email forwarder. I want to be able to send messages appearing as from the email forwarder. How can I set this up?
0
votes
1answer
31 views
How to make an alias and work in sh for all users (not in bash)?
My question maybe is silly, but how can I make an alias so as to work
in sh for all users?
I know that I can put an alias, let say this one:
alias ls='ls -l'
in /etc/bash.bashrc so as to work in ...
0
votes
1answer
21 views
Multiple drupal installations on apache work with their own DNS entries but not with Alias
So my localhost server has never had a problem because I've never been developing with other people on multiple websites.
Now, however, accessing a secondary site via an Alias is running into a ...
0
votes
1answer
61 views
How can I automate my usage of three VM machines with the same alias?
How do I automate my usage of three VM machines which require me to add a IP aliased to a name in my HOSTS file. I upload code to the server of choice and then I go to the address http:/ / ...
0
votes
1answer
93 views
How to get alias working on server that is connected via ssh?
I connect to another server using command:
ssh -Y server1
On server1 I add an alias in .bashrc file:
alias gousr='cd /opt/user/myuser'
When I try to run gousr command at server1 xterm, it says ...
1
vote
0answers
171 views
Dovecot/Postfix-mysql e-mail Aliases are not correctly forwarded
I recently set up Dovecot/postfix-mysql on my Debian Squeeze Server and I have a bit of a problem.
When ever I send a email to an alias (foobar@mydomain.com forwarded to foobar@gmail.com for example) ...
1
vote
0answers
255 views
Create a virtual directory without IIS
My projectgroup is working on a project that has an upload dir. We ofcourse exclude the upload dir from our SVN. This means that we don't share these files. We do share the DB since it's stored on the ...
1
vote
0answers
402 views
Running Windows XP Command Line from CMD.exe does not load autorun processor batch file
I have a batch file set to load up when the Windows XP command line (cmd.exe) starts (using the registry key Command Processor as detailed).
Unexpectedly, the batch file only runs under certain ...
0
votes
0answers
32 views
PHP does not work on alias (XAMPP)
I trying to make alias on my local machine with XAMPP for my PHP project.
I added follow in httpd.conf:
Include "conf/alias/*"
And make two files for aliases, one of them is like:
Alias /aiuu ...
0
votes
0answers
19 views
Running all items in a user defined FARR alias group
I've been using FARR 2.203.01. I created a group (named 'compuicreate') in FARR with the following list of programs :
1)"C:\WINDOWS\system32\inetsrv\iis.msc"
2)"F:\@HOMEWORK\THESIS\UI ...
0
votes
0answers
194 views
How to set an alias which will automatically ssh to another server
I often use this command to connect to another server with x forwarding:
[myuser@server1]$: ssh -Y 10.32.45.123 (10.32.45.123 is server2)
myuser@10.32.45.123's password:
[$myuser@server2]:$
I ...
0
votes
0answers
711 views
iptables trouble: nat with ip alias (virtual interface) not working
I'm setting up an Ubuntu 11.10 server to act as firewall for a network running several different SSL websites. The idea is fairly common: have all public IP's for each site aliased to the public ...