Search found 2996 matches

by lambda
Tue Nov 10, 2015 7:36 pm
Forum: Administration
Topic: Hostname resolution from one linux host to another linux hos
Replies: 2
Views: 17819

Re: Hostname resolution from one linux host to another linux

add the search or domain field to your /etc/resolv.conf files. for example

Code: Select all

nameserver 192.168.1.1
domain mycompany.com
or

Code: Select all

nameserver 192.168.1.1
search mysubdomain.mycompany.com mycompany.com
by lambda
Mon Oct 17, 2011 2:20 am
Forum: Administration
Topic: cp & chown issue.
Replies: 7
Views: 12993

Re: cp & chown issue.

Code: Select all

rsync --inplace -PHvza /opt/appserver/images/* /opt/appserver02/public/images/
by lambda
Sun Sep 25, 2011 5:15 pm
Forum: Programming
Topic: text filtering script
Replies: 2
Views: 6801

Re: text filtering script

so, write one. you can use sed, awk, perl, whatever.
by lambda
Tue Jul 05, 2011 11:50 pm
Forum: General
Topic: Covering a building with wireless signals, not using wire.
Replies: 2
Views: 8063

for encryption, the ideal case is to use wpa2 with a long passphrase (over 20 characters). of course, if everyone knows the key then all the encryption does is keep random people from catching your signal. at my workplace, we have two or three different access points for one floor (seven rooms). dep...
by lambda
Sat Jul 02, 2011 11:11 pm
Forum: General
Topic: Linux for Pharmaceutical ERP?
Replies: 1
Views: 3092

it depends on your erp solution. can it be moved to linux?

for some things like file sharing and active directory yes you can go to linux. and there is oracle db for linux too. in fact there are many databases BUT there is no sql server or isa for linux.
by lambda
Mon Jun 06, 2011 11:44 pm
Forum: Administration
Topic: permission denied for the new partition to non-root user
Replies: 2
Views: 4196

normal users cannot directly access hardware devices. that is why you have to be root to do that.
by lambda
Mon Jun 06, 2011 11:24 pm
Forum: Installation
Topic: Centos Tomcat howto
Replies: 1
Views: 7129

did you install the apache-dev package? maybe it's called httpd-devel or something like that.

why aren't you following the installation instructions that are part of tomcat?
by lambda
Sun May 08, 2011 11:37 pm
Forum: Installation
Topic: Yahoo Voice-Chat Problem in Fedora 14
Replies: 5
Views: 11591

that error does not seem like it has anything to do with your network setup. maybe your ip is blocked, or maybe someone on your network is doing something he/she shouldn't.
by lambda
Fri May 06, 2011 6:57 pm
Forum: Installation
Topic: Yahoo Voice-Chat Problem in Fedora 14
Replies: 5
Views: 11591

what is the problem, exactly? what does the messenger tell you?
by lambda
Fri Apr 29, 2011 5:15 pm
Forum: Administration
Topic: BACKUP snereo
Replies: 2
Views: 3950

1. stop using tar for this task
2. install rsync and rsnapshot
3. use rsnapshot.
by lambda
Tue Apr 26, 2011 2:35 am
Forum: Administration
Topic: Files Removes Issue
Replies: 6
Views: 6735

try doing

Code: Select all

export LANG=en_US.UTF-8
before running ls.
by lambda
Mon Apr 25, 2011 4:18 pm
Forum: Administration
Topic: Files Removes Issue
Replies: 6
Views: 6735

you're still trying to delete using one command. that's what xargs helps you with. read its man page . try this: cd /the/directory; ls -lU | grep '2011-01' | awk '$6 ~ /2011-01/ {print $8}' | xargs rm it will not work with files that have spaces in them, and you might have to adjust $6 and $8 to som...
by lambda
Sun Apr 24, 2011 7:33 pm
Forum: Administration
Topic: Files Removes Issue
Replies: 6
Views: 6735

better solution:

Code: Select all

find /path/to/directory -type f -print0 | xargs -0 rm
read the man pages for what -print0 and -0 do.
by lambda
Tue Apr 12, 2011 10:47 pm
Forum: Professional Services
Topic: Linux Guru needed
Replies: 1
Views: 10131

what kind of "help" do you need?
by lambda
Tue Apr 05, 2011 11:57 am
Forum: Administration
Topic: Inquiry for Incremental Backup
Replies: 3
Views: 4291

for a paid product, read their docs or contact support for a more accurate answer.