Tagged Questions
0
votes
2answers
66 views
FileNotFoundException while creating a file with java in Ubuntu?
I have been trying to convert millions of xml documents to txt files. After reading each xml I parse the required content and write it into a new text file in a new drectory.
But when I process some ...
1
vote
1answer
23 views
unix find and replace characters with strings for multiple characters
I want to replace all occurrences of certain characters in my file with words. My question is, can I do that for all the characters using a single command. I am using the following command for ...
0
votes
2answers
34 views
Why is a zombie process necessary?
Wikipedia basically gives all the possible information about zombie processes that I NEED to know but just a simple line on how it might be useful..in that a conflict in PIDs will not exist in the ...
0
votes
0answers
34 views
Processes not starting other processes when it's not me starting them?
So I've got a python script, running Selenium and Firefoxdriver. Everytime I've tested it via command line, it's gone off without a hitch. Boots up firefox windows, no problems.
Then I built a page ...
0
votes
1answer
26 views
how can i find the modified files in ubuntu
I want to find the details of the modified files such as size, permission and modified time in ubuntu and set the cron jobs in cpanel,i have used like this
find /home1/sitename/public_html/ -type f ...
0
votes
2answers
23 views
Menu doesn't want to work with funcion
I am doing a menu based program and I am trying to call a function as one of the menu choice. In this case it is the first choice. However if I press 1 nothing happens, but the script works( I have ...
-1
votes
2answers
17 views
Linking www on VM [closed]
Hello guys Im a bit of a n00b when it comes to setting up servers and I have a question. To resemble my work environment I am setting up a VM running Ubuntu Server. I have mounted my shared folder ...
0
votes
3answers
50 views
How do I remove lines from every file that has a matching text?
$ grep "console.log" * -R
account/db.js: console.log(err);
account/db.js: console.log(info);
account/db.js: console.log(err);
account/db.js: ...
-1
votes
1answer
17 views
How to copy specified file_name to specified_directory_name in ubuntu
I have some file, the name of files like
CAB01_backup
CAB02_backup
CAB03_backup
...
CAB120_backup
this files locate in directory name "files" (/home/files/)
and there are other directory besides ...
1
vote
1answer
69 views
Error trying to install headless dropbox on unix server
Getting the below error trying to install dropbox in a unix headless environment
.dropbox-dist/dropbox: Syntax error: word unexpected (expecting ")")
Instructions followed: ...
-3
votes
1answer
50 views
Hey. I have error in the Compiling can you someone help? Linux [closed]
i try to compile code in c in the terminal the compiler throw me message i cant understand
it..
the massege is :
user@user-virtual-machine:~/Desktop$ gcc -o run execute.cpp
execute.cpp: In ...
0
votes
0answers
15 views
Unable to use sudo su - command [migrated]
I am new in ubuntu, i am trying to run following command
sudo su -
Bu i am getting following message
sudo: unable to open /etc/sudoers: Permission denied
sudo: no valid sudoers sources found, ...
0
votes
1answer
37 views
Several terminal commands in one exec function
Just out of curiosity I am wondering what would be the easiest way to execute two or more Linux commands with. Let's take the following example:
1) free > tmp1
2) uptime > tmp2
3) cat tmp1 tmp2 ...
3
votes
2answers
74 views
Create “virtual” OpenGL context in linux
How do I create an OpenGL context in my program (C++) which will be used purely internally? That is, it will render a scene, then I will grab the pixel data to use in the rest of the program (saving ...
3
votes
4answers
101 views
I need a real UNIX RoR development environment
From the beginning, I am a Windows master. I started with MS-DOS. I put up Windows 2.1 and every Windows since. I have 10 different Windows boxes running in my house right now, from Windows 7 ...
0
votes
2answers
146 views
chmod: cannot read directory `.': Permission denied [closed]
I am trying to recursively change the permission of directories and sub-directories for "data" directory and running into following error..can someone provide inputs on the below error?
...
1
vote
1answer
61 views
Unix Java Issue
Ok, I'm trying to install Websphere (from IBM) on my Ubuntu 12.04 LTS Server.
But when it cames to install the .bin, it says no Java VM can be found on the server, but when I get the Java version ...
0
votes
4answers
75 views
How do I filter out lines of a text file that have length of 8 and ends in .com?
I have a list of a million domain names in name.txt
hello.com
abc.com
gogogo.us
goodbye.me
...
...
How do I pipe only domain names with 8 letters (including the .com) and only ends in .com to ...
1
vote
1answer
66 views
How to keep input before CTRL-C
With this code I found here on Stack:
...
char buffer[256]
while((count=read(0, buffer, 256)) > 1)
{
if(buffer[count] = '\n') break;
}
buffer[n-1] ='\0';
I can read from the ...
6
votes
2answers
94 views
Batch delete a large number of files
Everyday user-uploaded files older than a month are deleted from the server. User uploads are stored into directories by the day (eg /var/www/media/2013-03-13) so its easy to identify the ...
0
votes
2answers
88 views
how to make my syncing bash script executable by a specific command like “mySync leftdir rightdir”?
I'm creating a bash script for Unix in Ubuntu that synchronizes two directories.
i have already coded the sync program but the problem im facing is that i need to call my script by a command line :" ...
1
vote
3answers
49 views
how to delete multiple files according to the content in ubuntu
I want to delete all the files which only contains one line in it. To list the number of lines in each file is wc -l *txt. I only know how to use rm to delete files with specific names but not the ...
0
votes
2answers
137 views
Making a C program to compile another
I'm looking to make a program with the purpose of compiling another.
The purpose being using exec to run gcc.
I have to use execve and what I have is:
#include <unistd.h>
#include ...
0
votes
3answers
75 views
Unix command to search a line in a file and replace it
I am trying to replace Config Files with the UnixCommandline without using an Editor like vi or nano.
An example could be:
ServerAdmin mail@example.com
I want to find the first or all lines that ...
3
votes
2answers
53 views
Unix : Can't use backquote in MySQL command
I wrote a MySQL command in bash (Ubuntu) :
[XXXX:~]$ mysql -h localhost -u XXXX -pXXXX -e "DROP DATABASE IF EXISTS `f-XXXX`;"
I need backquote in this command, cause database name is variable.
...
0
votes
0answers
30 views
one screen doesnt starts ubuntu
I am having a weird problem.
I have two user accounts.
One user account works just fine.
Second user account.. One monitor doesnt starts up..
If I got to Nvidia X server setting (thru ...
-1
votes
1answer
47 views
Why am I getting a no match error with chmod? [closed]
When I execute this command
chmod a-w /users/students/ejackson/A3-ejackson-55688-114906/CS282/CS282in/*
I get the message "chmod: no match".
The ls command within CS282in/ outputs
aa1ba.txt aa1b.c ...
-1
votes
1answer
24 views
Unix - can a file's group be changed if I am not in that group? [closed]
Is that possible, or do I have to be a part of the group to use chgrp or chown?
0
votes
1answer
122 views
running script containing sudo in cron
#!/bin/bash
value=$(<man.txt)
echo "$value"
if [ "$value" == "true" ]; then
echo "startedif_manthan"
ps -ef|grep sym |awk '{ print $2 }'|sudo xargs kill -9;
sleep 30;
sudo sh ...
0
votes
1answer
32 views
Different behavior from ubuntu server and ubuntu client on windows
#!/bin/bash
# Reading
cat /home/radiare/Desktop/first.txt | while read LINE
do
if [ "$LINE" == "false" ]; then
echo "Inside first loop"
break
fi
done
cat /home/radiare/Desktop/second.txt | while ...
0
votes
3answers
461 views
trouble getting sublime to execute with linux terminal
I know a few similar questions have been asked, but none seemed to help me so here it goes. I am trying to get sublime to run when I use 'subl' in the Linux terminal but I just cannot get it to work. ...
0
votes
1answer
74 views
Get OS version on OS X
I have an old script which I use to run in Ubuntu.
Now, I have a Mac and want to reuse the script.
Does anyone know what would be equivalent of the following commands in Mac OS?
def runCmd(cmd):
...
0
votes
1answer
292 views
Install grails 2.2.0 ubuntu grails-ppa not found
want to install grails on ubuntu 11.10
f0llowed the instructions on the grails website
http://grails.org/download/ubuntu
i can add repository and update but when i type
sudo apt-get install ...
0
votes
2answers
119 views
run c using gcc compiler on lubuntu [closed]
i'm about a week behind in my intermediate prg class (due to ram issues) and i just need to ask a very, very simple question.
what commands do i use to run?
i'm using lxterminal on lubuntu. not ...
0
votes
0answers
93 views
Error with Postfix network unreachable
Well i am getting an error connect to alt2.gmail-smtp-in.l.google.com[2a00:1450:4010:c04::1b]:25: Network is unreachable
when i am trying to send mail to my gmail account.It was working earlier but ...
0
votes
1answer
21 views
How to stop apt from uninstalling the packages while updating [closed]
I using apt in terminal to install an update.
When i used apt-get -f install it showed
0 upgraded, 7 newly installed, 428 to remove and 3 not upgraded.
4 not fully installed or removed.
Need to get ...
-1
votes
1answer
105 views
a bash script for Unix that synchronize two directories
I have this assignment for System Programing and I'm new to bash so can anybody help me please.
(I'm using Ubuntu)
Assignment:
Create a bash script for Unix that synchronize two directories.
Call: ...
83
votes
7answers
7k views
Make a program run slowly
Is there any way to run a C++ program slower by changing any OS parameters in Linux? In this way I would like to simulate what will happen if that particular program happens to run on a real slower ...
1
vote
2answers
195 views
Stepping through Linux kernel source code?
My aim is to learn how Linux works. I know there are smaller kernels out there- I have the Minix book but the problem is that whilst teaching the concepts is ok- I really want to learn the specifics ...
-4
votes
2answers
108 views
Tcpdump commad - Linux - Unix [closed]
Guys!
I need a little help
I'm using the tcpdump command to capture traffic on the network interface eth0
tcpdump -Xvv -n -i eth0 -c 300 > captureFile.txt
in the shell appear the next message
...
0
votes
4answers
336 views
In layman's terms, what is the difference between Mac OS, Ubuntu, Linux, and Unix? [closed]
I understand that it's partly about abstraction, but since I'm a beginner, these concepts are very murky to me. Is Mac OS built on top of Linux architecture? How does Linux relate to Unix/Ubuntu? I've ...
2
votes
2answers
238 views
Bash-Command to get the current network bandwith usage and CPU Usage
I need some command line snippets to get the current CPU Usage (in percent) and the current network bandwith usage.
To get the CPU-Usage i found top -bn1 | grep "Cpu(s)"
But it always give me
...
0
votes
1answer
137 views
SSH MOTD per User [closed]
After connection to the ssh you get a welcome message that is fed by /etc/motd. Now I would like to have those messages per user but I am not allowed to edit /etc/motd.
So I wonder if there is ...
-1
votes
2answers
604 views
Can't listen on port 80 with my server
Very new on this kind of issue, i am trying to launch a server on the port 80 (it's important to me to use this specific port).
It's fails, but it works on other ports (even < 1024 when i am root, ...
1
vote
2answers
71 views
Monitor directory for changes without 3rd party packages
Many other questions is about this around StackOverflow. I haven't found any where the result doesn't use any 3rd party package.
The problem is that I'm using Hetzner and they want allow me to ...
1
vote
2answers
185 views
Unable to create Shared Memory C [closed]
The following code always returns -1 for creating shared memory. I don't know the reason for it. As far as I know my code is correct. Perror returns not such file or directory. I don't know what it is ...
0
votes
1answer
196 views
No such file or Directory error for including header file C
I am trying to include a header file which contains a structure, but when I try to compile the file including the header file, I get No such file or Directory error. Both .c and header file are in the ...
-1
votes
1answer
78 views
How can I allow a user to use a password to login via SFTP, rather than a private key? [closed]
I've setup VSFTPD in Ubuntu, and if I try to SFTP a file using a private key, I can get in fine--but I want to allow other users to use a password. I've followed Ubuntu's instructions, and already ...
1
vote
1answer
56 views
How to detect EC2 instance has been idle
I am looking for idea how to approach this problem, basically measuring EC2 instance activity.
Is there a way I can know that via AWS? If not, how can I measure activity on e.g. Ubuntu instance. ...
2
votes
2answers
107 views
command line bulk rename
I have files in multiple subfolders, I want to move them all to one folder.
Then I like to rename those files.
/foo/A1000-foobar1412.jpg
/foo/A1000-foobar213.jpg
/foo/A1000-foobar314.jpg
...


