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

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

How to add a custom menu to Fluxbox to list your favorite applications.

Adding a custom menu to Fluxbox is very easy, this is how. The default ~/.fluxbox/fluxbox-menu file looks like this, it reads the /etc/X11/fluxbox/fluxbox-menu file to create the root menu for Fluxbox. [begin] (fluxbox)   [include] (/etc/X11/fluxbox/fluxbox-menu) [end][begin] (fluxbox) [include] (/etc/X11/fluxbox/fluxbox-menu) [end] But if you add a simple submenu to it like this, then you get … Read more