Sponsored Content
Full Discussion: How do you make a superuser?
Operating Systems Solaris How do you make a superuser? Post 303003470 by kkeevv on Thursday 14th of September 2017 07:41:03 AM
Old 09-14-2017
Oracle How do you make a superuser?

I have just installed Solaris 11. When I turn the computer on I don't want to see a login in screen. I want to automatically be logged in as "SUPERUSER".

My research tells me someone is going to tell me that's not wise or safe. I'm not interested in security advice. If someone I know is smart enough to defeat my bios password they are more than welcome to do whatever they want to the system. And If I or someone else screw the system up, how bad could it be? Worse case, I wipe the HDD and re-install.

I want "SU" in the GUI so I can copy/past files to any director I choose. I am new to Linux and don't have a good understanding of all the terminal commands. I'm having to research the the simplest tasks, ie "mv", "ls"... At this point I don't even know if I can use wild cards with Linux commands. I need a white board on the wall so I have all the commands in front of me.

My issue is the same as one I posted in the Ubuntu thread. I want to get wifi configured on a PC that has no connection to the Internet. All my searches lead to the same answer. They all give commands to type in the terminal that require internet access. ie "user$ git http//.something..."

I have manually downloaded the driver for my wifi device to a USB drive and migrated it to the desktop of the target PC. I followed instruction to "make all" "install all" and failed. The readme file said something about "DKMS", so I downloaded that and unpacked on the desk top. Looking the files over I determined what directories these files go in. A few belong in /etc. The file manager won't let me past to this directory.

Using the terminal in the dir where these files are located I tried ~$ "sudo mv filename /etc/filename". After putting in PW it said directory not found. Then, after typing enough keystrokes to write a short story, and using 'sudo' I managed to move one file into the /etc directory. And now I have forgotten how I did it. It's like re-inventing the wheel again and again. It would be much easier if I could cut and paste.

I have no choice but to learn Linux. I salvaged these PC's from the waste collection center and can't afford to put Win OS's on them. I plan on becoming a Linux expert in time. I taught and consider myself a expert dos user. But it didn't happen over night. So if you can help me with this you 'll be my best friend Smilie
 

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

superuser password change

how can i change the superuser password? the admin left the company, and we want to change the password. to gain su access, i use: # su - password:***** (old password) then, using passwd command it changes my own login password, not the root?? (this is not trying to block anybody's... (4 Replies)
Discussion started by: apalex
4 Replies

2. UNIX for Advanced & Expert Users

No user able to login except root(superuser)

Hi All, Oracle 8.0 database is running on SCO-UNIXWARE 7.0 Operating system. Some how ORACLLE DATABASE has crashed. After rebooting the PC only the SUPER USER could login. No other user is able to login. we need ORACLE user to start the DATABASE again. It is asking for the password, after... (2 Replies)
Discussion started by: konda
2 Replies

3. UNIX for Dummies Questions & Answers

runing a script as superuser

My first post: in /etc/rc2.d i have a startup script: Script1. if you run #>scirpt1 stop/start from any user other than root you will get u must be supper user to run this script. eventhough the rights are 777. Question: how can i get my user_a be able to run this script to stop and start it... (2 Replies)
Discussion started by: bcheaib
2 Replies

4. UNIX for Dummies Questions & Answers

SuperUser

Can I create a superuser account in scoadmin? If not how do I do it via command line (0 Replies)
Discussion started by: maconte
0 Replies

5. Shell Programming and Scripting

to run sql as superuser

hi All, In my script I want to run some drop and select statements in the same host as a different user.I am inputting password for the superuser from the user who will be executing the script. ie , I would be greatfull to you experts if you could suggest me how to proceed. (4 Replies)
Discussion started by: Sreejith_VK
4 Replies

6. Solaris

superuser without prompting for pswd.

I have a korn shell script (main.sh) owned by unix account "A". I want to execute certain lines in the script using another user "B" (with user "B" login profile). I need to do this way for multiple lines to be executed using different unix accounts in main.sh. I was trying to use "su -... (3 Replies)
Discussion started by: Ashok_107
3 Replies

7. Solaris

Solaris superuser login

Hi! Can someone please tell me how to log-in to Solaris as a superuser or as a root? I have tried using "root" as a username, and my superuser password i had set in the terminal for the log-in password but it says "Roles can only be assumed by authorized users". "Permission denied." I'm... (1 Reply)
Discussion started by: CarlosP
1 Replies

8. UNIX for Dummies Questions & Answers

Superuser

Hello! I found this on net: This is the ``prompt''. If you entered you username, or your password incorrectly, you will be greeted by: Login incorrect localhost login: Don't panic, try again. Likely you either mis-typed either your login name, or your password. Try again. You're not... (2 Replies)
Discussion started by: pinklemon
2 Replies

9. UNIX for Dummies Questions & Answers

Adding plesk superuser from SSH

I'm trying to add a superuser (admin) to plesk from SSH (I have root access). Can this be done? I have search over the web but did not find any solution to my problem. My version is Plesk 9.3 (0 Replies)
Discussion started by: galford
0 Replies
LPT(4)							   BSD Kernel Interfaces Manual 						    LPT(4)

NAME
lpt -- generic printer device driver SYNOPSIS
device ppc device ppbus device lpt DESCRIPTION
The current lpt driver is the port of the original lpt driver to the ppbus(4) system. One purpose of this port was to allow parallel port sharing with other parallel devices. Secondly, inb()/outb() calls have been replaced by ppbus function calls. lpt is now arch-independent thanks to the ppbus interface. See ppbus(4) for more info about the ppbus system. The parallel port bus is allocated by lpt when the printer device is opened and released only when the transfer is completed: either when the device is closed or when the entire buffer is sent in interrupt driven mode. The driver can be configured to be either interrupt-driven, or to poll the printer. Ports that are configured to be interrupt-driven can be switched to polled mode by using the lptcontrol(8) command. Depending on your hardware, extended capabilities may be configured with the lptcontrol(8) command. With an ECP/ISA port, you can take advantage of FIFO and DMA. In order to retrieve printer info from /dev/lpt0, just apply the cat command to the device. If the printer supports IEEE1284 nibble mode and has data to send to the host, you will get it. FILES
/dev/lpt0 first parallel port driver SEE ALSO
ppbus(4), ppc(4), lptcontrol(8) HISTORY
This driver replaces the functionality of the lpa driver, which is now defunct. BUGS
There are lots of them, especially in cheap parallel port implementations. It is only possible to open a lpt port when a printer is connected and on-line, making it impossible to run lptcontrol(8) when there is no printer connected. This driver could still stand a rewrite. BSD
February 14, 1999 BSD
All times are GMT -4. The time now is 12:52 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy