Edoropolis Emporium
Welcome,
Guest
. Please
login
or
register
.
January 20, 2025, 06:53:40 pm
1 Hour
1 Day
1 Week
1 Month
Forever
Login with username, password and session length
Search:
Advanced search
50652
Posts in
1818
Topics by
2629
Members
Latest Member:
DerrickHau
Edoropolis Emporium
General Discussion
Tech & Video Gaming
Linux and free software
0 Members and 1 Guest are viewing this topic.
« previous
next »
Pages:
1
2
[
3
]
4
5
Author
Topic: Linux and free software (Read 66767 times)
Blackcat
Nyanki
Posts: 1324
My site is so old it doesnt know Facebook!
Re: Linux and free software
«
Reply #40 on:
April 29, 2006, 06:50:19 pm »
Ipod nano and Linux
Anyone could please tell me what programs I need to use the Ipod nano on Linux? And no, Im not going to buy a Mac, they are really expensive here!.
Logged
Threaux
NTOU Leader
Nyanki
Posts: 322
Re: Linux and free software
«
Reply #41 on:
April 30, 2006, 02:16:30 pm »
Don't use an I-Pod!
But if you must...
http://www.cavecanen.org/linux/ipod/
Thats the most in depth artice I've seen on the subject. There are several programs listed within the article.
http://www.gtkpod.org/about.html
has a GUI and everything and claims to work with Nano as well.
Logged
Blackcat
Nyanki
Posts: 1324
My site is so old it doesnt know Facebook!
Re: Linux and free software
«
Reply #42 on:
May 01, 2006, 06:49:01 pm »
Thanks, I will almost anything to avoid using Windows XP in one of my PCs.
Logged
Alistair Erie
Couldn't think of an excuse for having a Princess Vi avatar
Rescue Team
Posts: 139
Re: Linux and free software
«
Reply #43 on:
May 07, 2006, 05:36:58 pm »
I really don't understand compiling. Can any of you help me out.
There's really no point to Linux if you can't compile anything.
Logged
Daisensei
KNT eps translator
Posts: 1136
Kyou no washi wa kakkou iinou!
Re: Linux and free software
«
Reply #44 on:
May 08, 2006, 12:11:08 am »
Quote from: Alistair Erie on May 07, 2006, 05:36:58 pm
I really don't understand compiling. Can any of you help me out.
There's really no point to Linux if you can't compile anything.
It depends on what you want to compile, but in general you must enter the main directory of the source code (
cd [directory]
), perform some configuration (may be a shell script,
make configure
command, or manually editing a
Makefile
), and finally compile the program (with
cc
or
gcc
command,
make [target]
command or a shell script). Most of the source code have a
README
file that explains how to do the proper compilation.
For example, I use the following steps to compile the
mplayer
program.
1) cd [root directory]
(changes to source root directory)
2) export DEB_BUILD_OPTIONS="options"
(configures the compiling options)
3) fakeroot debian/rules binary
(compiles the program)
4) dpkg -i ../mplayer_1.0cvs_i386.deb
(install the program compiled as .DEB - Debian package file)
In the example above, it was supposed that all the programs and libraries necessaries to perform the compilation are properly installed in your computer.
If you understood nothing that was said here, ask me a more specific question (what program? what Linux distro?) and I'll try to help.
Logged
ゴクゴクゴク ファ!
Alistair Erie
Couldn't think of an excuse for having a Princess Vi avatar
Rescue Team
Posts: 139
Re: Linux and free software
«
Reply #45 on:
May 08, 2006, 01:20:07 am »
Actually what always gets me is that I'll do the steps in the README correctly (or at least what I think is correct), but the computer
always
says that I have files missing. Why do you think that happens?
I'll try to get you an example some time.
(I'm sorry that I wasn't more specific with my question.)
Logged
Daisensei
KNT eps translator
Posts: 1136
Kyou no washi wa kakkou iinou!
Re: Linux and free software
«
Reply #46 on:
May 08, 2006, 10:22:52 am »
I can think in the following reasons which cause the compile failure of that kind.
The source code you have is broken, or missing some files. You must ask politely to the programmers or the publishers for a fixed source code; or wait for a new release of the program.
Your system lacks some necessary program for compiling, like the compiler iteself, preprocessors, linkers, assemblers,
make
and so on. In such case you must install all the required files.
The program which will be copiled uses some library that is absent. A library is a peace of code shared by many programs, so there is no need to repeat it inside all programs and this saves memory and programming labour. The command
ldd <
executable binary
>
shows all the libraries the executable are linked to. For example,
libc6
is a library which almost all programs are linked to. When the program you are trying to compile requires some library, you must install it. However some distributions (e.g. Debian) split the library in two parts, one required for only running programs (e.g. libc6 package), and other to make programs that use it (e.g. libc6-dev package); both must be installed.
Some file isn't being distributed with the source code, owing to legal issues, and must be got somewhere else. This is common in emulators, where ROM are required but which cannot be distributed by the programmers/publishers.
To figure out what is happening, it's useful to have the output of the shell recorded in a text file. This is possible with the command
script <
text file name
>
; after the end of all compilation process, typing
logout
will close the command and the text file remain in the HD.
When you have more specific question, you may ask back here or in private. Glad to help you.
Logged
ゴクゴクゴク ファ!
Alistair Erie
Couldn't think of an excuse for having a Princess Vi avatar
Rescue Team
Posts: 139
Re: Linux and free software
«
Reply #47 on:
May 08, 2006, 07:22:04 pm »
Thanks a lot!
Logged
Blackcat
Nyanki
Posts: 1324
My site is so old it doesnt know Facebook!
Re: Linux and free software
«
Reply #48 on:
June 07, 2006, 12:23:38 pm »
I need a sequential image viewer (like infaview, I mean...a program that lets you see the next image just pressing a key) for Linux, any suggestions please?.
Logged
Threaux
NTOU Leader
Nyanki
Posts: 322
Re: Linux and free software
«
Reply #49 on:
June 07, 2006, 01:24:23 pm »
http://www.xnview.com/
xnView lets you do that and it can view over 400 different image file formats as well.
Logged
Blackcat
Nyanki
Posts: 1324
My site is so old it doesnt know Facebook!
Re: Linux and free software
«
Reply #50 on:
September 14, 2006, 10:52:09 am »
Thanks, so you know any video conversion utility for Linux?
Logged
Threaux
NTOU Leader
Nyanki
Posts: 322
Re: Linux and free software
«
Reply #51 on:
September 14, 2006, 11:46:03 am »
http://www.thugsatbay.com/tab/?q=tab-video-converter-encoder
The T@b software people make a good one for free, their free video editor for linux is also pretty good.
Logged
Blackcat
Nyanki
Posts: 1324
My site is so old it doesnt know Facebook!
Re: Linux and free software
«
Reply #52 on:
September 19, 2006, 06:35:28 pm »
Thanks, so any program to use Rar format on Linux? My Ubuntu doesn’t support it, since is not free.
Logged
Threaux
NTOU Leader
Nyanki
Posts: 322
Re: Linux and free software
«
Reply #53 on:
September 19, 2006, 10:57:08 pm »
That's tricky, but you have a few options, 1st you can use RAR for linux
http://fileforum.betanews.com/detail/1053350629/2
It's shareware and should work for you. Just use the unrar command.
or try the Xarchiver frontend if you want to go the GTK+2 route once you have command line rar support.
http://xarchiver.xfce.org/
or try the 7zip for linux and see if that does it.
http://www.7-zip.org/download.html
Logged
Blackcat
Nyanki
Posts: 1324
My site is so old it doesnt know Facebook!
LINUX AND DREAMCAST?
«
Reply #54 on:
March 20, 2007, 05:31:22 pm »
So I tried a linux live CD for dreamcast and got bored after 20 minutes of my dreamcast tryng to boot it, know one that works?
Logged
Alistair Erie
Couldn't think of an excuse for having a Princess Vi avatar
Rescue Team
Posts: 139
Re: Linux and free software
«
Reply #55 on:
March 20, 2007, 07:16:29 pm »
Where'd you get the keyboard, hard drive, etc. for that?
I had been looking.
Quote from: Blackcat on March 20, 2007, 05:31:22 pm
So I tried a linux live CD for dreamcast and got bored after 20 minutes of my dreamcast tryng to boot it, know one that works?
Well if you really want a unix dreamcast (which would rock by the way), you could try installing NetBSD.
It's not live, but I think it'd work.
Logged
Threaux
NTOU Leader
Nyanki
Posts: 322
Re: Linux and free software
«
Reply #56 on:
March 20, 2007, 09:34:30 pm »
Try DSL (D*mn Small Linux) and see if that works. It has a live cd and is so small the whole OS can run within system RAM.
http://www.damnsmalllinux.org/
«
Last Edit: March 20, 2007, 09:43:11 pm by Threaux
»
Logged
adam808
Nyanki
Posts: 371
Jyarei monsutaa
Re: Linux and free software
«
Reply #57 on:
March 21, 2007, 04:15:22 pm »
Does DSL have an X server installed and I just forgot to start it?
Logged
思い出のショコラ...
Threaux
NTOU Leader
Nyanki
Posts: 322
Re: Linux and free software
«
Reply #58 on:
March 21, 2007, 10:48:37 pm »
Yeah, DSL should have X server support built right in.
Logged
adam808
Nyanki
Posts: 371
Jyarei monsutaa
Re: Linux and free software
«
Reply #59 on:
April 03, 2007, 04:34:41 pm »
Yeah, the VMware image just didn't automatically load the GUI. The real boot CD does.
For people new to Unix-like OSes, I'd have to recommend PC-BSD (it's based off of FreeBSD) since it has some features that make it easier at first. It has something like the install shield, which uses PBI files you double-click on. It's a good learning OS for Unix I think. I'm not sure about drivers yet, I only tried it in a virtual machine not on real hardware. I'm thinking of trying it on an extra hard drive soon.
Logged
思い出のショコラ...
Pages:
1
2
[
3
]
4
5
« previous
next »
Jump to:
Please select a destination:
-----------------------------
Edoropolis.org
-----------------------------
=> Forum Rules and Announcements
-----------------------------
Samurai Pizza Cats
-----------------------------
=> General SPC Discussion
=> Teyandee! Discussion
===> Torrent Downloads
=> Critic's Corner
===> SPC Episode Reviews Board
===> KNT Episode Reviews Board
=> Game Projects
=> Fan Works
===> They Said What? - Archive
=> SPC Merchandise
=> EE Technical & Edoropolis.org Hosting Support
-----------------------------
Role Playing Boards
-----------------------------
=> SPC Role Playing Group
=> Little Tokyo High
-----------------------------
International Community Boards
-----------------------------
=> 日本語のキャッ党忍伝てやんでえの掲示板 Japanese KNT/SPC Discussion
=> Foro de discusión en español de Los Gatos Samurai / SPC / KNT
=> Lista de discussão em português sobre Samurai Pizza Cats/SPC e KNT
-----------------------------
General Discussion
-----------------------------
=> Off-Topic Discussion
=> Anime & Cartoons
=> Eto Rangers
=> Tech & Video Gaming