LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - General
User Name
Password
Linux - General This Linux forum is for general Linux questions and discussion.
If it is Linux Related and doesn't seem to fit in any other forum then this is the place.

Notices


Reply
  Search this Thread
Old 04-12-2021, 12:30 PM   #1
dsl_
Member
 
Registered: Jul 2008
Location: Denmark
Distribution: Debian
Posts: 71

Rep: Reputation: 0
What's the first thing you do when you take ownership of a *NIX-account?


I'm sure there're old threads in this vein, but I'm bored and looking for new input (I feel like I've read the entire interwebs which is obviously ludicrous) so rather than revive an old thread I'm gonna start a new one. If it's against the rules by all means delete it.

I've always used Debian. I suspect for historic reasons only. What I mean by that is that Debian is the distro that, to me, seemed friendly at the time. I vividly remember actually buying a 1000+ page old-timey book about Linux in general 20 years ago. A book that quickly deteriorated (it being a paperback. ) but I learned the package-manager commands (I'm one of those people who like to do everything from the CLI. It's not that I don't appreciate a GUI, it's just what are you gonna do the day the GUI fails?). I find myself most comfortable on Debian and more in control if I know what to do from the command line.

This seems to me to have been a good move as it's my understanding that Ubuntu - being based on Debian, no? - is the most user-friendly of the distros right now. I may be wrong; I'm sure a lot of other Linux-fans have good reasons for using other distros. I dabbled in Mepis once but I've been out of the loop for too long to know the status of that one (a quick wiki-search gives me the impression that it's a dead heRring).

But, what I do when I find myself with an account on a POSIX system, or indeed, with a root account (and yes, I know the Ubuntu philosphy on that point ) is to install "ddate", and "fortune" and edit .bashrc along these lines:

Code:
uname -a
echo
ddate
echo
fortune
echo
The prompt doesn't really concern me that much.

If I'm on a system with X (maybe connecting with x2go) I install rxvt-unicode and make sure I have a sexy transparent CLI so I can see whatever desktop background picture I find sexy at the time.



[EDIT:]
This should really go in the sticky at the top:

LYNX can sometimes be a real lifesaver when you're stuck without X and need your "fellow" geeks. I guess installing "lynx" would be up there as one of my first actions. Together with "screen" and "irssi".
[/EDIT]

What are your POSEXY idiosyncrazies ?


Regards,
Søren.

Last edited by dsl_; 04-12-2021 at 04:07 PM.
 
Old 04-12-2021, 11:57 PM   #2
Michael Uplawski
Senior Member
 
Registered: Dec 2015
Posts: 1,620
Blog Entries: 40

Rep: Reputation: Disabled
I must ignore some aspects of your post, as I cannot get them into the context that your subject-line imposes (“to make abstraction” turns out to be a direct translation of « faire abstraction » in French, which I do not understand either...). Even in plain German I cannot get all of them into one coherent answer-post. But all that I wrote until here, is off-topic. Where does it get you?

You have tried 2 distributions and conclude that for you, Ubuntu is the “most user-friendly of the distros right now”. Leave it that way, it does not hurt.

When I have an account on a POSIX system, I will ask myself first, who had given me that account and to which purpose. All that follows depends on the response to this question.
 
Old 04-13-2021, 12:07 AM   #3
evo2
LQ Guru
 
Registered: Jan 2009
Location: Japan
Distribution: Mostly Debian and CentOS
Posts: 6,724

Rep: Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705
Depends on what the account is for. But if doing any real work there I'd typically setup dotfiles with homeshick and if spending a lot of time there, setup myrepos.

Evo2.
 
Old 04-16-2021, 04:01 PM   #4
rnturn
Senior Member
 
Registered: Jan 2003
Location: Illinois (SW Chicago 'burbs)
Distribution: openSUSE, Raspbian, Slackware. Previous: MacOS, Red Hat, Coherent, Consensys SVR4.2, Tru64, Solaris
Posts: 2,797

Rep: Reputation: 550Reputation: 550Reputation: 550Reputation: 550Reputation: 550Reputation: 550
Quote:
Originally Posted by dsl_ View Post
But, [B]what I do when I find myself with an account on a POSIX system, or indeed, with a root account (and yes, I know the Ubuntu philosphy on that point ) is to install "ddate", and "fortune" and edit .bashrc along these lines:

<snip>
At first I thought you were asking what would one do if they were "inheriting" a POSIX account---as in previously used account. My response would have been: "Issue `groups' to see what you might have special access to and, by all means, tread carefully".

For a brand new account: I tend to create all the subdirectories I expect I'll be using under $HOME (bin, devel, docs, etc, include, lib, log, tmp, and others like that), tweak my PATH to look at my "bin" directory, define some aliases I prefer (or load them from a tar archive or USB drive), setup a ".forward" file. Other things will be defined once some real work begins.

(Great timing for this question. I'll be starting a new project soon and ought to get a tar archive ready containing my favored aliases, scripts, and so on, to load onto a new laptop... once I get Cygwin installed, that is.)

Cheers...
 
Old 04-17-2021, 03:14 AM   #5
fatmac
LQ Guru
 
Registered: Sep 2011
Location: Upper Hale, Surrey/Hants Border, UK
Distribution: Mainly Devuan, antiX, & Void, with Tiny Core, Fatdog, & BSD thrown in.
Posts: 5,473

Rep: Reputation: Disabled
Change the passwords for root & your user - install mc & mpg123, (if they aren't already installed) - then Firefox, cause that's what I'm comfortable using - add my music - then maybe some other programs as I find a need for them.
 
Old 04-20-2021, 05:07 AM   #6
hazel
LQ Guru
 
Registered: Mar 2016
Location: Harrow, UK
Distribution: LFS, AntiX, Slackware
Posts: 7,559
Blog Entries: 19

Rep: Reputation: 4445Reputation: 4445Reputation: 4445Reputation: 4445Reputation: 4445Reputation: 4445Reputation: 4445Reputation: 4445Reputation: 4445Reputation: 4445Reputation: 4445
The first thing I always do is put in some aliases (e.g. ls = ls --color, rm = rm -i). With Debian and derivatives, I had a set of standard "apt-x" aliases that gave me access to basic dpkg/deb commands for listing contents of packages, getting info on a package, or finding out where an orphan file belonged. Fortunately with Slackware that's not necessary as the package management system provides all that just by using ls and grep.

Last edited by hazel; 04-20-2021 at 05:20 AM.
 
Old 04-21-2021, 07:18 AM   #7
rtmistler
Moderator
 
Registered: Mar 2011
Location: USA
Distribution: MINT Debian, Angstrom, SUSE, Ubuntu, Debian
Posts: 9,879
Blog Entries: 13

Rep: Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930
Besides "log in"?

I do extremely little tuning, or customizing. Doing those things take time and effort to maintain. I find I can use any system because I understand how to get around without any shortcuts or aliases.
 
1 members found this post helpful.
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Root ownership vs wheel ownership StupidNewbie Linux - Security 2 08-08-2012 12:52 PM
new eide HD, no nix will take. GRUB error PML Linux - Newbie 2 03-03-2009 09:58 AM
What does it take to be a *Nix administrator? cygnus-x1 General 8 09-30-2007 12:30 PM
is it legitimate and allowed and can be done to make another user account set uid and gid to null 0 to make another root account with different name and possibly not damage the debian system creating and using that new account BenJoBoy Linux - Newbie 12 01-29-2006 10:02 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - General

All times are GMT -5. The time now is 04:47 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration