command accton question???


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers command accton question???
# 1  
Old 02-28-2002
command accton question???

When i excute the command:
# /usr/sbin/acct/accton /var/adm/acct
it prompt error:
#/usr/sbin/acct/accton: file mode not 0664

Who can help me to start process-accounting procedures,Thanks!
# 2  
Old 03-01-2002
is this a an accounting process ? I see.. i dont think so its supported in this forum (i think so). But for your refrence you may check this site for some information.
http://www.gnu.org/manual/acct-6.3.2...nting_toc.html
# 3  
Old 03-01-2002
It looks like it's complaining about the permissions on the file.
First, make sure the file "/var/adm/acct" exists. If not, create it:
touch /var/adm/acct

This file should be owned by root and have a privledged group (not something like "users" or "staff"), so make sure of that now too.
Now, as root, do:
chmod 0664 /var/adm/acct

See if it gives you that error again..
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX and Linux Applications

Ls command question

I am scratching my head right now. I am trying to archive a ton of files in a directory. I am attempting to tar them by year. On our development server if I type ls *_2008* it returns all of the files I am expecting to see. (The format of the filename includes xx_xx_xxx_2008-09-29_xxx.xxxx.xxxx)... (8 Replies)
Discussion started by: jmartin99
8 Replies

2. UNIX for Dummies Questions & Answers

New to Unix command line and have a question about the "sort" command

I am going through the Unix Made Easy second edition book by John Muster. So far it's been very informative and I can tell it may be a bit out of date. In one of the exercises it talks about the "sort" command and using it to sort column's of data etc. The "sort" command has changed a bit and... (1 Reply)
Discussion started by: budfoxcat
1 Replies

3. Shell Programming and Scripting

question about cd command

I am a beginner in unix and need to work on a new unix server. When I tried cd by using the following command, it didn't work: $ cd /web/tariffs/tbcc and it returned me an error log like this: ksh: /web/r^?tariffs/tbcc: not found. But if I did it one folder at a time, it works $ cd /web $... (6 Replies)
Discussion started by: snow123451
6 Replies

4. Solaris

accton

I enabled accton and lastcomm can show all users command can restrict specified users, eq. root / user1, users command only? (1 Reply)
Discussion started by: goodbid
1 Replies

5. UNIX for Dummies Questions & Answers

Question about why a command does this

$ echo 2 * 3 > 5 is a valid inequality. This will create a file in the current directory named '5' with the number '2' in it, the names of all the files in the current directory, followed by the number '3' and 'is a valid inequality.' What I do not understand is why 'is a valid inequality' gets... (2 Replies)
Discussion started by: guitarscn
2 Replies

6. UNIX for Dummies Questions & Answers

mv Command question

When I use the mv command like say, mv file1 ../, it will move file1 to the parent directory of my current working directory. But where would the file go if I do mv file ... (with 3 periods), where would this move file1? (4 Replies)
Discussion started by: MaStErXLY
4 Replies

7. UNIX for Dummies Questions & Answers

Command Question

What does 'directory=`pwd $1` ' mean, I know pwd is present working directory, so does that command take the present working directory of the directory the user is in depending on the varible ($1)? (2 Replies)
Discussion started by: Jayden
2 Replies

8. Solaris

cp command Question?

I am trying to following.. cp -rp oradata to /prod1 /prod2 /prod3 How I can copy oradata directory in to multiple directories? Thanks -Ad (1 Reply)
Discussion started by: deal732
1 Replies

9. Shell Programming and Scripting

A command question

In one of our scripts, I see the following: PATH=`pwd` ## PATH=$(pwd) I see few commands with several ## in between while declaring a variable. May I know what ## signifies? Thanks Chiru (1 Reply)
Discussion started by: chiru_h
1 Replies

10. UNIX for Dummies Questions & Answers

question about rm command

i have a lot of messages file in the var directory i want to delete now i want to keep messages.1 to messages.10 and then delete everything else after 10 which is like 10 to 96 obviously i cant delete these files individual, can someone tell me the command to delete messages.11 to... (1 Reply)
Discussion started by: IMPTRUE
1 Replies
Login or Register to Ask a Question