Fixing the Mess of Logging into Account2 on Linux Fedora2

  • Thread starter Thread starter djeipa
  • Start date Start date
  • Tags Tags
    Linux
AI Thread Summary
In Fedora 2, users may encounter a login issue with KDE where a message regarding a problem with the local domain appears before the main screen. This often relates to the hosts file located in the /etc directory. To resolve this, users should edit the hosts file to ensure it includes the line "127.0.0.1 localhost.localdomain." If the issue persists, users can also check their computer's IP address and add it to the hosts file. Additionally, users might face connectivity issues where one computer can ping another, but not vice versa. This could be due to settings that prevent responses to pings. For file sharing between computers, using terminal commands like smbmount is recommended for more stable results compared to graphical tools. The command structure for mounting shared drives includes specifying the username and password, and users can refer to the manual with "man mount" for detailed instructions.
djeipa
Messages
47
Reaction score
0
I set up 2 accoutns in Linux Fedora2 , with account1 I can log in just fine but with account2, I can also log in but before KDE's main screen appears, a message shows up *i have problem with localdomain.domain ...file in /etc/* (I can't remember the whole messagfe but something like that).

do you know how to fix this problem ? its fine but kind of mess, at least I think so.
 
Computer science news on Phys.org
You're going to have to get the exact message.

Did you create the new user on the command line or using the kde tool?
 
djeipa said:
I set up 2 accoutns in Linux Fedora2 , with account1 I can log in just fine but with account2, I can also log in but before KDE's main screen appears, a message shows up *i have problem with localdomain.domain ...file in /etc/* (I can't remember the whole messagfe but something like that).

do you know how to fix this problem ? its fine but kind of mess, at least I think so.

does it talk about a hosts file?
 
Yes, computergeek guesses conrrectly, how can i stop it from appearing everytime I log in ?
 
djeipa said:
Yes, computergeek guesses conrrectly, how can i stop it from appearing everytime I log in ?

open up a terminal and go to /etc and open the hosts file up using your favorite terminal editor. then add the line

127.0.0.1 localhost.localdomain

if that is already there, open up another terminal and type ifconfig and then write down your computer's IP address.

then on the next open line in the hosts file, put:

<ipaddress> localhost.localdomain
 
Thank you, thank you...so so much, I have another problem

Do you know why computer A can ping computer B but computer B can't ping computer A ? Firewalls on or off in this local cable sharing are not a problem. Just now that I can't do things like setting up [\\computerAName\ASharedFolder] from computer B's sharing widzard anymore. How can i fix this problem ? Thanks
 
There can be a lot of reasons. For instance, you can set computer B up to not respond to pings, so it simply just devours the packets , but yes I think you're sort of thinking the right thing. To mount a shared drive on linux I always use mount from the terminal, if you do ~# smbmount then it will come up with the info needed to use mount and to specify samba and all that , I tend to do everything from the terminal that I can before turning to wizards / tools , just because it tends to have more stable results.

you can also do
# man mount
I think its like mount -t smbfs -o username=uname,pass=password //computerinlowercase/shareincasesensitive /directory/tomountit

if you don't do the whole -o thing then it will just say Password? .. if there isn't a pass just hit enter
 

Similar threads

Back
Top