General :: Cron Job Command Not Found
Jun 24, 2010
I have a simple script. When I run it as cron job. I jot email saying:/bin/sh: line 1: test.tmp: command not found.Even I took first line out, I got the same error.The current shell I have is /bin/tcsh.
View 4 Replies
ADVERTISEMENT
Feb 3, 2011
I'm writing a script that performs backups from partitions on remote servers. I used to do this with ssh, but that seems to be somewhat slow, so I switched to netcat.I start a listener on the receiving server (which runs the script) like this:netcat -l -p 7000 | dd of=imagefile &and then I make the remote and start a dd piped to netcat. This works quite well started manually and the listener is waiting in the background. However, when I have cron run the same script to automate it, the netcat listener is not started, probably because the "&" thing does not work (or there is something with the piping that behaves differently then)
View 7 Replies
View Related
Jul 1, 2011
I am frustrated by running a script on the Fedora 14 computer as a cron job. I paste the code:
Code:
#!/bin/bash
#a backup script to copy data from sda to sdc
ROOTVOL=`blkid -U ea210a08-6212-4dc8-be1c-23fce3b965bc`
[code]....
So when I run this as root, for example:
Code:
# /root/myscript
the result is what I expect:
Code:
Jul 1 13:41:16 svn root: ADMIN: Executing backup-svn
Jul 1 13:41:16 svn root: using blkid ea210a08-6212-4dc8-be1c-23fce3b965bc as /dev/mapper/vg_svn_backup-lv_root
[code]....
View 3 Replies
View Related
Feb 18, 2010
so i have a few shell scripts that execute wonderfully when i type them at the command line but they fail when they are run from cron.
for example, if i run a script from command line that contains
Code:
shopt -s nullglob
to prevent problems with for f in *.mp4 type loops, it works fine from terminal command line but when called from cron, it gives an error->
Code:
/home/centralsqwall/Videos/videochecker.sh: 91: shopt: not found
a couple other random errors as well...
so there is some difference in the shell from cron and the terminal?
i'm running ubuntu 9.10, #!/bin/bash
what are the commands i should be using to echo my environment or simulate cron environment from the terminal?
View 3 Replies
View Related
Mar 26, 2011
I know my way around MS Windows much better, but I just don't feel right trying to program something for Android on a Microsoft operating system. I am interested in Android programming so I followed the instructions on [URL] to install the environment on my computer...
I just installed the JDK, SDK, Eclipse successfully (or I assume):
* When I get to Step 4 where I'm supposed to run 'android' it will not run. I get the error message "android: command not found" (I am definitely in the right directory).
** When I double-click it in nautilus, it opens up in gedit. I can set the permissions in nautilus (through the properties - Allow executing file as a program) and get it to work,
My system:
Intel i7
Ubuntu 10.10 Maverick Meerkat
android-sdk-linux-x86
eclipse 3.6.2
View 5 Replies
View Related
Apr 30, 2011
I installed the Berkeley DB on the Ubuntu server and tried to access the dbxml from the command line and it returns command not found
path/to/dir/dbxml-2.5.16/install/bin$dbxml
-bash" dbxml: command not found
Can someone point me in the right direction
View 1 Replies
View Related
Feb 23, 2010
I am doing some embeded linux work in ARM 9263.So I need to make a image for that board.But when I using one command "make uImage" I am getting the following error.
make: arm-linux-gcc: Command not found
CHK include/linux/version.h
make[1]: `include/asm-arm/mach-types.h' is up to date.
CHK include/linux/utsrelease.h
HOSTCC scripts/basic/fixdep
code....
View 4 Replies
View Related
Oct 1, 2010
I installed a program with Yast (Kmess), but when I try to run it, bash gives me back this message:
Code: kmess: command not found I checked into Yast and it seems to be installed correctly!
View 9 Replies
View Related
May 28, 2010
Using CentOS. I have a cron setup to run this command: Code: /var/test.sh | mail -s "Test Cron" mr182@somewhere.com The email is sent but the output of the script is not in the email body, it's just blank. I know there is some output because there are some echo statements in the script.I don't want to get an email for all cronjobs, just this one.
View 1 Replies
View Related
May 8, 2010
I occurred a really weired problem, which is touch : command not found.I was going to create a blank file, so I type the touch command which didn't work.I'm running centOS 5.
BTW: the vi command also not found.
View 3 Replies
View Related
Apr 23, 2011
I am trying to build a Makefie, i am getting an error. /bin/sh: line 4: autoheader: command not found.
View 1 Replies
View Related
Feb 15, 2010
i was trying to install windows xp on vbox, but the cd wont work, so i want to make an iso image from the cd and run it from that. after some research, i found this code to use disk dump and make a raw cd image:
Code:
dd if=/dev/cdrom of=~/cdrom_image.iso
ive done that successfully (making sure the drive is unmounted), but i cant even find the file now. ive searched the filesystem, but it doesnt appear anywhere.
View 1 Replies
View Related
Mar 10, 2011
tell me what does error message signify and what should be done to rectify it...bash : lex :command not found
View 3 Replies
View Related
Aug 8, 2010
Using fedora, when I try "ftp" I get command not found. I have tried "which ftp" and and get "no ftp in" then the bin dir's. I have tried the "locate ftp" but also can't see it: I see lftp, but never heard of it before, is this new and replaced ftp.
Code:
locate ftp
/etc/lftp.conf
/etc/selinux/targeted/modules/active/modules/ftp.pp
/etc/selinux/targeted/modules/active/modules/tftp.pp
/lib/modules/2.6.33.3-85.fc13.i686/kernel/net/ipv4/netfilter/nf_nat_ftp.ko
/lib/modules/2.6.33.3-85.fc13.i686/kernel/net/ipv4/netfilter/nf_nat_tftp.ko
/lib/modules/2.6.33.3-85.fc13.i686/kernel/net/netfilter/nf_conntrack_ftp.ko
/lib/modules/2.6.33.3-85.fc13.i686/kernel/net/netfilter/nf_conntrack_tftp.ko
/lib/modules/2.6.33.3-85.fc13.i686/kernel/net/netfilter/ipvs/ip_vs_ftp.ko
/lib/security/pam_ftp.so .....
View 5 Replies
View Related
Oct 23, 2010
I added $PATH=/usr/local/mysql to .bashrc_profile and I guess I wrote it in the wrong place...now when I log in my fedora the terminal says:
-bash: dircolors: command not found
-bash: cut: command not found
-bash: cut: command not found
[code]....
View 8 Replies
View Related
Feb 8, 2011
I want to run java -jar command and I have the following :command not foundWhat I need to do?
View 13 Replies
View Related
Mar 5, 2011
The tgrep commands not working in my terminal at the moment and I was told by someone the following."It's not a standard command. I suspect the source needs to be recompiled for the current platform. Can you find the source files and compile them in your home dir?" I can't get into touch with that someone at the moment so could anyone explain what exactly that means and how I get tgrep working.
View 7 Replies
View Related
May 25, 2010
when i see /usr/bin there is no useradd command. and i want to add a user.if i type the command it is shooting an error saying command nt found .how should i create a user.
View 3 Replies
View Related
Aug 25, 2010
I am Using Fedora 13 on My acer aspire laptop. I want to connect to internet through my bluetooth Mobile(Airtel) When I type wvdial at the command prompt, I recieve a message as "Command Not found". I even created a script with name wvdial.conf in /etc. Method to connect to internet through Mobile Bluetooth.
View 8 Replies
View Related
Oct 26, 2010
I did a yum install libxml2 then later had to do a yum remove libxml2
on my rhel5.5 machine. During the course I answered 'y' to one of the questions asked, which may have lead to the problem I'm about to describe - I don't know because I can't reproduce the problem at the moment.
After doing the 'yum remove libxml2', which seemed to complete successfully, I tried to do a 'yum search <some other package>' and a 'yum install <some other package>' - both commands failed. The error message I get is
[root@server etc]# yum search libxml2
bash: yum: command not found
[root@server etc]# which yum
/usr/bin/which: no yum in (/usr/kerberos/sbin:/usr/kerberos/bin:/usr/bin:/bin)
I'm afraid during the 'yum remove libxml2' I must have removed some essential system libraries and applications, including yum.
View 2 Replies
View Related
Feb 16, 2011
I wrote a simple command line script which is suppose to take my screenshot every 5 minutes.(using ImageMagick's "import" program)
Here is the script (shottr.sh):
This is working fine if I execute by hand i.e:
The script itself is being executed (I hear a voice saying: "Screenshot") but the actual screenshot is not taken.
Be assured that it is NOT permission issue (I placed a simple "touch" invocation and file was created)
May be if it's run from cron...it doesn't have a "window" so it can't take a screenshot from nowhere? If that is the case, then how can I workaround it?
View 1 Replies
View Related
Aug 26, 2010
Cannot create a group in RHEL5.
View 1 Replies
View Related
Aug 20, 2011
HP Mini 210Fedora 15 Latest updatesGnome 3.0.1In the terminal when I do the following:nm-connection-editorI get the following:command not foundWhere is the nm-connection-editor?
View 1 Replies
View Related
Aug 29, 2011
I have installed Jre in my CentOS by following instruction here InstallationBut the problem is each directory or file contains the "*" (asterisk) at the end offile name or directory even though i have fired following command chmod a+x or chmod +xso please tell me how can i execute the executable file because when i am trying to run "java" its showing me following error
View 1 Replies
View Related
Aug 21, 2010
I'm trying to recompile my linux kernel -2.6.32.5 version in Centos OS platform and when I type these commands:
Quote:
depmod 2.6.30.5-fogonacaixadagua
Quote:
mkinitrd -v /boot/initrd-2.6.30.5-fogonacaixadagua.img 2.6.30.5-fogonacaixadagua
This is the link of the Guide that I'm trying to follow:
Quote:
[URL]
is there any packages in order for me use depmod and mkinitrd?or download it using yum?
View 6 Replies
View Related
Nov 8, 2009
But I just downloaded cygwin to my xp machine. Tried my first experimental script and created it one level directly below where cygwin put me by default. The script, named show two says:
#!/bin/bash
echo $1
echo $2
But bash apparently can't find it. The name of the script is showtwo, but I also tried naming it showtwo.sh; no dice.
View 8 Replies
View Related
Feb 8, 2011
I am having redhat 5 linux machine running on my windwos x in vmware workstation. Today i was installing oracle software in redhat 5 after editing the bash profile for the oracle user i got the following messages
su - oracle
password:*****
-bash: [oracle: command not found
[code]....
View 10 Replies
View Related
Oct 18, 2010
i am using scientific linux, fedora 12accidentaly i changed LD_LIBRARY_PATH of the root profile to a different location. so terminal cannot understand any command as i type. is there any other ways to access .bashrc file exept using editors emacs, vi, nedit. my own profile works fine but i dont have permission to access the root folder. only commands the terminal responds to are pwd, cd, echo. i dont have any clue how to restore the library because it locates here:
[root@localhost ~]# echo $PATH
/usr/local/src/root/bin:
[root@localhost ~]# nedit .bashrc
[code]....
View 4 Replies
View Related
Sep 26, 2010
I followed this tutorial: [URL]
After this tutorial I did:
root@web1:~# /etc/init.d/snmpd restart Restarting network management services: snmpd.
As far as I think evrything went ok. I want to test my config with: snmpwalk localhost -c public -v1
I get this error: bash: snmpwalk: command not found
View 6 Replies
View Related
Mar 3, 2011
i'm using ubuntu 8.4 when i want install file.tgz, i found an error like
"installpkg command not found"
even though i have typed the command like this
"#installpkg file.tgz"
so, what's the problem with this?
View 7 Replies
View Related