Postări

Se afișează postări din 2014

User management in linux

User management To list users currently logged on the system, the  who  command can be used. To add a new user, use the  useradd  command: # useradd -m -g [initial_group] -G [additional_groups] -s [login_shell] [username] -m  creates the user home directory as  /home/ username . Within their home directory, a non-root user can write files, delete them, install programs, and so on. -g  defines the group name or number of the user's initial login group. If specified, the group name must exist; if a group number is provided, it must refer to an already existing group. If not specified, the behaviour of  useradd  will depend on the  USERGROUPS_ENAB  variable contained in  /etc/login.defs . The default behaviour ( USERGROUPS_ENAB yes ) is to create a group with the same name as the username, with  GID  equal to  UID . -G  introduces a list of supplementary groups which the user is also a member of. Eac...

centos mysql 5.6

http://dev.mysql.com/doc/refman/5.6/en/linux-installation-yum-repo.html http://opensourcedbms.com/dbms/how-to-upgrade-mysql-5-5-to-mysql-5-6-on-centos-6-3-red-hat-fedora/#comment-1071

No image

Dummy Photos http://placehold.it/ Example http://placehold.it/259x65/ffffff/cccccc&text=No+Image

Visual Basic - Excel save every sheet as xls - office1997 - compatible

1. Alt+F11  2. Insert -> Module (paste code) Sub Splitbook() MyPath = ThisWorkbook.Path For Each sht In ThisWorkbook.Sheets sht.Copy ActiveSheet.Cells.Copy ActiveSheet.Cells.PasteSpecial Paste:=xlPasteValues ActiveSheet.Cells.PasteSpecial Paste:=xlPasteFormats ActiveWorkbook.SaveAs _ Filename:="c:\tmp" & "\" & sht.Name & ".xls", FileFormat:=56 ActiveWorkbook.Close savechanges:=False Next sht End Sub 3. Run - > F5