| Welcome to the Christian Guitar Forum. | Welcome to Christian Guitar, the world's largest Christian guitar resource and forum community where over 150,000 Christian music fans from around the world come to discuss all Christian music, living the Christian life, current events, etc. in over 3,000,000 posted discussions!
You are currently viewing our boards as a guest which gives you limited access to view most discussions, articles and photo galleries. By joining our FREE community you will have access to post topics, communicate privately with other members (PM), blog about your Christian journey, suggest and share guitar tabs, see LESS forum advertisements, upload photos in your own photo album and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!
If you have any problems with the registration process or your account login, please contact contact support. |
05-20-2006, 12:46 PM
|
#46 | | 6000+ posts? Lame.
Joined: Jul 2002 Location: Nashville Posts: 6,245
| Oh, btw, I got it fixed. I couldn't find anything based off of your advice, but on another forum for SuSE, they pointed out exactly what I needed to do. So thanks. |
| |
05-20-2006, 07:26 PM
|
#47 | | so much
Joined: Feb 2001 Posts: 20,736
| Out of curiousity, what was it that fixed it?
__________________ 
"(a) Marriage in this state shall consist only of the union of one man and one woman.
(b) This state or a political subdivision of this state may not create or
recognize any legal status identical or similar to marriage. Texas Constitution, Article I, Section 32" |
| |
05-20-2006, 10:13 PM
|
#48 | | 6000+ posts? Lame.
Joined: Jul 2002 Location: Nashville Posts: 6,245
| Essentially, what you said. I just had to find what and where to put the info I needed. I just had to configure my wireless card with Yast in Suse 10.1 to get it to work, and now no problems. |
| |
05-23-2006, 10:35 AM
|
#49 | | ...
Joined: Jul 2004 Location: North-central Indiana Posts: 3,488
| Quote: |
Originally Posted by zekthedeadcow linux has a useful terminal... I could:
gnomefoot->graphics->gThumImageviewer->click on image->image-resize-> ...ant then realize I can't batch render anything... or
in console type:
resizeallimages -j
200
and 30 minutes later I have a directory full of renamed jpg thumbnails all 200px wide, scaled, compressed at 70% | I'm curious. I did some googling and couldn't find much on it -- what program did you use?
__________________ |
| |
05-23-2006, 12:10 PM
|
#50 | | Registered User
Joined: Sep 2003 Posts: 451
| it's a shell script I found and put in my /bin directory.
#!/bin/sh
# Name: resizeallimgs
# Purpose: resize all jpg or png images in present directory to another sized jpg
# Written by: Rene
# CopyLeft, 2005
# Uses: convert and display commands from ImageMagick
# Syntax: resizeallimgs -j OR -p OR resizeallimgs -h / --help for help
# Example: resizeallimgs -j converts jpgs in directory to resized jpgs
# Example: resizeallimgs -p converts pngs in directory to resized jpgs
# provide help for this script
function useage {
echo -----------------------------------------
echo useage: resizeallimgs -j"|"-p "("jpg or png")"
echo help: resizeallimgs -h "/" resizeallimgs --help
echo creates new jpg files in this directory called '<'filename'>'_thumb.jpg
echo pre-existing images are not changed
echo user prompted for WIDTH of thumbnail image - in pixels - Example: 200
echo thumbnail is scaled proportionately to input dimension
echo " "
echo after resizing you can view a composite image of all resized images
echo answer "'"y"'" or "'"n"'" "("without quotes")" to view a composite of resized images created in the directory
echo Notes: can take some time to display a large number of images
echo " right click on composite display to see next composite page if it exists"
echo " composite display can be saved as a single image and more by left clicking on composite window"
echo -----------------------------------------
echo
}
if [ $1 = "-h" ]; then
useage
exit
fi
if [ $1 = "--help" ]; then
useage
exit
fi
echo "Enter the WIDTH of new images (ex:200)"
read response
if [ $1 = '-j' ]; then
echo JPG images being resized
ls -1 *.jpg | sed "s/\(.*\)\.jpg/\1.jpg \1_thumb.jpg/" |xargs -n 2 convert -resize $response -quality 100 -compress JPEG
fi
if [ $1 = '-p' ]; then
echo PNG images being resized to JPGs
ls -1 *.png | sed "s/\(.*\)\.png/\1.png \1_thumb.jpg/" |xargs -n 2 convert -resize $response -quality 60 -compress JPEG
fi
# Ask if user wants to view a composite of all new jpg images
echo "Do you want to display all thumbnails created in this directory?(y/n)"
read displayall
if [ $displayall = "y" ]; then
display 'vid:*_thumb.*'
exit
fi
exit |
| |
05-23-2006, 12:58 PM
|
#51 | | ...
Joined: Jul 2004 Location: North-central Indiana Posts: 3,488
| Sweet, thanks.
Works great.
__________________
Last edited by tht00; 05-23-2006 at 01:08 PM.
|
| |
05-23-2006, 02:48 PM
|
#52 | | Registered User
Joined: Sep 2003 Posts: 451
| be sure to notice the lines where you can edit the settings...
I posted it as jpg to jpg was 100% quality but png was 60% quality... |
| |
05-25-2006, 09:48 PM
|
#53 | | ...
Joined: Jul 2004 Location: North-central Indiana Posts: 3,488
| Quote: |
Originally Posted by zekthedeadcow be sure to notice the lines where you can edit the settings...
I posted it as jpg to jpg was 100% quality but png was 60% quality... | Oh, ok.
I really ought to learn how to do some scripting. It isn't complicated, but it just looks clunky/ugly compared to _real_ programming languages.
__________________ |
| |
05-28-2006, 03:33 PM
|
#54 | | The kitty strikes back
Joined: Mar 2004 Location: NC Posts: 5,543
| After I had the epic battle with getting GNOME to work with my video card, everything else was a breeze. It already had my printer driver. My digital camera worked fine too. |
| |
05-28-2006, 04:51 PM
|
#55 | | 6000+ posts? Lame.
Joined: Jul 2002 Location: Nashville Posts: 6,245
| I had the same epic battle getting my wireless card to work. But I will agree, once compatibility issues are worked out, Linux is pretty nice. I don't see it overthrowing OSX or Windows any time soon, but I could see a rise in popularity. |
| |
05-29-2006, 05:14 AM
|
#56 | | Hula your way out of it
Joined: Apr 2004 Location: Fresno, CA Posts: 1,467
| Is it possible to install linux on a removeable hard drive? If so, how big should I look for? |
| |
05-29-2006, 10:44 AM
|
#57 | | ...
Joined: Jul 2004 Location: North-central Indiana Posts: 3,488
| Quote: |
Originally Posted by Kato Is it possible to install linux on a removeable hard drive? If so, how big should I look for? | Sure -- it should work. It might be tricky getting your BIOS set to boot it properly though.
As far as size, that all depends. On stipped down versions of Linux (something like DSL or Puppy Linux), you could get away with ~5 GB decently. On more modern versions, I'd say no less than 20GB for normal desktop use.
I've got 2 partitions for Linux right now (technically 3, including swap space). One is mounted as root (/) and this is all system file stuff (~5GB filled). My home directory is on another partition (/home), and I've got about 20GB in there filled. (FYI, you don't have to split stuff up at all on different partitions.)
The system + software really shouldn't get much larger than 5GB (minus any large games). 1-2GB of swap space should be plenty (think virtual memory in Windows). So really, then it's up to your preference on how much free space you want and expect to fill up.
20GB should be fine for 'normal' use. More if you plan on putting large amounts of media on it, or simply want the comfort of having extra space. 40GB should be quite nonrestricive, unless you start ripping all your DVDs on it.
Couple questions, Kato -- Do you have any experience with Linux? Are you wanting to install it to try it?
__________________ |
| |
05-29-2006, 01:12 PM
|
#58 | | Hula your way out of it
Joined: Apr 2004 Location: Fresno, CA Posts: 1,467
| Yes. I do have some expierence with Ubuntu. I've been wanting to use it again, but I don't want to partition in my hardrive in my laptop. |
| |
05-29-2006, 02:18 PM
|
#59 | | The kitty strikes back
Joined: Mar 2004 Location: NC Posts: 5,543
| What are some good repositories to add to the default list? I see a bunch of things on packages.ubuntu.com that aren't in my synaptic package manager. Edit: Nevermind, I checked the boxes for the community-maintained repositories. Now I see all I need. |
| |
05-29-2006, 02:31 PM
|
#60 | | ...
Joined: Jul 2004 Location: North-central Indiana Posts: 3,488
| Quote: |
Originally Posted by Kato Yes. I do have some expierence with Ubuntu. I've been wanting to use it again, but I don't want to partition in my hardrive in my laptop. | Ok. Just making sure you had some experience with it before you bought extra hardware. Quote: |
Originally Posted by PatrickStar4491 What are some good repositories to add to the default list? I see a bunch of things on packages.ubuntu.com that aren't in my synaptic package manager. Edit: Nevermind, I checked the boxes for the community-maintained repositories. Now I see all I need. | I just enable the universe and multiverse repositories. I'm guessing that's what you found.
__________________ |
| | |
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | | | | Thread Tools | | | | Display Modes | Linear Mode |
Posting Rules
| You may not post new threads You may not post replies You may not post attachments You may not edit your posts HTML code is On | | | All times are GMT -6. The time now is 02:03 PM. |