-
PostgresSql
- Create dB any as postgres user
- Create as many users as you need
- Edit /var/lib/pgsql/data/pg_hba.conf to set external access
- Start system services
-
Hummingbird
Configure GDM to accept remote connections:
/etc/X11/gdm/gdm.conf
[xdmcp]
Enable=1
-
Sumba
Add Samba user
# adduser todd
#smbpasswd -a todd
Suse 7.3
look in the script smbadduser,
choose the line, appropriate to your system
(by default, it is 'ypcat passwd'),
that should be all, shouldn't it?
;-))
# mount -t smbfs -o rw,username=user,password=xxxx,fmask=766 //10.126.10.145/casa /mnt/casa
-
Rsync
Usung wit different ssh port rsync -Pavze 'ssh -p 8022' hostname:dir/ dir2/
-
Firewall
Setup
-
Mout directories to FTP folder
mount --bind /path/you/want/to/include /path/to/vsftpd/docroot/subdir
or
-
Create user
useradd "username"
python
#
import crypt; print crypt.crypt("password","salt")
The output is the encrypted password similar to 12CsGd8FRcMSM.
#
Type [Ctrl]-[D] to exit the Python interpreter.
#
Cut and paste the exact encrypted password output, without a leading or trailing blank spaces, into the following command:
usermod -p "encrypted-password" username
Sample: Red hat
adduser a2i3977 -c "Grazielle G. Codonho" -p "saMf03.x/cKGs"
chage -d 0 a2i3977 # expires now
passwd -x 0 a2i4314
-
Search long list
Ref
find . -type f -print0 | xargs -0 grep C4GQ81074
-
Fat 32 Mount
#Fat 32
| devfs /dev devfs defaults 0 0
# local mount
| /home/piglet/temp /tmp/crap auto bind 0 0
|