I’ve been trying to set up my Epson L395 printer on my Ubuntu 16.04 LTS system and I’m seriously running into some roadblocks here. I’ve spent a good chunk of my afternoon searching for guidance online, but most of the instructions seem either outdated or just don’t apply to the version of Ubuntu I’m using. It’s beyond frustrating because I really need to get this printer up and running for some important documents.
So, here’s the deal: I’ve plugged in the printer, and I can see it recognized in the settings. However, when I try to install the drivers, I hit a wall. I downloaded the drivers from the Epson site, but the installation process is not straightforward. There are a bunch of files, and I’m not sure if I’m supposed to be installing all of them or just a few specific ones. Plus, there are instructions for different versions of Linux, and it’s all feeling pretty overwhelming.
I tried using the terminal to install some packages, but I think I might be missing some dependencies because it throws an error every time I attempt to run the install command. I’m familiar-ish with terminal commands, but I’m definitely not an expert. I’ve read a couple of forum posts where people suggested using CUPS, and while I’ve checked that out, I still can’t seem to configure the printer correctly.
If anyone has successfully set up the Epson L395 on Ubuntu 16.04 LTS, I would love to hear exactly what steps you took! Did you use a specific version of the driver? Any terminal commands that you found useful? Or maybe there was something in the settings that you had to change? I’m at the point where I’m even considering dusting off my old Windows laptop just to get this printing done, and I really don’t want to go that route. Any help would be super appreciated! Thanks!
Getting the Epson L395 Running on Ubuntu 16.04
So, I feel ya! Setting up printers on Linux can sometimes be a total headache. I’ve had my fair share of frustrations too, so here’s a step-by-step guide that might help you out.
1. Grab the Right Driver
First off, you want to make sure you have the right driver. Go to the Epson support site and look for the Epson L395 driver for Linux. Look for the .deb files for Ubuntu; it should be a straightforward package.
2. Install Required Dependencies
Open up the terminal (you can do this by pressing
Ctrl + Alt + T
) and run these commands to make sure everything you need is installed:3. Install the Driver
Now, navigate to the location where you downloaded the driver. Assuming it’s in your Downloads folder, you can do the following:
If you see any missing dependencies errors, you can fix them by running:
4. Configure CUPS
Next, you’ll want to configure your printer using CUPS. In the terminal, type:
Then, go to http://localhost:631 in your web browser. Click on “Administration” and then “Add Printer.” You should see your Epson L395 listed. Select it and follow the prompts to set it up.
5. Test Print
Once everything’s installed, try printing a test page from CUPS to see if it worked!
Still Having Issues?
If it’s still not working, feel free to ask around on forums like Ask Ubuntu or the Ubuntu subreddit; sometimes a fresh pair of eyes helps! And don’t give up, you got this!
Wishing you luck, and trust me, you’re not alone in this printing battle!
To set up your Epson L395 printer on Ubuntu 16.04 LTS, start by ensuring that you have the correct drivers. First, visit the Epson support page specifically for the L395 to download the latest Linux drivers. You’ll likely see a .deb package and potentially other files contained within a compressed archive. For installation, focus on the .deb file; you can install it via the terminal with the command
sudo dpkg -i.deb
. If the installation fails due to missing dependencies, you can resolve them by runningsudo apt-get install -f
, which will automatically find and install the necessary packages. Make sure CUPS (Common Unix Printing System) is installed and running by executingsudo apt install cups
and starting it withsudo systemctl start cups
.Once the drivers are installed, access the CUPS web interface by navigating to
http://localhost:631
in your web browser. From here, click on “Administration” and then “Add Printer.” You should see your Epson L395 listed among available printers. Select it and configure the settings as needed. If you encounter issues, make sure the printer is turned on and connected via USB. Additionally, double-check the printer’s status and settings in the Ubuntu “Printers” settings. If any errors occur during printing, review the CUPS error logs by runningcat /var/log/cups/error_log
in the terminal for troubleshooting. This step-by-step guide should help you get your printer up and running without resorting to another operating system.