• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Liutauras Vilda
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Devaka Cooray
  • Paul Clapham
Saloon Keepers:
  • Scott Selikoff
  • Tim Holloway
  • Piet Souris
  • Mikalai Zaikin
  • Frits Walraven
Bartenders:
  • Stephan van Hulst
  • Carey Brown

What does pppoeconf mean?

 
Ranch Hand
Posts: 10198
3
Mac PPC Eclipse IDE Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Guya,

What does pppoeconf mean? Also what is the need for sudo command in Ubuntu? Is it something specific to Ubuntu distro or is a Linux thing?
 
Saloon Keeper
Posts: 28401
210
Android Eclipse IDE Tomcat Server Redhat Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
"pppoeconf" means something like "point-to-point protocol over ethernet configuration". It's a fairly specialized program that is sometimes used as part of the process of defining how a machine networks.

"sudo" is a very useful command, and it's not just for Ubuntu or even Linux - it's found in many Unix[TM] and Unix-like systems.

One of the biggest problems with Microsoft Windows is that too much work gets done with administrator security rights. Anytime you have elevated security privileges, malware has an opening. Linux tends to be safer, since the proper way to operate as a Linux user is NOT to login as an administrator. However, sometimes you briefly need administrator privileges to do things like install a program.

Instead of forcing you to log out and log in as an administrator or to switch user accounts (using the "su" program), the "sudo" (superuser do) program allows you to run just the one application with elevated rights. To keep malware at bay, sudo will prompt you for your password first.

Sudo is also very good for power users. The /etc/sudoers file can be configured to permit only certain users or groups to have sudo abilities and to limit what "dangerous" apps they are permitted to run.
 
Joe San
Ranch Hand
Posts: 10198
3
Mac PPC Eclipse IDE Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You have been really helpful. Thanks!
 
Looky! I'm being abducted by space aliens! Me and this tiny ad!
Smokeless wood heat with a rocket mass heater
https://woodheat.net
reply
    Bookmark Topic Watch Topic
  • New Topic