Overclock.net › Forums › Software, Programming and Coding › Operating Systems › Linux, Unix › Installing Flash Player 8 on Damn Small Linux?
New Posts  All Forums:Forum Nav:

Installing Flash Player 8 on Damn Small Linux?

post #1 of 10
Thread Starter 
Any ideas how can i do this on termial? I'm very new to Linux
PianoNoire
(13 items)
 
  
CPUMotherboardGraphicsRAM
Intel Core 2 Quad Q8200S DFI LANPARTY JR P45-T2RS Sparkle 9800GT SX98GT512D3L-NM 8GB RAM 
Hard DriveOSPowerCase
Western Digital Black 500GB Microsoft Windows 7 Enermax EG285SX-VB Piano Black Media Center MicroATX 
  hide details  
Reply
PianoNoire
(13 items)
 
  
CPUMotherboardGraphicsRAM
Intel Core 2 Quad Q8200S DFI LANPARTY JR P45-T2RS Sparkle 9800GT SX98GT512D3L-NM 8GB RAM 
Hard DriveOSPowerCase
Western Digital Black 500GB Microsoft Windows 7 Enermax EG285SX-VB Piano Black Media Center MicroATX 
  hide details  
Reply
post #2 of 10
I believe for flash it comes with an installer script, so you just need to run that. You can type ls to see whats all in that directory and cd to change directorys.
I beleive the install srcipt is called install-flashplayer.
BlackMesa
(13 items)
 
  
CPUMotherboardGraphicsRAM
Phenom II x6 Gigabyte EVGA 9800GT 8gb G.Skill 
Hard DriveOSKeyboard
60gb SSD + 3 2gb WD Archlinux + MINIX 3 Filco w/ blue cherries 
  hide details  
Reply
BlackMesa
(13 items)
 
  
CPUMotherboardGraphicsRAM
Phenom II x6 Gigabyte EVGA 9800GT 8gb G.Skill 
Hard DriveOSKeyboard
60gb SSD + 3 2gb WD Archlinux + MINIX 3 Filco w/ blue cherries 
  hide details  
Reply
post #3 of 10
Thread Starter 
thanks, had a look at flashplayer9_install_i386_061107.rpm file and not sure how to unmount it but doesn't seem to say anything about the install script. Maybe you could help me to understand more?
PianoNoire
(13 items)
 
  
CPUMotherboardGraphicsRAM
Intel Core 2 Quad Q8200S DFI LANPARTY JR P45-T2RS Sparkle 9800GT SX98GT512D3L-NM 8GB RAM 
Hard DriveOSPowerCase
Western Digital Black 500GB Microsoft Windows 7 Enermax EG285SX-VB Piano Black Media Center MicroATX 
  hide details  
Reply
PianoNoire
(13 items)
 
  
CPUMotherboardGraphicsRAM
Intel Core 2 Quad Q8200S DFI LANPARTY JR P45-T2RS Sparkle 9800GT SX98GT512D3L-NM 8GB RAM 
Hard DriveOSPowerCase
Western Digital Black 500GB Microsoft Windows 7 Enermax EG285SX-VB Piano Black Media Center MicroATX 
  hide details  
Reply
post #4 of 10
Ah, if its an RPM then it'd be something like this: rpm –ivh packagename.rpm

if that doesn't work then look at the manual: man rpm

Do RPMs even work on Damn Small Linux?
BlackMesa
(13 items)
 
  
CPUMotherboardGraphicsRAM
Phenom II x6 Gigabyte EVGA 9800GT 8gb G.Skill 
Hard DriveOSKeyboard
60gb SSD + 3 2gb WD Archlinux + MINIX 3 Filco w/ blue cherries 
  hide details  
Reply
BlackMesa
(13 items)
 
  
CPUMotherboardGraphicsRAM
Phenom II x6 Gigabyte EVGA 9800GT 8gb G.Skill 
Hard DriveOSKeyboard
60gb SSD + 3 2gb WD Archlinux + MINIX 3 Filco w/ blue cherries 
  hide details  
Reply
post #5 of 10
Thread Starter 
Quote:
Originally Posted by dangerousHobo View Post
Do RPMs even work on Damn Small Linux?
Sorry for the delay, not sure if it does work (i'm at work, can't test it now) but been researching and found that DSL is based on Knoppix. what package does it support?
PianoNoire
(13 items)
 
  
CPUMotherboardGraphicsRAM
Intel Core 2 Quad Q8200S DFI LANPARTY JR P45-T2RS Sparkle 9800GT SX98GT512D3L-NM 8GB RAM 
Hard DriveOSPowerCase
Western Digital Black 500GB Microsoft Windows 7 Enermax EG285SX-VB Piano Black Media Center MicroATX 
  hide details  
Reply
PianoNoire
(13 items)
 
  
CPUMotherboardGraphicsRAM
Intel Core 2 Quad Q8200S DFI LANPARTY JR P45-T2RS Sparkle 9800GT SX98GT512D3L-NM 8GB RAM 
Hard DriveOSPowerCase
Western Digital Black 500GB Microsoft Windows 7 Enermax EG285SX-VB Piano Black Media Center MicroATX 
  hide details  
Reply
post #6 of 10
.deb files, you'll want to go back to the flash site and get the other package, the one with a .tar.gz or .tar.bz2 extension.

If you can't right click on them and get an 'extract' option then you'll have to do it in a terminal.
for .tar.gz extensions:
tar -zxvf package.tar.gz

for .tar.bz2:
tar -xvjf package.tar.bz2

then there will be a new directory created, so move into it
cd flash_something

then:
sh install-flashplayer

If that name above is not correct then type ls to see all of the files. It'll be something close to that.
BlackMesa
(13 items)
 
  
CPUMotherboardGraphicsRAM
Phenom II x6 Gigabyte EVGA 9800GT 8gb G.Skill 
Hard DriveOSKeyboard
60gb SSD + 3 2gb WD Archlinux + MINIX 3 Filco w/ blue cherries 
  hide details  
Reply
BlackMesa
(13 items)
 
  
CPUMotherboardGraphicsRAM
Phenom II x6 Gigabyte EVGA 9800GT 8gb G.Skill 
Hard DriveOSKeyboard
60gb SSD + 3 2gb WD Archlinux + MINIX 3 Filco w/ blue cherries 
  hide details  
Reply
post #7 of 10
Thread Starter 
Quote:
Originally Posted by dangerousHobo View Post
.deb files, you'll want to go back to the flash site and get the other package, the one with a .tar.gz or .tar.bz2 extension.

If you can't right click on them and get an 'extract' option then you'll have to do it in a terminal.
for .tar.gz extensions:
tar -zxvf package.tar.gz

for .tar.bz2:
tar -xvjf package.tar.bz2

then there will be a new directory created, so move into it
cd flash_something

then:
sh install-flashplayer

If that name above is not correct then type ls to see all of the files. It'll be something close to that.
thanks for that, it said it's installed but when i use the site like youtube, it said i need the plugin still? if you need to see the script I've done for installing it, I have no idea how to copy the script from the terminal to paste it on here.
PianoNoire
(13 items)
 
  
CPUMotherboardGraphicsRAM
Intel Core 2 Quad Q8200S DFI LANPARTY JR P45-T2RS Sparkle 9800GT SX98GT512D3L-NM 8GB RAM 
Hard DriveOSPowerCase
Western Digital Black 500GB Microsoft Windows 7 Enermax EG285SX-VB Piano Black Media Center MicroATX 
  hide details  
Reply
PianoNoire
(13 items)
 
  
CPUMotherboardGraphicsRAM
Intel Core 2 Quad Q8200S DFI LANPARTY JR P45-T2RS Sparkle 9800GT SX98GT512D3L-NM 8GB RAM 
Hard DriveOSPowerCase
Western Digital Black 500GB Microsoft Windows 7 Enermax EG285SX-VB Piano Black Media Center MicroATX 
  hide details  
Reply
post #8 of 10
You need the mozilla plugin to use flash with firefox
It goes to eleven
(13 items)
 
  
CPUMotherboardGraphicsRAM
E6300 DS3 EVGA 8600GTS 2GB XMS2 DDR2-800 
Hard DriveOSMonitorKeyboard
1.294 TB Arch Linux/XP Samsung 226bw Eclipse II 
PowerCaseMouse
Corsair 520HX Lian-Li v1000B Plus G7 
  hide details  
Reply
It goes to eleven
(13 items)
 
  
CPUMotherboardGraphicsRAM
E6300 DS3 EVGA 8600GTS 2GB XMS2 DDR2-800 
Hard DriveOSMonitorKeyboard
1.294 TB Arch Linux/XP Samsung 226bw Eclipse II 
PowerCaseMouse
Corsair 520HX Lian-Li v1000B Plus G7 
  hide details  
Reply
post #9 of 10
Thread Starter 
Quote:
Originally Posted by rabidgnome229 View Post
You need the mozilla plugin to use flash with firefox
If you mean install it via mozilla as well, I tried it and it still doesn't work. I think it's something to do with me trying out Damn Small Linux on VMware Player? It is writeable or not? The reason why I'm doing it in VMware Player so I could try everything out and if everything work on it, I will be making the switch from Windows to Linux.
PianoNoire
(13 items)
 
  
CPUMotherboardGraphicsRAM
Intel Core 2 Quad Q8200S DFI LANPARTY JR P45-T2RS Sparkle 9800GT SX98GT512D3L-NM 8GB RAM 
Hard DriveOSPowerCase
Western Digital Black 500GB Microsoft Windows 7 Enermax EG285SX-VB Piano Black Media Center MicroATX 
  hide details  
Reply
PianoNoire
(13 items)
 
  
CPUMotherboardGraphicsRAM
Intel Core 2 Quad Q8200S DFI LANPARTY JR P45-T2RS Sparkle 9800GT SX98GT512D3L-NM 8GB RAM 
Hard DriveOSPowerCase
Western Digital Black 500GB Microsoft Windows 7 Enermax EG285SX-VB Piano Black Media Center MicroATX 
  hide details  
Reply
post #10 of 10
I dunno what you mean by install it via mozilla. There is a specific package called mozilla-flash-plugin or something like that. Look at ubuntuguide.org - it's for ubuntu and not DSL, but it will tell you the name of the package you will need
It goes to eleven
(13 items)
 
  
CPUMotherboardGraphicsRAM
E6300 DS3 EVGA 8600GTS 2GB XMS2 DDR2-800 
Hard DriveOSMonitorKeyboard
1.294 TB Arch Linux/XP Samsung 226bw Eclipse II 
PowerCaseMouse
Corsair 520HX Lian-Li v1000B Plus G7 
  hide details  
Reply
It goes to eleven
(13 items)
 
  
CPUMotherboardGraphicsRAM
E6300 DS3 EVGA 8600GTS 2GB XMS2 DDR2-800 
Hard DriveOSMonitorKeyboard
1.294 TB Arch Linux/XP Samsung 226bw Eclipse II 
PowerCaseMouse
Corsair 520HX Lian-Li v1000B Plus G7 
  hide details  
Reply
New Posts  All Forums:Forum Nav:
  Return Home
  Back to Forum: Linux, Unix
Overclock.net › Forums › Software, Programming and Coding › Operating Systems › Linux, Unix › Installing Flash Player 8 on Damn Small Linux?