You are not logged in.

#1 2007-02-12 13:25:40

dids22
Member
Registered: 2007-01-02
Posts: 251

creat new user

how to create new user?

Last edited by dids22 (2007-02-12 13:26:00)

Offline

#2 2007-02-12 13:30:18

Zoranthus
Member
From: muc
Registered: 2006-11-22
Posts: 166

Offline

#3 2007-02-12 13:54:29

ralvez
Member
From: Canada
Registered: 2005-12-06
Posts: 1,730
Website

Re: creat new user

as root issue "adduser" and follow the prompts.

R

Offline

#4 2007-02-12 14:00:20

dids22
Member
Registered: 2007-01-02
Posts: 251

Re: creat new user

ty

what is  su password?

and i want to mount my ntfs part'
what worng in this

/dev/sda1              /mnt/c    ntfs  ro,user,unhide              0      0

?

Offline

#5 2007-02-12 14:44:48

pelle.k
Member
From: Åre, Sweden (EU)
Registered: 2006-04-30
Posts: 667

Re: creat new user

1. if you didn't create a root password (using the 0.7.2 install cd) Shame on you! (as root - "passwd")
2. If you used the 0.8 (beta) install cd you had that option, so you tell me - what is your root password?

Please, study the wiki. (esp. the beginners guide).
btw, with "su" you become root, so... it's the root password you're looking for.


"Your beliefs can be like fences that surround you.
You must first see them or you will not even realize that you are not free, simply because you will not see beyond the fences.
They will represent the boundaries of your experience."

SETH / Jane Roberts

Offline

#6 2007-02-12 15:51:39

dids22
Member
Registered: 2007-01-02
Posts: 251

Re: creat new user

sad
well i installed 0.7.2 and i didn't put password for root (what is the big deal??)
why in 0.8 it's not imperative ?

Last edited by dids22 (2007-02-12 15:59:51)

Offline

#7 2007-02-12 16:30:52

mucknert
Member
From: Berlin // Germany
Registered: 2006-06-27
Posts: 510

Re: creat new user

/me sighs. What a whole lot of RTFM-Questions. hmm


Todays mistakes are tomorrows catastrophes.

Offline

#8 2007-02-12 17:18:15

sjg
Member
From: UK
Registered: 2007-02-10
Posts: 63

Re: creat new user

One of the great things about linux (and one of the biggest benefits vs windows for most users) is its user management and security. If you don't set a root password you miss out on these benefits and leave your system wide open. Probably more importantly, never use root unless you have to, especially if you don't know what you are doing, as it enables you to make changes across the system and possibly break it!

As the others said, read the wiki. It will tell you all this stuff.

Offline

#9 2007-02-12 17:22:00

dids22
Member
Registered: 2007-01-02
Posts: 251

Re: creat new user

thank you
there is in arch something like "sudo" (super user do-it's from ubuntu) ?

Offline

#10 2007-02-12 17:25:30

sjg
Member
From: UK
Registered: 2007-02-10
Posts: 63

Re: creat new user

Yep - if you prefer to use sudo you can install it using pacman.

Offline

#11 2007-02-12 17:37:01

dids22
Member
Registered: 2007-01-02
Posts: 251

Re: creat new user

ok, i installed sudo but when i put root password i get

"Sorry, try again."

sad

Last edited by dids22 (2007-02-12 17:52:58)

Offline

#12 2007-02-12 17:54:58

F
Member
Registered: 2006-10-09
Posts: 322

Re: creat new user

when using sudo as a normal user, you put in the normal user's password, not root's password.

Offline

#13 2007-02-12 18:57:44

dids22
Member
Registered: 2007-01-02
Posts: 251

Re: creat new user

sudo = super user(root) do

so why puting  user's password and not root's password?

Offline

#14 2007-02-12 19:06:37

RaisedFist
Member
From: Romania
Registered: 2007-01-30
Posts: 556
Website

Re: creat new user

dids22, did you ever try to read the wiki? I don't want to be mean, but maybe some self documentation will help.

Offline

#15 2007-02-12 19:07:19

iBertus
Member
From: Greenville, NC
Registered: 2004-11-04
Posts: 2,228

Re: creat new user

dids22 wrote:

sudo = super user(root) do

so why puting  user's password and not root's password?

The goal is to give limited users SU access for a limited set of functionality. So, it's important to be able to do this without giving up the root password in the process. You should search the wiki for sudo and see if an example /etc/sudoers file shows up.

Offline

#16 2007-02-12 20:17:59

dids22
Member
Registered: 2007-01-02
Posts: 251

Re: creat new user

ok thank u
one more question:
how to mount ntfs parttion?
that what i write on fstab
/dev/sda1              /mnt/c    ntfs  ro,user,unhide              0      0

and i get eror
(and i search in wiki, i want meanwhile only to read)

ty

Offline

#17 2007-02-12 21:03:16

detto
Member
Registered: 2006-01-23
Posts: 510

Re: creat new user

Mount read-only or read-write? What an error? Does /mnt/c exist?

Offline

#18 2007-02-12 21:11:08

dids22
Member
Registered: 2007-01-02
Posts: 251

Re: creat new user

sorry
read write

http://wiki.archlinux.org/index.php/NTFS_Write_Support

ftp://ftp.archlinux.org/tur/punkrockguy318

the prob' is tha server  doesnt contain tur directory

Last edited by dids22 (2007-02-12 21:15:30)

Offline

#19 2007-02-12 21:16:17

detto
Member
Registered: 2006-01-23
Posts: 510

Re: creat new user

Well here we go, a quick guide:

# get ntfs module
pacman -S ntfs-3g                                     

# load the module
modprobe fuse                                         

# /etc/fstab entry
/dev/sda1   /mnt/c   ntfs-3g   defaults   0 1 


Hope that helps, smile

cheers,
deTTo

edit: ok, just thought about givin the wiki a try, here we go (if it worked) http://wiki.archlinux.org/index.php/NTFS_Write_Support

Last edited by detto (2007-02-12 21:21:18)

Offline

#20 2007-02-12 21:35:06

dids22
Member
Registered: 2007-01-02
Posts: 251

Re: creat new user

yeah it work

ty

it's safe right?

Offline

#21 2007-02-12 23:00:36

jwbirdsong
Member
From: Western KS USA
Registered: 2006-11-25
Posts: 173

Re: creat new user

I've been using ntfs-3g for 8 month or so and never a problems yet.  IIRC there was some worry over some of the earlier alpha/beta versions but all bugs seem to have been worked out.


PLEASE read and try to FIX/FILE BUGS instead of assuming other have/will.

Offline

Board footer

Powered by FluxBB