-1
votes
2answers
20 views

changing shell to something that isn't restricted [closed]

Ubuntu 12.04 I recently made a new user on a new server, and I found that my up and down arrows weren't working, so I found I needed to change the shell. I changed it to rbash, and now I can't cd. ...
0
votes
2answers
50 views

Macxchange Script to Change MAC and Hostname in ubuntu 12.04

I'm trying to adapt a script in backtrack to work with ubuntu. I keep getting an error on line 14 which is the "if [ $? == 0 ]; then" line the script was found on ...
3
votes
1answer
81 views

Bash: Both date “%b” and date “%h” (and of course) date “%B” gives full name of month?

I am writing a shell-script in Ubuntu server 12.04 which is supposed to compare some data in a log file. In the log file, the date is given in the format: [Mon Apr 08 15:02:54 2013] As you can see, ...
0
votes
1answer
55 views

basename command not working as expected

I wrote a shell script to convert a lot of JPGs at my end to pdf #!/bin/bash set -xv for i in `ls -v *.JPG`; do i=$(basename "$i") convert "$i" "$i.pdf" ; done the JPGs are DSCN2612.JPG ...
0
votes
1answer
65 views

Link command error (link: missing operand after …)

I am trying to run a shell script that makes use of the link command to recycle a common script so that it can run in several directories. A script within a subdirectory calls a shared script in a ...
0
votes
0answers
100 views

linux eclipse Remote-system shell

I am trying to run commands on my local system (Ubuntu 12.04) through the Remote Systems view in Eclipse (Juno) as explained here: ...
0
votes
1answer
93 views

rails executable not working on yakuake app

I have Rails '-v 3.2.11' installed on Ruby '-v 1.9.3-p374' via RVM on Ubuntu Precise. I also installed Yakuake app '-v 2.9.8-1' which gets a drop-down terminal for me. Normally, on Gnome terminal, I ...
0
votes
2answers
66 views

How to find version of a software installed in ubuntu

Is there any universal command that I can use in the console, for example how to find the mysql version ?
0
votes
1answer
70 views

Check if argument is a file or directory

I am trying to check if an argument is a directory or a file. I want to put a / after each directory name and a * after every executable file. I know ls uses -F to get this information but I can't ...
0
votes
1answer
25 views

How to synchronize datetime in a webapp with the sytem datetime in Ubuntu 12.04

We are working on a web app implemented using jsp/servlets and currently we are using ubuntu 12.04 server. We need to add another UI which allows users to change Ubuntu system datetime. It would have ...
0
votes
1answer
250 views

Having trouble running android sdk tool on ubuntu 12.10

When I try to run the Android SDK Manager from the command line it doesn't open. Keeps giving me command not found or permission denied message like so. ...
0
votes
1answer
256 views

why is ppm: command not found?

I'm trying to run a few ppm commands, but I'm not getting very far. I'm running Ubuntu 12.04.1 LTS on an azure VM. > $ sudo apt-get install ppm Reading package lists... Done Building dependency ...
0
votes
1answer
40 views

Iterating an array from grep

I have an Ubuntu 12.04 server here and I have a process that can use some ports in my system. The way I have to track these ports is this command: ps ax | grep thin | grep -Eo ...
1
vote
0answers
150 views

Email Through Terminal in Ubuntu 12.04

I want to write an automated shell script for sending email by specifying the sender email address as well as receiver's email address ... I tried using mailx but to no use.. Please Help !!!
4
votes
2answers
1k views

unoconv not working on ubuntu 12.04 server

I am using unoconv to convert different file formats to pdf. It is working well on my local machine for all formats. But on my ubuntu 12.04 server unoconv is failing for some formats such as xls, ppt, ...
2
votes
1answer
319 views

Using curly brackets for variable expansion in makefile doesn't work

When I run below command on shell, it works properly. but if I write it in a Makefile and call it with "make" command it doesn't work. cp wpa_{cli,supplicant,passphrase,event} /usr/local/bin/ ...
0
votes
4answers
161 views

Meaning of chmod o+rx '{}' \

I am trying to figure out what the following command would do. I extracted it from a Linux shell script and when I enter it goes to a prompt (>). But I cannot figure out what to enter in this prompt. ...
1
vote
1answer
52 views

Unix Login Procedure [closed]

How to login into Unix say Ubuntu, if your .bashrc file has poweroff command. and on login your system gets powerd off. You don't have any other account and you are not root but a simple user.
0
votes
1answer
40 views

How can i reach as varible of /src last folder in shell script?

this sh script is in <project-dir>/w that named "install.sh" i want to catch my directory last name "bes" where is <project-dir>/src/com/seri/bes #!bin/bash i use ...
0
votes
1answer
117 views

Append operator in bash shell

While running a bash shell script which contains this command: iperf -c $server_ip -p $iperf_port -t $iperf_duration >> outputfile the output is many times displayed on console rather than ...
0
votes
2answers
602 views

Telnet SMTP with expect or shell script

Want to build up a Auth Smtp Connection with expect script... just to test I wanted to get ehlo parameters but expect is not working like this #!/usr/bin/expect set timeout -1 set smtp [lindex $argv ...
0
votes
1answer
307 views

My shell script for starting NGiNX is not working

I found this small shell script in a book... NGiNX works it just this script that just does not work. Because every time I do /etc/init.d/nginx start (that is where the file is) it sends me this ...
0
votes
1answer
164 views

How to create file and put string on it using shellscript?

I want to create a file in /usr/share/applications/ and put a string on it. What I have so far: sudo touch /usr/share/applications/test.desktop dentry="testing" sudo echo $dentry >> ...
0
votes
2answers
617 views

HBase Shell hangs / freezes

I've installed HBase 0.92.1-cdh4.0.1 on Ubuntu 12.04 in Pseudo-Distributed mode. hbase-master, hbase-regionserver and zookeeper-server are running on this machine; the HDFS is running on another ...