LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Arch
User Name
Password
Arch This Forum is for the discussion of Arch Linux.

Notices


Reply
  Search this Thread
Old 09-21-2015, 11:31 AM   #31
IwannaSlack
Member
 
Registered: Jul 2008
Location: Maryland
Distribution: Failing at Linux
Posts: 125

Original Poster
Rep: Reputation: 15

I have a question which is more popular for arch linux open office or office libre. Next do i have to install each program individually example word, then powerpoint then this then that. I find that when install programs no one ever makes a suite that has everything inlcuded I understand why it's indivudal but if the entire thing is maybe only 5gs and you have a 1td hardrive it is not going to kill you.
 
Old 09-21-2015, 11:37 AM   #32
Head_on_a_Stick
Senior Member
 
Registered: Dec 2014
Location: London, England
Distribution: Debian stable (and OpenBSD-current)
Posts: 1,187

Rep: Reputation: 285Reputation: 285Reputation: 285
https://lists.archlinux.org/pipermai...ch/018819.html

Code:
# pacman -Syu libreoffice-fresh
Or:
Code:
# pacman -Syu libreoffice-still
https://wiki.archlinux.org/index.php?title=LibreOffice
 
1 members found this post helpful.
Old 09-21-2015, 03:27 PM   #33
IwannaSlack
Member
 
Registered: Jul 2008
Location: Maryland
Distribution: Failing at Linux
Posts: 125

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by Head_on_a_Stick View Post
https://lists.archlinux.org/pipermai...ch/018819.html

Code:
# pacman -Syu libreoffice-fresh
Or:
Code:
# pacman -Syu libreoffice-still
https://wiki.archlinux.org/index.php?title=LibreOffice
I never knew that syu could be usd like that.




I sm looking for a C++ compliler it doesn ot have to be visual studio or anything but sometihng reasonable. It would seem like it would be easy to find. I want to use it for my class.

Last edited by IwannaSlack; 09-21-2015 at 03:34 PM.
 
Old 09-21-2015, 03:38 PM   #34
Head_on_a_Stick
Senior Member
 
Registered: Dec 2014
Location: London, England
Distribution: Debian stable (and OpenBSD-current)
Posts: 1,187

Rep: Reputation: 285Reputation: 285Reputation: 285
Yeah, pacman rocks

The command flags can be combined with crude scripting, for example to remove orphaned packages (and their configuration files):
Code:
# pacman -Rns $(pacman -Qqdt)
https://wiki.archlinux.org/index.php...haned_packages
 
Old 09-22-2015, 04:08 AM   #35
TobiSGD
Moderator
 
Registered: Dec 2009
Location: Germany
Distribution: Whatever fits the task best
Posts: 17,148
Blog Entries: 2

Rep: Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886
Quote:
Originally Posted by IwannaSlack View Post
I sm looking for a C++ compliler it doesn ot have to be visual studio or anything but sometihng reasonable. It would seem like it would be easy to find. I want to use it for my class.
Visual Studio is not a compiler, but an IDE (that uses the compiler of the Windows SDK, but can be configured to use other compilers). If you are really looking for just a compiler go for GCC or Clang/LLVM, if you instead are seeking an IDE, there are many available, for example Eclipse, Code::Blocks, Anjuta, ... . Many people just use Emacs or Vim (with plugins) as IDEs.
 
Old 09-23-2015, 09:41 AM   #36
IwannaSlack
Member
 
Registered: Jul 2008
Location: Maryland
Distribution: Failing at Linux
Posts: 125

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by TobiSGD View Post
Visual Studio is not a compiler, but an IDE (that uses the compiler of the Windows SDK, but can be configured to use other compilers). If you are really looking for just a compiler go for GCC or Clang/LLVM, if you instead are seeking an IDE, there are many available, for example Eclipse, Code::Blocks, Anjuta, ... . Many people just use Emacs or Vim (with plugins) as IDEs.
I require both.

I am trying to be self-sufficent and completely detach myself from windows. Seems like there is some random hurtle but I enjoy the challange but not always the time or the knowlege. Today for example I found out we are going to be using databaes and we need to use oracle and mysql. I don't know if it has compatibility just yet. I am thinking i need to get a VM working and install windows as a easy solution to some of these small inconviences.

Last edited by IwannaSlack; 09-23-2015 at 09:51 AM.
 
Old 09-24-2015, 04:08 AM   #37
TobiSGD
Moderator
 
Registered: Dec 2009
Location: Germany
Distribution: Whatever fits the task best
Posts: 17,148
Blog Entries: 2

Rep: Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886
Quote:
Originally Posted by IwannaSlack View Post
we need to use oracle and mysql. I don't know if it has compatibility just yet.
Then go to their website and look for it. Both, Oracle and MySQL, are very well supported on Linux, in fact Oracle even distributes their own Linux version, based on RHEL.
 
Old 09-25-2015, 11:27 AM   #38
IwannaSlack
Member
 
Registered: Jul 2008
Location: Maryland
Distribution: Failing at Linux
Posts: 125

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by TobiSGD View Post
Then go to their website and look for it. Both, Oracle and MySQL, are very well supported on Linux, in fact Oracle even distributes their own Linux version, based on RHEL.
I can't seem to pull it up on pacman.
 
Old 09-25-2015, 11:45 AM   #39
TobiSGD
Moderator
 
Registered: Dec 2009
Location: Germany
Distribution: Whatever fits the task best
Posts: 17,148
Blog Entries: 2

Rep: Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886
Quote:
Originally Posted by IwannaSlack View Post
I can't seem to pull it up on pacman.
MySQL:
https://wiki.archlinux.org/index.php/MySQL

Oracle:
https://wiki.archlinux.org/index.php/Oracle

When running Arch looking for information in their Wiki is the first thing you should do.
 
1 members found this post helpful.
Old 12-22-2016, 02:22 PM   #40
Rickkkk
Senior Member
 
Registered: Dec 2014
Location: Montreal, Quebec and Dartmouth, Nova Scotia CANADA
Distribution: Arch, AntiX, ArtiX
Posts: 1,364

Rep: Reputation: 511Reputation: 511Reputation: 511Reputation: 511Reputation: 511Reputation: 511
Quote:
Originally Posted by TobiSGD View Post
... When running Arch looking for information in their Wiki is the first thing you should do.
.... >>> SO <<< true. Very important advice ... There is next to nothing I have not been able to figure out by starting with the Arch Wiki. It is VERY comprehensive and almost always well-written.

Cheers,
 
  


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
[SOLVED] Little help when you have time multi-arch kUbuntu 14.04 Drakeo Ubuntu 0 08-17-2014 09:44 PM
Switching to Arch for the first time, what's something every Arch newbie should know? cheese1756 Arch 8 03-10-2012 10:07 AM
[SOLVED] Incorrect Time Zone Displaying in Arch toynbee Linux - Newbie 2 03-06-2010 06:18 AM
Change time in Arch Linux + LXDE casperh Linux - Newbie 4 02-13-2009 03:33 PM
Problem with time on Arch speakfree31 Linux - Newbie 2 03-14-2007 08:00 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Arch

All times are GMT -5. The time now is 02:23 AM.

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