General :: Installing A Program And Have It Accessible As A Command From Any Directory?
Dec 23, 2010
I want to install a program (specifically metasploit), and have it accessible from any directory in the terminal. I have it installed correctly, but I have to travel to the directory it is installed in to run it (by using ./msfconsole ). I want to be able to be in any directory and just run "msfconsole" and have metasploit run. I have to copy the metasploit folder to the /opt/ directory? Maybe the /usr/bin/ directory?
View 3 Replies
ADVERTISEMENT
Aug 18, 2011
I am installing a program on a server as a non-root user. Specifically it is tmux 1.5, but this should apply broadly to all locally installed program in my opinion (I mention the program name in case this problem ends up not being my own error).
The program requires me to install some dependent libraries (e.g. libevent and ncurses). So, I installed them both locally since I do not have root access
cd $HOME/library/installation/folder
DIR=$HOME/local
./configure --prefix=$DIR
#... make ... make install
[Code]....
Ok, so this installs the program without problems into $HOME/local/bin, but if I run the executable: $HOME/local/bin/tmux , I get the following error:
tmux: error while loading shared libraries: libevent-2.0.so.5: cannot open shared object file: No such file or directory
It would seem to me that the program cannot find the desired libraries, but the file libevent-2.0.so.5 does indeed exist in $HOME/local/lib as specified in the configure options. I am wondering how I can get the program to recognize the installed library in order to run. I tried putting symbolic links in $HOME/lib, $HOME/bin, and $HOME/local/bin, but none of these worked.
View 2 Replies
View Related
Jun 16, 2010
I am a student studying computer science course.
Well, I am facing problem when doing lab questions.
I must use DLXLinux bundled in Bochs (bochs.sourceforge.net).
I am required to use the /usr/local directory.
In /usr directory, there is no directory named 'local' but there is one thing called 'local@'. So, when I try to use mkdir command to create 'local' directory in /usr , there are error "cannot make directory.....".
Look at my screenshot at [url].
View 9 Replies
View Related
Jul 13, 2011
I'm quite new to linux but I have configured a simple ftp server and it's working great. I have a FTP-Shared folder with upload and download subfolders. Under upload's and download's I have identical category subfolders like mp3's, movies, software etc. in both. As the guy's upload, I would like to create a line crontab where I can move all the content under /FTP-Shared/upload/mp3/* older than 14 day's to FTP-Shared/downloads/mp3/ recursively (Like in cp command), but the timestamp must be searched on the first directory and not sub files example: /mp3/Club Dance/CD1/Hallo world.mp3This is how far I got:[root@clients ~]# /usr/bin/find /FTP_Shared/upload/Mp3s/ -depth -mindepth 1 -mtime +14 -type d -exec mv -f {} /FTP_Shared/download/Mp3s/ ;This command moves the directory and files, but it is not recursively
View 4 Replies
View Related
May 11, 2011
This is a simple question which hopefully has a simple answer. How do I set up a directory on my user account which is visible and accessible to other users on the *same machine*? For example I have certain files on my account which, if I want another user to be able to access I'd have to (a) copy them to my thumb drive (b) log out, (c) log in to the other account, (d) copy the files from the usb thumb drive
View 13 Replies
View Related
May 25, 2011
How can I see a description of a program or read its man pages before doing apt-get install program?
View 2 Replies
View Related
Jan 6, 2010
How to install the BitTorrent peer to peer program? I've downloaded the software, looked around, and cannot find what should be obvious as to how to install and use it. Please keep it simple, as I am an amateur and quite new to Linux and Ubuntu. I'm installing onto Ubuntu 9.04 on my desktop pc. If you suggest using and installing something equivalent, the instructions need to be simple and complete.
View 3 Replies
View Related
Oct 3, 2010
I am running Linux mint 9 Isadora and do not like thunderbird email client. I have downloaded Evolution and can't get it to run. I opened it with archive manager and see many files, but it does not run.
View 3 Replies
View Related
May 21, 2010
I want to design c program can run terminal command and put the output of command into file... How can i do this ? for example :
string s = " iwlist scan "
and when i run the programm this command applied and put the output into specific file
View 1 Replies
View Related
Jun 11, 2010
what command tell me the version of a program, e.g. make version 2.64?
View 2 Replies
View Related
Jan 28, 2010
I know there is lots of documentation out there for installing tar balls but I can't make it work I am trying to work with this file sauerbraten_2009_05_04_trooper_edition_linux.tar.bz2 in file:///home/Nemesis/Downloads/sauerbraten_2009_05_04_trooper_edition_linux.tar.bz2
I am running Fedora 12, the gnome desktop if the desktop matters. I have been running Fedora almost elusively for 2 years and off n on before that but in my many attempts at trying to Install a TARBALL I have always failed hard.
View 17 Replies
View Related
Feb 8, 2011
I am trying to load vmware server. When running vmware-install.pl it asks where to load the bin files. Default is /usr/bin. Cool with me, so I accept then get the error:
"There is insufficient disk space available in /usr/bin. Please make at least an additional 5924k available or choose another directory."
Ok, so in my searches, most cases people actually do have a full disk. I have 30gb free. Another post somewhere stated it could be the file system used, so I tried different file systems. Now I am back on etx3. What's odd is when I blow away the OS and reload and try to install VMware again, I get a different number to be "freed" in the error. Choosing another directory only yeilds a different disk space request.
View 5 Replies
View Related
May 13, 2010
i want to use the command at to execute a script on a specific time FOR EXAMPLE :at 12:30pm but the script does not have to ececute at all, I DIT IT BUT THE SCRIPT EXECUTES EACH 12:30pm (that'sy problem) i want to write a script that will execute each two months from a specific time . for example: from january 12, 2010 the script has to run before march 12,2010
View 5 Replies
View Related
Apr 3, 2011
I'm new to Linux and I am currently using the Ubuntu distro. What I'd like to know is whether there is a program or command I can use to back up my hard drive with Ubuntu? I have an external drive that I can use for this purpose but I don't know how to set it up for Ubuntu or Linux generally.
View 2 Replies
View Related
May 27, 2011
I'm trying to run an application from the command prompt. I've set the path in .bashrc. My executable file and all other files needed by it are saved in the same directory as the path. When I enter the executable name to run it, I get an error message saying that the command is not found.
View 14 Replies
View Related
Sep 2, 2010
The Linux command for showing the different segments of a program. The output of the command should show me which elements go to stack, heap, and data segments.
View 3 Replies
View Related
Jan 25, 2010
I'm trying to install Slackware package into some specific locations, like for example, I want to put Linux base package into at / and put applications on /usr/local. However when I'm installing using "setup" program, I cannot find a part that let me to choose the installation destination.
At "setup install" option, it gives six different installation method like full, newbie, menu, expert, custom, and tag path. But none of them (I cannot find it) gives an option where to put the installation package to.
View 2 Replies
View Related
Jun 22, 2010
I am installing one software (pwDesktop [url])
I am using ubuntu 10.04
I am following these stapes:
But it saying there is no such file or directory.
View 12 Replies
View Related
Jun 10, 2011
I used SVN to check out the code of an open source project. When I typed the following command:
[user1@smallfox]~/workspace/project1% svn co http://svn.apache.org/repos/asf/mahout/trunk
It worked just fine. However, when I typed the SVN command in the root directory, it did not work and gave me an error message:
[user1@smallfox]~% svn co http://svn.apache.org/repos/asf/mahout/trunk
zsh: command not found: svn
View 1 Replies
View Related
Jan 18, 2010
there's a command to overwrite a directory.
View 6 Replies
View Related
Feb 24, 2011
Using tar command. All I need the usage, and basic explanation. Let's assume I have a directory with files that I need to tar, how do I go about it.
View 14 Replies
View Related
Jun 16, 2010
How can I see all my installed program in Ubuntu from command line?
View 2 Replies
View Related
Jan 20, 2010
How to check the version of a program, in particular geant4, in linux using the command lines?
View 4 Replies
View Related
Apr 28, 2011
Does anyone know how to stop the du command from displaying the directory name?
View 1 Replies
View Related
Feb 23, 2011
What 's the most popular command to do such things in terminal in linux?
View 4 Replies
View Related
Aug 17, 2011
Is there any command in Linux which will find a particular word in all the files in a given directory and the folders below and replace it with a new word?
View 4 Replies
View Related
Jul 29, 2011
i want to apply this command
Code:
pdftotext article.pdf - | grep DOI
to all the pdf's in a directory and save each line of output to a text file. i.e. i want to collect each line containing "DOI" from every pdf in a text file. I am unable to understand bash scripting enough to write a for loop for this.
View 1 Replies
View Related
Jun 16, 2010
in the command line there's a button (tab) for autocompleting commands and I'm pretty sure linux has a button that prints the last directory I used/typed whatever?
View 6 Replies
View Related
Mar 4, 2011
I am struggling to learn the command line, and am stuck to the following In my directory ~/Music , I have many music archives , total about 0,8 Gbyte . Yet , changing to this directory ) and giving ls -dlh , I get
ioannis@ioannis-laptop:~/Music$ ls -ldh
drwxr-xr-x 4 ioannis ioannis 4.0K 2011-03-04 14:55
So, only 4 k size and no info about the number of the files in the dir
View 6 Replies
View Related
Oct 24, 2010
I am using fedora 13. If is use the command "cd //". It changes to root directory. How is it? What "//" denote?
View 6 Replies
View Related