Fix:
In the Firefox address bar, type:
about:configYeah, yeah, you'll be careful. Set:
gfx.color_management.modeto 0 (zero, if you can't decide whether that's "oh" or "zero"). My setting that had not been working was 2.
My experiences and solutions when porting over to Linux. Written for intermediate computer users. Hope my own troubleshooting helps you!
about:configgfx.color_management.modeapt-get install imagemagickNow to combine your images into a multi-page PDF:
cd /home/computername/picsConvert the JPG files to PDF:
convert *.jpg foo.pdfIt will create a multi-page PDF, named foo.pdf in the directory you're in. Just make up whatever name you like for "foo". The pages will be arranged by alphabetical order (the filename). This method will use ALL of the jpg's in the directory. If you aren't familiar with using wildcards (*, ?) or are unfamiliar with command line, I recommend making a directory that only has the files you want to use, and put it in your /home directory so it's easy to find. If you want to only include files that differ by a letter, you can use something like
convert sample?.jpg samplepkg.pdf...which will only place files like sample1.jpg, sample2.jpg, sample3.jpg in the pdf.
convert *.pdf multi.pdf"*" means everything, so keep in mind it will use every pdf in that directory to make a new one... even if it's multipage!
Applications --> Accessories --> Terminal. In the box type the following command:-
lsb_release -a
man -k list directoryLists commands and a very brief description of each. Lots of enlightening stuff here.
sudo aptitude updateLink in title as always, or here.
sudo aptitude install kubuntu-desktop
sudo aptitude install xubuntu-desktop
$sudo apt-get install msttcorefontsThis will give you the core fonts, but if there are other TrueType fonts that you want installed, it is as easy as copying the font files to the ~/.fonts/ directory.
$sudo fc-cache -fv
Thanks to Carthik's Ubuntu blog.