Masim "Vavai" Sugianto wrote: > > useradd namauser > passwd namauser > mkdir /home/namauser > chmod 777 -R /home/namauser > > Kalau pakai nama user seperti diatas bisa untuk login, masalah ada > difolder /home/namauser. > > Kalau sudah masuk, kita bisa set ulang permission folder tersebut. >
mohon para pakar jangan menyarankan chmod 777 apalagi tambah -R (Recursive), karena ini sangat berbahaya bagi system. dengan chmod 777 system anda jadi "equivalent dengan microsoft windows" sangat mudah diterpa virus. execute = 001 in binary = 1 in octal write = 010 in binary = 2 in octal read = 100 in binary = 4 in octal mode 7 artinya akses tertinggi read write execute = 111 = 1 + 2 + 4 = 7 read write no execute = 110 = 4 + 2 = 6 read no write execute = 101 = 4 + 1 = 5 read no write no execute = 100 = 4 no read write execute = 011 = 2 + 1 = 3 no read write no execute = 010 = 2 no read no write execute = 001 = 1 no read no write no execute = 000 = 0 silahkan pilih kombinasi yg dibutuhkan but dont 777 :=)) salam ./sts -- regenerated by No-Multilib amd64 Gentoo gnu/Linux, a stable, virus immune, FREEDOM full, bloat free, less hazle, user friendly software system _______________________________________________ milis mailing list [email protected] http://lists.opensuse-id.org/listinfo.cgi/milis-opensuse-id.org
