LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 12-26-2013, 09:15 PM   #1
robcitizen
LQ Newbie
 
Registered: Dec 2013
Location: at home
Distribution: Mint 13
Posts: 3

Rep: Reputation: Disabled
Question Linux Mint 13 Tutorial Please New to Linux Don't understand a thing about it. Assista


Linux Mint 13 Tutorial Please New to Linux Don't understand a thing about it. Assista
 
Old 12-26-2013, 09:44 PM   #2
MARogue
Member
 
Registered: Jul 2011
Location: USA
Distribution: Kali, ubuntu MATE
Posts: 59

Rep: Reputation: Disabled
Please provide more specific information. This will allow for questions understood and answered in a timely fashion.

Regards
 
Old 12-26-2013, 09:47 PM   #3
MCMLXXIII
Member
 
Registered: Aug 2012
Distribution: [Desktop] Debian Wheezy, [Laptop #1] Ubuntu 12.04, [Laptop #2] openSUSE 13.1, [Netbook] CentOS 6.5
Posts: 60

Rep: Reputation: Disabled
http://community.linuxmint.com/tutorial/search
 
Old 12-28-2013, 04:30 PM   #4
robcitizen
LQ Newbie
 
Registered: Dec 2013
Location: at home
Distribution: Mint 13
Posts: 3

Original Poster
Rep: Reputation: Disabled
install a Brother HL2130 Laser Printer on DLink Router with Print Server USB connection

install a Brother HL2130 Laser Printer on DLink Router with Print Server USB connection
 
Old 12-28-2013, 09:06 PM   #5
erik2282
Member
 
Registered: May 2011
Location: Texas
Distribution: Primarily Deb/Ubuntu, and some CentOS
Posts: 829

Rep: Reputation: 229Reputation: 229Reputation: 229
http://welcome.solutions.brother.com...n.html#HL-2130

here is the driver

---------- Post added 12-28-13 at 09:06 PM ----------

http://welcome.solutions.brother.com...n.html#HL-2130

here is the driver
 
Old 12-29-2013, 02:43 AM   #6
robcitizen
LQ Newbie
 
Registered: Dec 2013
Location: at home
Distribution: Mint 13
Posts: 3

Original Poster
Rep: Reputation: Disabled
Still Don't Understand

Thanx for your help eric. Been there still don't understand which 1 to download ie deb, rpm, cupswrapper or the other one,also dont know how to make it be seen in Mint to enable printing from it.I guess that's 1 of the advantages that Windows has compared to Linux. Regards Rob
 
Old 12-29-2013, 08:37 AM   #7
Knightron
Senior Member
 
Registered: Jan 2011
Location: Australia
Distribution: openSUSE
Posts: 1,465
Blog Entries: 6

Rep: Reputation: 200Reputation: 200Reputation: 200
@robcitizen
Welcome to the world of Linux, and LQ.
You will need to learn new things if you plan on switching your operating system from Windows to Linux, in the same way a person has to learn new things if they're switching to Mac from Windows.
The Linux community is constantly getting new users with issues. We are all volunteers here. We will help you if we can, but we also recommend above anything, teaching your self.
If you have a problem, you are very likely someone has already encounted the same problem in the past, which is why before making a new thread, you should always search your problem at a search engine like Google or Duckduckgo.
If you can't resolve your issue that way then feel free to start a new thread.
When making a new thread to resolve an issue, you must remember that Linux is made up of lots of things that could impact the situation, so always remember to be as detailed as possible and provide any relevant information. Relevant information is stuff like, what Gnu/Linux distribution you're running, and what version it is, ect. Sometimes, we will need more information, this is fine, we will give you the relevant commands to do this if there is one.
You will have to use commands in the command line eventually, it ay not be a dayly thing, but you should definitely not resist it.
Don't forget the manual. A good way to help your learning improve is always use the manual when you use a new command. for example if someone tells you to run 'cat /etc/apt/sources.list'. '/etc/apt/sources.list' is just the location; it's where the command is going to be run. 'cat' is the actual command.
You can use the manual, to find out what it does by running 'man cat'. 'man' is the command to look through the manual.
You might like to take a look at this.
How to Ask Questions the Smart Way

You won't be able to see it if the driver is not installed, this is no different to Windows, so don't start spewing it's an advantage of Windows. If Windows has any advantage in this situation, it is that it has the highest userbase, so the driver installers are built into the machine for Windows to satisfye maximum users; and the other is that Windows has a poor user and permission setup which allows for them drivers to be installed automatically. This makes things easy, but it has a down side of making your Windows system more vulnerable to malware.

So anyway. A program is not installed on Linux the same way a program is installed on Windows, in fact usually it's a lot easier and safer on Linux. This time it isn't going to be as easy as usual though.
To install those drivers which erik2282 has linked to, (and i'm assuming they're the right ones, i really don't know, that's your responsibility to check that) you will need to download the .deb files, if you are running Linux Mint. A .deb file is a package. A package is a part of a program. Sometimes a whole program is only one package; drivers are usually like this.
a .deb package is used in a Gnu/Linux distro which uses the apt package manager. Linux Mint uses apt. apt has two main parts, dpkg and apt-get. We won't be using apt-get here.
Once the .deb file is downloaded, open up your terminal, and type the following command.
Code:
sudo dpkg -i ~/Downloads/*.deb
Make sure that the only .deb files you have in your downloads folder is the driver you downloaded.
You will have to enter your password after doing that command, and then press enter.
I'm going to explain the above command for you, although don't hesitate to use man like i described earlier.
'sudo' is a way for you to gain admin rights on your computer. You will need to run sudo while doing some things. Sudo should NOT be used all the time. That is abusing sudo, and a way to destroy your system and open it up to vulnerabilities.
'dpkg' is the command. dpkg is the low level package manager used in an apt system. You will not have to use dpkg often.
'-i' is an option given to dpkg. Dpkg can do many things, but it needs to be told which one to do. -i tell dpkg to install a file.
'~/Downloads/*.deb' is the directory your driver would likely have been downloaded to. the '~/' is a shortcut in the command line for the directory '/home/<your username>' 'Downloads' is a likely folder you have in your home folder. '*.deb' means every file that ends with '.deb'.

In other words, that command will install every .deb file you have in your Downloads folder; that's why it's important to make sure the driver is the only one there.


Good luck Rob, just let us know if you have any more problems.



Knightron
 
  


Reply



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 Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
LXer: Why I'm excited for Linux Mint 16, even though I don't like Mint LXer Syndicated Linux News 0 10-12-2013 03:02 AM
Don't have a clue about this Linux thing Rainbow_Brite Linux - Newbie 8 10-21-2009 09:42 PM
just don't understand a thing... Steve1981 Linux - Newbie 13 10-19-2009 09:13 AM
I don't understand Linux AT ALL scott123 Linux - Newbie 2 10-28-2006 11:06 PM
[SOLVED] I'm happy but I still don't understand linux filosophem Linux - General 5 11-27-2004 11:29 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 09:03 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