LinuxQuestions.org
Help answer threads with 0 replies.
Go Back   LinuxQuestions.org > Forums > Non-*NIX Forums > General > LinuxQuestions.org Member Intro
User Name
Password
LinuxQuestions.org Member Intro New to LinuxQuestions.org? Been a long time member but never made a post? Introduce yourself here.

Notices

Reply
 
LinkBack Search this Thread
Old 06-30-2012, 07:18 PM   #1
truecipher
LQ Newbie
 
Registered: Jun 2012
Location: NC
Distribution: Debian /Mint/Scientific
Posts: 20
Blog Entries: 1

Rep: Reputation: Disabled
Newbie here, willing to work hard to learn...


I'm done with windows, but I need linux to be able to do a few things for me before I give it up completely.

Currently testing/learning Debian Gnome 6.0.3 i386 installed on one old laptop from the network .iso, and Linux Mint Cinnamon 13 32bit on another laptop from a live CD when I don't boot that one to XP SP3. I have previously loaded and explored Puppy linux 5.2.5, Knopix 6.2 and Nimble X. Also learning the Mint Cinnamon 64 bit from live CD on my 64 bit desktop...

I have a bit under my belt, can use the terminal, access root when I need to and install software from software centers using package mangers. I use several browsers, notably Firefox, but haven't used an NNTP or Mail client yet in linux...

The things I cannot do, much less fathom, are:

1. Install software downloaded from the web. can find the DLed item, but cannot seem to make them work. A flash update drove me nuts...

2. I need a PDF editor that will do pagination and metadata edting like Acrobat 9 does in windows.

I write a little code for windows for my own amusement, would like to do that for Linux, but mastering the OS must come first.

That's my story, and I'm sticking to it. A search of the forum re: PDF didn't turn up what I need to know. Will continue reading older posts, and if anyone has ideas for me, they are greatly appreciated.

Last edited by truecipher; 06-30-2012 at 07:20 PM. Reason: add
 
Old 06-30-2012, 07:27 PM   #2
TobiSGD
Moderator
 
Registered: Dec 2009
Location: Hanover, Germany
Distribution: Slackware
Posts: 12,226
Blog Entries: 2

Rep: Reputation: 2883Reputation: 2883Reputation: 2883Reputation: 2883Reputation: 2883Reputation: 2883Reputation: 2883Reputation: 2883Reputation: 2883Reputation: 2883Reputation: 2883
Hi and welcome to LQ and Linux.

1. You normally don't do that. Updates and installs are handled by your package manager. There are ways to install software from source, but this is not something I would recommend to a newbie.
2. Sorry, don't know.

About programming: Which programming language are you using?
 
Old 06-30-2012, 07:39 PM   #3
cascade9
Senior Member
 
Registered: Mar 2011
Location: Brisneyland
Distribution: Debian, aptosid
Posts: 2,921

Rep: Reputation: 643Reputation: 643Reputation: 643Reputation: 643Reputation: 643Reputation: 643
To get flash from the debian repos (the easiest way) you need to add 'non-free' to your etc/apt/sources.list. Then all you have to do is run-

apt-get install flashplugin-nonfree

Pdftk should do at least some of what you want.
 
Old 06-30-2012, 08:09 PM   #4
truecipher
LQ Newbie
 
Registered: Jun 2012
Location: NC
Distribution: Debian /Mint/Scientific
Posts: 20
Blog Entries: 1

Original Poster
Rep: Reputation: Disabled
TobiSGD: Thanks. C/java/justbasic/VBasic and compiling HTML

cascade9: add 'non-free' as in deb http://ftp.us.debian.org/debian/ non-free ?
Using gedit. Years ago played with vi, any recommedations on a good newbie editor?
Have Pdftk, don't see pagination, but I will look harder at it...

TY to both of you, appreciate the tips...
 
Old 06-30-2012, 08:31 PM   #5
TobiSGD
Moderator
 
Registered: Dec 2009
Location: Hanover, Germany
Distribution: Slackware
Posts: 12,226
Blog Entries: 2

Rep: Reputation: 2883Reputation: 2883Reputation: 2883Reputation: 2883Reputation: 2883Reputation: 2883Reputation: 2883Reputation: 2883Reputation: 2883Reputation: 2883Reputation: 2883
Java will be the same on Linux and if you programmed in VisualBasic.Net you can use Mono for that.
Good editor? I prefer Vim, for programming also Geany is fine, but anybody will say something different here.
 
Old 06-30-2012, 08:34 PM   #6
truecipher
LQ Newbie
 
Registered: Jun 2012
Location: NC
Distribution: Debian /Mint/Scientific
Posts: 20
Blog Entries: 1

Original Poster
Rep: Reputation: Disabled
TobiSGD: Thank you again!
 
Old 06-30-2012, 08:35 PM   #7
towheedm
Member
 
Registered: Sep 2011
Location: Trinidad & Tobago
Distribution: Debian Squeeze
Posts: 556

Rep: Reputation: 110Reputation: 110
The non-free repository is listed by default in your /etc/apt/sources.list file:
Code:
deb http://ftp.us.debian.org/debian/ squeeze main non-free contrib
To install flash from the terminal:
Code:
sudo apt-get update
sudo apt-get install flashplugin-nonfree
You can also use the Synaptic GUI package manager. From the Main Menu: Preferences > Administration > Synaptic Package Manager. Enter 'flashplugin' in the search box, select the package and click on Apply.

Gedit is a good GUI text editor for a newbie. Emacs is also good and has both a CLI and GUI version. For strict CLI, there's vi/vim and an extremely simple to use nano. This is not as powerful as vi and/or vim though.
 
Old 06-30-2012, 08:39 PM   #8
truecipher
LQ Newbie
 
Registered: Jun 2012
Location: NC
Distribution: Debian /Mint/Scientific
Posts: 20
Blog Entries: 1

Original Poster
Rep: Reputation: Disabled
towheedm: Not listed by default in mine, but will add. TY for the info...

Code:
sudo apt-get update
sudo apt-get install flashplugin-nonfree
from the terminal give me syntax errors

Last edited by truecipher; 06-30-2012 at 08:48 PM.
 
Old 06-30-2012, 08:59 PM   #9
towheedm
Member
 
Registered: Sep 2011
Location: Trinidad & Tobago
Distribution: Debian Squeeze
Posts: 556

Rep: Reputation: 110Reputation: 110
Quote:
Originally Posted by truecipher View Post
towheedm: Not listed by default in mine, but will add. TY for the info...

Code:
sudo apt-get update
sudo apt-get install flashplugin-nonfree
from the terminal give me syntax errors
Are those errors from apt-get update or apt-get install? What are the exact errors?

Post your /etc/apt/sources.list file.

Last edited by towheedm; 06-30-2012 at 09:02 PM.
 
Old 06-30-2012, 09:15 PM   #10
truecipher
LQ Newbie
 
Registered: Jun 2012
Location: NC
Distribution: Debian /Mint/Scientific
Posts: 20
Blog Entries: 1

Original Poster
Rep: Reputation: Disabled
From terminal and root terminal:

Code:
cipher@debian:~$ sudo apt-get update
>>> /etc/sudoers: syntax error near line 19 <<<
>>> /etc/sudoers: syntax error near line 28 <<<
>>> /etc/sudoers: syntax error near line 29 <<<
>>> /etc/sudoers: syntax error near line 31 <<<
>>> /etc/sudoers: syntax error near line 32 <<<
>>> /etc/sudoers: syntax error near line 33 <<<
>>> /etc/sudoers: syntax error near line 34 <<<
sudo: parse error in /etc/sudoers near line 19
sudo: no valid sudoers sources found, quitting
cipher@debian:~$ sudo apt-get install flashplugin-nonfree
>>> /etc/sudoers: syntax error near line 19 <<<
>>> /etc/sudoers: syntax error near line 28 <<<
>>> /etc/sudoers: syntax error near line 29 <<<
>>> /etc/sudoers: syntax error near line 31 <<<
>>> /etc/sudoers: syntax error near line 32 <<<
>>> /etc/sudoers: syntax error near line 33 <<<
>>> /etc/sudoers: syntax error near line 34 <<<
sudo: parse error in /etc/sudoers near line 19
sudo: no valid sudoers sources found, quitting
cipher@debian:~$ ^C
cipher@debian:~$

Code:
#

# deb cdrom:[Debian GNU/Linux 6.0.3 _Squeeze_ - Official i386 NETINST Binary-1 20111008-19:55]/ squeeze main

# deb cdrom:[Debian GNU/Linux 6.0.3 _Squeeze_ - Official i386 NETINST Binary-1 20111008-19:55]/ squeeze main

deb http://ftp.us.debian.org/debian/ squeeze main contrib non-free

deb http://security.debian.org/ squeeze/updates main contrib non-free

# squeeze-updates, previously known as 'volatile'
deb http://ftp.us.debian.org/debian/ squeeze-updates main
deb-src http://ftp.us.debian.org/debian/ squeeze-updates main

Last edited by truecipher; 06-30-2012 at 09:19 PM. Reason: add
 
Old 06-30-2012, 10:44 PM   #11
towheedm
Member
 
Registered: Sep 2011
Location: Trinidad & Tobago
Distribution: Debian Squeeze
Posts: 556

Rep: Reputation: 110Reputation: 110
The errors are from sudo and not apt-get. I'm not familiar with the sudo errors, but I'm guessing you don't have sudo installed/configured. You can also run the command with the su command, enter root's password when prompted.
Code:
su -c "apt-get update && apt-get install flashplugin-nonfree"
You can get help from most commands with:
Code:
command --help
Or for more detailed help, check the manpages for the command:
Code:
man command
For help on using the manpages:
Code:
man man
 
Old 06-30-2012, 11:45 PM   #12
TobiSGD
Moderator
 
Registered: Dec 2009
Location: Hanover, Germany
Distribution: Slackware
Posts: 12,226
Blog Entries: 2

Rep: Reputation: 2883Reputation: 2883Reputation: 2883Reputation: 2883Reputation: 2883Reputation: 2883Reputation: 2883Reputation: 2883Reputation: 2883Reputation: 2883Reputation: 2883
Quote:
Originally Posted by truecipher View Post
From terminal and root terminal:

Code:
cipher@debian:~$ sudo apt-get update
>>> /etc/sudoers: syntax error near line 19 <<<
>>> /etc/sudoers: syntax error near line 28 <<<
>>> /etc/sudoers: syntax error near line 29 <<<
>>> /etc/sudoers: syntax error near line 31 <<<
>>> /etc/sudoers: syntax error near line 32 <<<
>>> /etc/sudoers: syntax error near line 33 <<<
>>> /etc/sudoers: syntax error near line 34 <<<
sudo: parse error in /etc/sudoers near line 19
sudo: no valid sudoers sources found, quitting
cipher@debian:~$ sudo apt-get install flashplugin-nonfree
>>> /etc/sudoers: syntax error near line 19 <<<
>>> /etc/sudoers: syntax error near line 28 <<<
>>> /etc/sudoers: syntax error near line 29 <<<
>>> /etc/sudoers: syntax error near line 31 <<<
>>> /etc/sudoers: syntax error near line 32 <<<
>>> /etc/sudoers: syntax error near line 33 <<<
>>> /etc/sudoers: syntax error near line 34 <<<
sudo: parse error in /etc/sudoers near line 19
sudo: no valid sudoers sources found, quitting
cipher@debian:~$ ^C
cipher@debian:~$

Code:
#

# deb cdrom:[Debian GNU/Linux 6.0.3 _Squeeze_ - Official i386 NETINST Binary-1 20111008-19:55]/ squeeze main

# deb cdrom:[Debian GNU/Linux 6.0.3 _Squeeze_ - Official i386 NETINST Binary-1 20111008-19:55]/ squeeze main

deb http://ftp.us.debian.org/debian/ squeeze main contrib non-free

deb http://security.debian.org/ squeeze/updates main contrib non-free

# squeeze-updates, previously known as 'volatile'
deb http://ftp.us.debian.org/debian/ squeeze-updates main
deb-src http://ftp.us.debian.org/debian/ squeeze-updates main
You have tried to configure sudo and haven't done it in the correct way using visudo. visudo checks after editing the sudoers file for configuration errors. Of course you can use su on Debian systems (if you have not disabled the root account during installation), but you should really fix that.
 
Old 07-03-2012, 05:37 PM   #13
ribymi
LQ Newbie
 
Registered: Jul 2012
Posts: 1

Rep: Reputation: Disabled
Quote:
Originally Posted by truecipher View Post
I'm done with windows, but I need linux to be able to do a few things for me before I give it up completely.

Currently testing/learning Debian Gnome 6.0.3 i386 installed on one old laptop from the network .iso, and Linux Mint Cinnamon 13 32bit on another laptop from a live CD when I don't boot that one to XP SP3. I have previously loaded and explored Puppy linux 5.2.5, Knopix 6.2 and Nimble X. Also learning the Mint Cinnamon 64 bit from live CD on my 64 bit desktop...

I have a bit under my belt, can use the terminal, access root when I need to and install software from software centers using package mangers. I use several browsers, notably Firefox, but haven't used an NNTP or Mail client yet in linux...

The things I cannot do, much less fathom, are:

1. Install software downloaded from the web. can find the DLed item, but cannot seem to make them work. A flash update drove me nuts...

2. I need a PDF editor that will do pagination and metadata edting like Acrobat 9 does in windows.

I write a little code for windows for my own amusement, would like to do that for Linux, but mastering the OS must come first.

That's my story, and I'm sticking to it. A search of the forum re: PDF didn't turn up what I need to know. Will continue reading older posts, and if anyone has ideas for me, they are greatly appreciated.
I was the same as you when I first started with Slackware Linux (Which actually wasn't too long ago). It took me a week to figure out what I was doing wrong with installing the flash player and downloading files was out of the question. After some time though, these things will become almost second nature to you. I wish you good luck in all your Linux endeavors and if you need any information on anything about Slackware or have any problem there are plenty of people here that are more than willing to help you with your problem.
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

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
Trackbacks are Off
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Newbie, here to ask and learn benwang LinuxQuestions.org Member Intro 2 09-29-2010 04:49 AM
Learn about hard drives MTK358 General 10 02-18-2010 02:05 AM
Why *NIX is so hard to learn PTrenholme General 7 02-28-2005 11:50 AM
How hard is it to learn gentoo? Easier than RH? silverbullet Linux - Newbie 3 11-29-2003 02:22 PM
any programmers who had to fight hard to learn to program? Flotilla Programming 14 01-21-2003 06:49 AM


All times are GMT -5. The time now is 11:44 PM.

Main Menu
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
identi.ca: @linuxquestions
Facebook: @linuxquestions
Open Source Consulting | Domain Registration