Tagged Questions

a person responsible for maintaining the running health of a system (usually an electronic computer).

learn more… | top users | synonyms

53
votes
10answers
87k views

how to use ssh to run shell script on a remote machine? [closed]

could you please suggest me how to run a shell script on remote machine? I have ssh configured on both machine A and B. My script is on machine A which will perform a task on machine B. Awaiting ...
29
votes
10answers
5k views

How do I daemonize an arbitrary script in unix?

I'd like a daemonizer that can turn an arbitrary, generic script or command into a daemon. There are two common cases I'd like to deal with: I have a script that should run forever. If it ever ...
22
votes
5answers
30k views

Best practice to run Linux service as a different user

Services default to starting as root at boot time on my RHEL box. IIRC, the same is true for other Linux distros which use the init scripts in /etc/init.d. What do you think is the best way to ...
16
votes
9answers
33k views

Tracking CPU and Memory usage per process

I suspect that one of my applications eats more CPU cycles than I want it to. The problem is - it happens in bursts, and just looking at the task manager doesn't help me as it shows immediate usage ...
14
votes
5answers
9k views

Calling JMX MBean method from a shell script

Are there any libraries that would allow me to call a JMX MBean method from a shell script. We expose some operations/admin commands through JMX, and we could have our admins use JConsole, or ...
13
votes
19answers
816 views

As a programmer how much are you expected to know outside of programming? [closed]

I'm wondering what you do as a programmer that's not programming but necessary for your task (eg: local setup, server setup, deployment, etc). I'm curious to know how many non-programming related ...
13
votes
8answers
866 views

What are the quintessential tools and resources for hosting Rails applications on Amazon's EC2?

I'm looking for: documentation blogs books ready-to-use pre-configured slice images services wrappers libraries tutorials ...anything that would make it easier to start using EC2 to host a Rails ...
11
votes
6answers
11k views

How is it possible that kill -9 for a process on Linux has no effect?

I'm writing a plugin to highlight text strings automatically as you visit a web site. It's like the highlight search results but automatic and for many words; it could be used for people with ...
11
votes
4answers
4k views

Is there a way to figure out what is using a Linux kernel module?

If I load a kernel module and list the loaded modules with lsmod, I can get the "use count" of the module (number of other modules with a reference to the module). Is there a way to figure out what is ...
10
votes
4answers
4k views

Run a linux system command as a superuser, using a python script

I have got postfix installed on my machine and I am updating virtual_alias on the fly programmatically(using python)(on some action). Once I update the entry in the /etc/postfix/virtual_alias, I am ...
10
votes
5answers
2k views

How do I make cron run something every “N”th minute, where n % 5 == 1?

I know that I can have something run every five minutes in cron with a line like: */5 * * * * /my/script What if I don't want it running at 12:00, 12:05, 12:10, but rather at 12:01, 12:06, 12:11, ...
10
votes
11answers
4k views

Best way to sandbox Apache on Linux

I have Apache running on a public-facing Debian server, and am a bit worried about the security of the installation. This is a machine that hosts several free-time hobby projects, so none of us who ...
9
votes
2answers
2k views

Why use Apache over NGINX/Cherokee/Lighttpd?

Apache has been the de facto standard web server for over a decade, but recent years have brought us web servers that consume less RAM and handle many more requests per second using fewer threads and ...
9
votes
9answers
10k views

Which Linux distribution should I use as a Xen host?

I ordered a server for the home office and I would like to partition it with Xen. I think this will keep things clean and easier to maintain. I will be running things like MySQL, PostgreSQL, Tomcat, ...
9
votes
14answers
2k views

Sender and receiver to transfer files over ssh on request?

I created a program that iterates over a bunch of files and invokes for some of them: scp <file> user@host:<remotefile> However, in my case, there may be thousands of small files that ...
8
votes
4answers
3k views

Automatically (or more easily) reconnect to a screen session after network interruption

ADDED: This question is now, I believe, subsumed by this one: http://stackoverflow.com/questions/1075947/can-i-use-gnu-screen See also this related question: ...
8
votes
6answers
332 views

Are there any developers that have had to comply with the new Federal Desktop Core Configuration (FDCC), which will remove local administrator access for all users?

As developers, we believe that not having local administrative access is going to severely handicap our productivity. We will be restricted from running IIS (we’re a web development shop), installing ...
8
votes
3answers
2k views

Python script to list users and groups

I'm attempting to code a script that outputs each user and their group on their own line like so: user1 group1 user2 group1 user3 group2 ... user10 group6 etc. I'm writing up a script in ...
8
votes
5answers
31k views

Comprehensive methods of viewing memory usage on Solaris

On Linux, the "top" command shows a detailed but high level overview of your memory usage, showing: Total Memory, Used Memory, Free Memory, Buffer Usage, Cache Usage, Swap size and Swap Usage. My ...
8
votes
17answers
11k views

How can I automate running commands remotely over SSH?

I've searched around a bit for similar questions, but other than running one command or perhaps a few command with items such as: ssh user@host -t sudo su - However, what if I essentially need to ...
8
votes
3answers
1k views

Is there any performance hit involved in choosing gzip over deflate for http compression?

We recently switched some of our sites from deflate to gzip and noticed a significant increase in cpu load on our servers.
7
votes
3answers
3k views

Update website with a single command (git push) instead of FTP drag and dropping

Situation: I have a local copy of a website I have a server that I have SSH access to What do I want to do? Commit locally until I'm happy with my code Make branches locally Have one master ...
7
votes
5answers
660 views

Is there a good way to migrate from a Mailman list to an web forum?

I have a Mailman managed list with years of history that I want to migrate into a web-based forum. Things it would be nice to do: Keep the mailing list going for those who are used to and prefer it ...
7
votes
5answers
1k views

lsof survival guide

lsof is an increadibly powerful command-line utility for unix systems. It lists open files, displaying information about them. And since most everything is a file on unix systems, lsof can give ...
7
votes
8answers
2k views

How can I delete a service in Windows?

I have a couple old services that I want to completely uninstall. How can I do this?
6
votes
4answers
142 views

Can a script be used as an interpreter by the #! hashbang line?

I'm trying to write a bash script which will behave as a basic interpreter, but it doesn't seem to work: The custom interpreter doesn't appear to be invoked. What am I doing wrong? Here's a simple ...
6
votes
3answers
312 views

Process Deluge on Linux

I tried this experiment on my Linux desktop: int main() { while(1) fork(); return 0; } I ran this program as normal user(not root), i was surprised to find that it brought down my system, ...
6
votes
7answers
2k views

How do I install MySQL and the python MySql package on OSX Leopard? Or how do I learn about being a web developer using OSX?

I'm new to the Mac OS and I'm just about ready to throw my brand new MacBook pro out the window. Every tutorial on setting up a Django development environment on Leopard is insidiously wrong. They ...
6
votes
3answers
13k views

Free DNS server for Windows XP/Vista/Win7?

I'm currently developing a security solution that should work across domains and as such I need a small private dns server to add various entries to. I could alter the hosts file to achieve the same ...
6
votes
10answers
2k views

Next step for System administrator?

I have been a system administrator for about 8 years. Have worked on various technologies including various linux/unix flavours as well as MS technologies. I have also dabbled in perl and bash ...
6
votes
9answers
504 views

What is a webmaster?

I would like to know what defines a "webmaster"? What are or should be the skills, function and general responsibilities of a webmaster. And, if you are a webmaster, what do you do, what do you ...
6
votes
3answers
1k views

RSync only if filesystem is mounted

I want to setup a cron job to rsync a remote system to a backup partition, something like: bash -c 'rsync -avz --delete --exclude=proc --exclude=sys root@remote1:/ /mnt/remote1/' I would like to be ...
6
votes
10answers
2k views

What is good server performance monitoring software for Windows?

I'm looking for some software to monitor a single server for performance alerts. Preferably free and with a reasonable default configuration. Edit: To clarify, I would like to run this software on a ...
5
votes
4answers
330 views

linux based submission script for CS student source code

I'm in the late stages of developing a Linux based computing lab for CS students at my university. In my undergraduate days I remember being able to submit my homework assignments with a command ...
5
votes
7answers
285 views

What would you consider good Eclipse support?

As part of my job, I'm employed to install and support development tools for the developers in the company. Eclipse is an IDE that a great deal of developers here use, but I don't actively support. ...
5
votes
6answers
197 views

How do you handle developer access to windows servers?

When it comes to code launches how do you handle developer access to the server? Do they have RDP access to the machines to deploy code and make changes? Are they only given ftps access to the ...
5
votes
5answers
619 views

Which book would you recommend for a Linux Sysadmin?

UNIX and Linux System Administration Handbook (4th Edition) by Evi Nemeth, Garth Snyder, Trent R. Hein and Ben Whaley is the defacto for sysadmins.Any other favorites besides this one.
5
votes
8answers
3k views

Sniffing network traffic for signs of viruses/spyware

How can I connect a system to a network and sniff for virus/spyware related traffic? I'd like to plug in a network cable, fire up an appropriate tool sand have it scan the data for any signs of ...
5
votes
9answers
903 views

Which resources should one monitor on a Linux server running a web-server or database

When running any kind of server under load there are several resources that one would like to monitor to make sure that the server is healthy. This is specifically true when testing the system under ...
5
votes
4answers
472 views

Recovering from a slightly out of date subversion repository backup

A problem I ran into a while back I never found a good solution for... Say you have a working copy checked out from subversion at revision 7500, and the disk holding the current repository dies. ...
5
votes
4answers
3k views

Windows Mobile - What scripting platforms are available?

We have a number of users with Windows Mobile 6 and need to apply minor changes. eg. update a registry setting. One option is push and execute an executable file using our device management software. ...
4
votes
2answers
4k views

PowerShell Script to Get a Directory Total Size

I need to get the size of a directory, recursively. I have to do this every month so I want to make a PowerShell script to do it. How can I do it?
4
votes
10answers
283 views

Architecture for a machine database

This might be more of a serverfault.com question but a) it doesn't exist yet and b) I need more rep for when it does :~) My employer has a few hundred servers (all *NIX) spread across several ...
4
votes
4answers
430 views

What programming competences should a Unix admin have?

How would you assess a Unix sys-admin. What programming competences should a Unix admin have?
4
votes
6answers
899 views

From programmer to Sys Admin

I am web programmer and I deal with html, css, javascript, php and asp.net. Is there some good books/sites that I can use to become also a bit of a sys admin? And by sys admin I mean to have ...
4
votes
7answers
864 views

To what extent can Version Control help in system administration?

I'm currently tinkering at an OpenBSD system with a view to building myself a firewall and some other bits and bobs. As this is fairly experimental (I'm an OpenBSD n00b, and I've already trashed my ...
4
votes
3answers
431 views

How do you maximize server performance?

I have been trying to get my head around to understanding performance and scalability and would like to know what developers/sysadmins are doing to juice their systems. To standardize the answers, it ...
4
votes
2answers
540 views

partition full, or not?

my partition /tmp is full... and its empty at the same time. So the partition is full. Check the directory: # du -sh /tmp 28K /tmp What? It is empty... And it is really empty... just two empty ...
4
votes
7answers
8k views

When could or should I use chmod g+s on a file or directory?

In deploying to a new (Solaris 9) environment recently, one of the steps was to copy a set of files and directories to their new location and then to apply the group UID bit (using "chmod -R g+s") to ...
4
votes
1answer
3k views

What is the best way to log out another user from their session on Mac OS X Leopard?

In other words: Log on as Bert (who is an administrator) Using fast user switching, log on as Ernie (Bert remains logged on) Switch back to Bert Bert logs Ernie off What is the best way to achieve ...

1 2 3 4 5