Setting defaults for new users on a Linux system.

Setting defaults for new users on a Linux system To set defaults for new users on your Linux system, the /etc/skel folder will come into play. You may place the .bash_profile, .bashrc & .bash_logout files that set defaults for the user such as the BASH shell prompt, and the logout and login options. This is … Read more

How to enable sudo on your Linux system with the visudo command.

The visudo command for Linux allows a user to edit the sudoers file and change permissions for users on the system. Open the sudoers file this way. NEVER edit it with a standard text editor. ┌─[jason@neo]─[~] └──╼ $su Password: root@neo:/home/jason# visudo┌─[jason@neo]─[~] └──╼ $su Password: root@neo:/home/jason# visudo This is the result of my editing. I have … Read more

How to change user information such as full name from the command prompt.

To change the full name and other information stored for a certain user, the chfn command will come in handy. This allows a system administrator to change the data with a simple command. In this example, I am changing the full name of a Linux user. root@darkstar:~# chfn -f "Jason Smith" jasonroot@darkstar:~# chfn -f "Jason … Read more

Send a message to logged in Linux users and other nice tricks.

To send a message to logged in Linux users with the wall command, just open it and type a message. Then press ^D to send it. jason$ wall Hi   Broadcast message from jason@jason-desktop (pts/0) (Sat Aug 27 22:24:05 2016):   Hijason$ wall Hi Broadcast message from jason@jason-desktop (pts/0) (Sat Aug 27 22:24:05 2016): Hi … Read more

Create a new group on Linux and add a new user to it easily.

To add a new group to a Linux system, enter this command as root. root@neo:/home/jason# groupadd deptroot@neo:/home/jason# groupadd dept Then, create our new user with this command. root@neo:/home/jason# useradd -m -g dept -d /home/user -s /bin/bash userroot@neo:/home/jason# useradd -m -g dept -d /home/user -s /bin/bash user Now our user is a member of the dept … Read more

Different ways to get user and system information on Linux.

The who command on Linux and UNIX systems will list all currently logged in users on your system. jason@darknet:~$ who -Htu NAME LINE TIME IDLE PID COMMENT jason :0 2016-02-13 13:43 ? 1895 (:0) jason tty2 2016-02-13 13:43 00:01 2164 jason pts/0 2016-02-13 13:43 . 2178 (:0.0)jason@darknet:~$ who -Htu NAME LINE TIME IDLE PID COMMENT … Read more

Some useful Windows commands to use in the cmd window. Get information about your user.

This command lists the information about your user. C:\Users\homer>net user Administrator User name Administrator Full Name Comment Built-in account for administering the computer/domain User’s comment Country code 000 (System Default) Account active No Account expires Never   Password last set 11/2/2006 11:08:15 PM Password expires Never Password changeable 11/2/2006 11:08:15 PM Password required Yes User … Read more

How the design of the user interface has changed from the olden days of the computer.

The computer user interface has come a long way since the early days of the computer. This has not always been for the best. The iMac screen below shows a good example of UI design. This is a very usable and fast interface. The Finder allows you to find applications easily and also navigate the … Read more

Some very useful Gnome Shell extensions to make this desktop better for the advanced user.

Advanced settings in UserMenu: Advanced Settings in UserMenu. Frippery shut down menu: Frippery Shut Down Menu. Add a proper shutdown option to the user menu. Dash to Dock: Dash to Dock. This gives you a lovely dock on the side of your screen. Just like in the Macintosh operating system interface. There are useful configuration settings to change … Read more

How to add a new user in Linux and some other useful networking commands.

This is the sequence of events when you are creating a new user. Use the sudo adduser jsmith command to add a new user named jsmith. After that, you can type other information to identify your user and then set a password to secure their account. jason@Yog-Sothoth:~$ sudo adduser jsmith Adding user `jsmith’ … Adding … Read more

Cloud based user accounts backup in Windows 8 Enterprise; how Linux could benefit from this sort of infrastructure.

I have just installed the Windows 8 Enterprise 90 day trial and first impressions are quite positive. After logging into Windows the first time using your Windows Live account your desktop is setup and then you are presented with a Metro interface. But when you format and re-install the operating system you only need to … Read more

Viewing information about your user on Linux.

View information about your user on a Linux system The groups command displays the list of groups that your user is a member of. [neo@deusexmachina]:~> groups neo cdrom floppy audio dip video plugdev bluetooth scanner netdev[neo@deusexmachina]:~> groups neo cdrom floppy audio dip video plugdev bluetooth scanner netdev Using the id command will display a more … Read more