Contenu | Rechercher | Menus

Annonce

Si vous avez des soucis pour rester connecté, déconnectez-vous puis reconnectez-vous depuis ce lien en cochant la case
Me connecter automatiquement lors de mes prochaines visites.

À propos de l'équipe du forum.

nombre réponses : 25

#0 Re : -1 »  probleme avec carte graphique intel 82865G sous Ubuntu 9.04 » Le 09/06/2009, à 23:40

kryss
Réponses : 12

Newbuntu, ça fait quelques semaines que je cherchais un moyen d'installer les effets visuels avec cette carte intel (82865G) et je viens d'y arriver... merci donc! ;-)

#1 Re : -1 »  [HOW TO] adesklets : installation sous Ubuntu Dapper et Edgy » Le 12/07/2006, à 18:46

kryss
Réponses : 96

bon j ai essayé gdesklets, j arrivais pas a mettre un affichages des flux rss sur le bureau (erreur : pas de capteur rss grab, je sais pas ce que ca veut dire et j ai pas compris comment resoudre le probleme). j ai donc decidé de passer a adesklets, je suis ce que vous avez mis en haut pas a pas, c est cool tout marche sauf que j arrive pas a le lancer. comme le monsieur d en haut, Kdenc. j ai installé des desklets avec desklets installer mais comme j arrive pas a lancer adesklets...
bref, je sais pas si quelqu un peut m aider, tout ce que je voulais c etait eviter de passer par liferea ou blam feed reader pour gerer mes flux rss, juste les avoir deja affiché sur le bureau.
inutile de preciser que je suis au bord du gouffre tongue
merci a tous!

#2 Re : -1 »  [HOW TO] adesklets : installation sous Ubuntu Dapper et Edgy » Le 13/07/2006, à 01:06

kryss
Réponses : 96

j ai pas de fichier config.txt mais un newsfeed.py
et le contenu de ce fichier est le suivant :


#! /usr/bin/env python
"""
--------------------------------------------------------------------------------
Copyright (C) 2005 Alessio Carenini <farquaad@users.sourceforge.net>
	for the code
        
Released under the GPL, version 2. 

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to
deal in the Software without restriction, including without limitation the
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
sell copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies of the Software and its documentation and acknowledgment shall be
given in the documentation and software packages that this Software was
used.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.   

--------------------------------------------------------------------------------

RSS/ATOM news feed desklets
Tested on adesklet-0.4.0 with python-2.3.4
Required feedparser.py from www.feedparser.org
Just run this script from its final location on you disk to start the desklet.

--------------------------------------------------------------------------------
"""

#-------------------------------------------------------------------------------
import adesklets
from os import getenv, system
from os.path import join, dirname
import feedparser
import textwrap
#-------------------------------------------------------------------------------
class Config(adesklets.ConfigFile):
	"""
This is newsfeed.py desklet configuration file; for each desklet,
you only have to write down the minimal delay between updates
(in seconds: less than 300 will be ignored), the URL of the feed
and the size of the desklet
Details:
	sizeX,sizeY: width and height
	head_font, head_font_height: font for news title
	item_font, item_font_height: font for news details
	url: rss/atom newsfeed url
	line_spacing: pixels between two lines
	borderX, borderY: area reserved to borders
	interactive: if True, enables highlighting of news details and calling 
		selected browser
	browser: browser to call for viewing selected news
	"""
	cfg_default = { 
		'sizeX':400,
		'sizeY':600,
		'delay':600,
		'url':'http://slashdot.org/index.rss',
		'head_font':'VeraBd',
		'head_font_height':8,
		'head_font_color':'ffff00',
		'item_font':'Vera',
		'item_font_height':8,
		'item_font_color':'02c601',
		'selected_font_color':'ffffff',
		'title_font':'VeraBd',
		'title_font_height':12,
		'title_font_color':'ffe600',
		'line_spacing':5,
		'interactive':False,
		'browser':'firefox',
		'managed':True,
		'borderX':7,
		'borderY':7
		}

	def __init__(self,id,filename):
		adesklets.ConfigFile.__init__(self,id,filename)
    
	def color(self,string):
		colors = [eval('0x%s' % string[i*2:i*2+2]) for i in range(len(string)/2)]
		if (len(colors) != 4): colors += [255]
		return colors
    
#-------------------------------------------------------------------------------
class Events(adesklets.Events_handler):
	def __init__(self, basedir):
		if len(basedir)==0:
			self.basedir='.'
		else:
			self.basedir=basedir
		self.w = None
		self.buffer= None
		self.id= None
		self.delay=None
		self.item_pos=None
		self.selected_item=None
		self.feed=None
		self.modified=None
		self.error_flag=0
		adesklets.Events_handler.__init__(self)
        
	def __del__(self):
		adesklets.Events_handler.__del__(self)
        
	def ready(self):
		# Real initialisation take place here
		self.config=Config(adesklets.get_id(),
		join(self.basedir,'config.txt'))
		if self.config['delay']<300:
			self.config['delay']=300
		self.x=self.config['sizeX']
		self.y=self.config['sizeY']
		self.url=self.config['url']
		# Font config
		self.h_font=self.config['head_font']
		self.h_font_height=self.config['head_font_height']
		self.h_font_color=self.config.color(self.config['head_font_color'])
		self.i_font=self.config['item_font']
		self.i_font_height=self.config['item_font_height']
		self.i_font_color=self.config.color(self.config['item_font_color'])
		self.sel_font_color=self.config.color(self.config['selected_font_color'])
		self.t_font=self.config['title_font']
		self.t_font_height=self.config['title_font_height']
		self.t_font_color=self.config.color(self.config['title_font_color'])
		self.line_spacing=self.config['line_spacing']
		
		self.interactive=self.config['interactive']
		self.borderX=self.config['borderX']
		self.borderY=self.config['borderY']
		self.browser=self.config['browser']

		adesklets.add_path_to_font_path(join(self.basedir))
		self.buffer=adesklets.create_image(self.x,self.y)
	
	# Set the window property
		adesklets.window_resize(self.x,self.y)
		adesklets.window_set_transparency(True)
		if (self.config['managed']):
			adesklets.window_reset(adesklets.WINDOW_MANAGED)
		adesklets.menu_add_separator()
		adesklets.menu_add_item('Configure')
		adesklets.menu_add_item('Update feed')
		adesklets.window_show()

	def alarm(self):
		self.block()
		self.feed=self.update_feed()
		self._display()
		self.unblock()
		# One second adjustment to make sure everything will be fine
		return self.config['delay']+1

	def menu_fire(self, delayed, menu_id, item):
		if item=='Configure':
			editor=getenv('EDITOR')
			if editor:
				system('xterm -e %s %s/config.txt &' % (editor, self.basedir))
		if item=='Update feed':
			self.block()
			self.feed=self.update_feed()
			self._display()
			self.unblock()
	
	def _display(self):
		self.set_buffer_image()
		if self.feed.bozo==1:
			self.error_flag=1
			self.draw_error_info()
		else:
			self.error_flag=0
			self.draw_info()
		self.copy_to_desklet()

	def set_buffer_image(self):
		# Reset the whole buffer image in transparent black
		adesklets.context_set_image(self.buffer)
		adesklets.context_set_color(0,0,0,0)
		adesklets.context_set_blend(False)
		adesklets.image_fill_rectangle(0,0,self.x,self.y)
		adesklets.context_set_blend(True)
		
		self.draw_borders()

	#--------------- Item selection and viewing ---------------
	def fire_browser(self,item):
		system(self.browser+' '+self.feed['items'][self.selected_item].link)

	def button_release(self, delayed, x, y, button):
		if (button==1)&(self.interactive):
			self.select_item(x,y)
			self.fire_browser(self.selected_item)

	def select_item(self,x,y):					
		prev_selected=self.selected_item
		for i in range(len(self.item_pos)):
			if (self.item_pos[i]!=[]):
				y_start=self.item_pos[i][0]
				y_end=self.item_pos[i][1]
				if (y>y_start)&(y<y_end):
					self.selected_item=i
		if (prev_selected!=self.selected_item):
			if (prev_selected>-1):
				self.redraw_news_content(prev_selected,0)
			self.redraw_news_content(self.selected_item,1)

	def motion_notify(self, delayed, x, y):
		if (self.error_flag==0):
			if (not delayed)&(self.interactive):
				self.select_item(x,y)
	
	def leave_notify(self, delayed, x, y):
		if (self.error_flag==0):
			self.selected_item=-1
			self._display()


	#------------- Drawing functions -------------
	def draw_info(self):
			self.item_pos=[]
			total_feeds=len(self.feed['items'])-1
			if total_feeds>20: total_feeds=20
			self.item_pos=[[] for i in range (total_feeds)]
			self.y_current=self.draw_title()
			for item in range(total_feeds):
				if (self.draw_news_header(item)==0):
					if (item==self.selected_item):
						ret=self.draw_news_content(item,1)
					else: 
						ret=self.draw_news_content(item,0)
					if (ret==1):
						return
				else:
					return

	def copy_to_desklet(self):
		# Copy everything from the buffer image to the real foreground image
		adesklets.context_set_image(0)
		adesklets.context_set_blend(False)
		adesklets.blend_image_onto_image(self.buffer,1,0,0,self.x,self.y,0,0,self.x,self.y)
		adesklets.context_set_blend(True)
		# Free all fonts used
		adesklets.fonts_reset_all()

	def draw_error_info(self):
		adesklets.context_set_font(adesklets.load_font(self.t_font+'/'+str(self.t_font_height)))
		adesklets.context_set_color(*self.h_font_color)
		adesklets.text_draw(45,15,'News: Error fetching news!')
		icon=adesklets.load_image(join(self.basedir,'img/news.png'))
		adesklets.blend_image_onto_image(icon,1,0,0,68,60,11,10,30,30)
		adesklets.free_image(icon)
		adesklets.context_set_font(adesklets.load_font('VeraBd/8'))
		adesklets.context_set_color(*self.t_font_color)
		adesklets.text_draw(12,40,'Error: '+str(self.feed.bozo_exception))

	def draw_news_header(self,item):
		adesklets.context_set_font(adesklets.load_font(self.h_font+'/'+str(self.h_font_height)))
		feed_title=str(self.feed['items'][item]['title'])
		text_x=12	
		text_y=self.line_spacing+self.y_current
		adesklets.context_set_color(*self.h_font_color)
		if ((text_y+self.line_spacing+self.h_font_height)<self.y):
			adesklets.text_draw(text_x,text_y,feed_title)
			return 0
		else:
			return 1

	def redraw_news_content(self,item,selected):
		if (selected==0):
			image=adesklets.load_image(join(self.basedir,'img/dark.png'))
			header_space=self.line_spacing+self.h_font_height
			xstart=self.borderX
			ystart=self.item_pos[item][0]+1.5*header_space
			width=self.x-2*self.borderX
			height=self.item_pos[item][1]-self.item_pos[item][0]-header_space
			adesklets.blend_image_onto_image(image,0,0,0,80,80,xstart,ystart,width,height)
			adesklets.free_image(image)
			adesklets.context_set_color(*self.i_font_color)
		else:
			adesklets.context_set_color(*self.sel_font_color)
		current=0
		header_space=self.line_spacing+self.h_font_height
		adesklets.context_set_font(adesklets.load_font(self.i_font+'/'+str(self.i_font_height)))
		feed_content=str(self.feed['items'][item]['description'])
		feed_lines= self.string_to_paragraph(feed_content)
		for i in range(len(feed_lines)):
			text_x=15	
			text_y=header_space+self.item_pos[item][0]+self.line_spacing+(self.line_spacing+self.i_font_height)*current
			if ((text_y+self.line_spacing+self.i_font_height)<self.y):
				adesklets.text_draw(text_x,text_y,feed_lines[i])
				current+=1
			else:
				return 1
	
	def draw_news_content(self,item,selected):
		last=0
		if (selected==0):
			adesklets.context_set_color(*self.i_font_color)
		else:
			adesklets.context_set_color(*self.selected_font_color)
		current=0
		header_space=self.line_spacing+self.h_font_height
		adesklets.context_set_font(adesklets.load_font(self.i_font+'/'+str(self.i_font_height)))
		feed_content=str(self.feed['items'][item]['description'])
		feed_lines= self.string_to_paragraph(feed_content)
		for i in range(len(feed_lines)):
			text_x=15	
			text_y=header_space+self.y_current+self.line_spacing+(self.line_spacing+self.i_font_height)*current
			if ((text_y+self.line_spacing+self.i_font_height)<self.y):
				adesklets.text_draw(text_x,text_y,feed_lines[i])
				current+=1
			else:
				self.item_pos[item].append(self.y_current)
				self.item_pos[item].append(self.y-self.borderY)
				return 1
		y_start,self.y_current=self.calculate_bounds(self.y_current,feed_lines)
		self.item_pos[item].append(y_start)
		self.item_pos[item].append(self.y_current)
		return 0
	
	def draw_title(self):
		adesklets.context_set_font(adesklets.load_font(self.t_font+'/'+str(self.t_font_height)))
		adesklets.context_set_color(*self.t_font_color)
		adesklets.text_draw(45,15,'News: '+str(self.feed['feed']['title']))
		icon=adesklets.load_image(join(self.basedir,'img/news.png'))
		adesklets.blend_image_onto_image(icon,1,0,0,68,60,11,10,30,30)
		adesklets.free_image(icon)
		return 45

	def draw_borders(self):		
		image=adesklets.load_image(join(self.basedir,'img/dark.png'))
		adesklets.blend_image_onto_image(image,1,0,0,80,80,0,0,self.x,self.y)
		adesklets.free_image(image)

		image=adesklets.load_image(join(self.basedir,'img/e-light.png'))
		adesklets.blend_image_onto_image(image,1,0,0,15,10,
						self.x-self.borderX,self.borderY,
						self.borderX,self.y-(2*self.borderY))
		adesklets.free_image(image)
		
		image=adesklets.load_image(join(self.basedir,'img/w-light.png'))
		adesklets.blend_image_onto_image(image,1,0,0,15,10,
						0,self.borderY,
						self.borderX,self.y-(2*self.borderY))
		adesklets.free_image(image)
		
		image=adesklets.load_image(join(self.basedir,'img/n-light.png'))
		adesklets.blend_image_onto_image(image,1,0,0,10,9,
						self.borderX,0,
						self.x-(2*self.borderX),self.borderY)
		adesklets.free_image(image)
		
		image=adesklets.load_image(join(self.basedir,'img/ne-light.png'))
		adesklets.blend_image_onto_image(image,1,0,0,15,9,
						self.x-self.borderX,0,
						self.borderX,self.borderY)
		adesklets.free_image(image)
		
		image=adesklets.load_image(join(self.basedir,'img/nw-light.png'))
		adesklets.blend_image_onto_image(image,1,0,0,15,9,
						0,0,
						self.borderX,self.borderY)
		adesklets.free_image(image)
		
		image=adesklets.load_image(join(self.basedir,'img/sw-light.png'))
		adesklets.blend_image_onto_image(image,1,0,0,15,9,
						0,self.y-self.borderY,
						self.borderX,self.borderY)
		adesklets.free_image(image)
		
		image=adesklets.load_image(join(self.basedir,'img/s-light.png'))
		adesklets.blend_image_onto_image(image,1,0,0,10,9,
						self.borderX,self.y-self.borderY,
						self.x-(2*self.borderX),self.borderY)
		adesklets.free_image(image)
		
		image=adesklets.load_image(join(self.basedir,'img/se-light.png'))
		adesklets.blend_image_onto_image(image,1,0,0,15,9,
						self.x-self.borderX,self.y-self.borderY,
						self.borderX,self.borderY)
		adesklets.free_image(image)
		
	#-------------- Utility methods -----------------
	def string_to_paragraph(self,string):
		string_size=adesklets.get_text_size(string)
		char_per_line=(self.x-2*self.borderX)/adesklets.get_text_size('x')[0]
		lines=len(string)/char_per_line
		limit=char_per_line
		result=[]
		result=textwrap.wrap(string,char_per_line)
		return result
	
	def calculate_bounds(self,y_start,paragraph):
		item_space=len(paragraph)*(self.line_spacing+self.i_font_height)
		header_space=self.line_spacing+self.h_font_height
		return y_start,y_start+item_space+header_space

	def update_feed(self):
		# Parse url
		if (self.modified==None):
			return feedparser.parse(self.url)
		else:
			temp_feed=feedparser.parse(self.url,modified=self.feed.modified)
			if (temp_feed.status=='304'):
				return self.feed
			else:
				return temp_feed
	
#-------------------------------------------------------------------------------
if hasattr(adesklets,'version_check'):
    Events(dirname(__file__)).pause()
else:
    raise RuntimeError, 'You need adesklets >= 0.4.0. See README.'

je sais pas si ca t aide...

#3 Re : -1 »  [HOW TO] adesklets : installation sous Ubuntu Dapper et Edgy » Le 13/07/2006, à 11:16

kryss
Réponses : 96

fallait enlever le config.txt a la fin je suppose
donc voila ce que ca me donne dans le terminal :

Do you want to (r)egister this desklet or to (t)est it? t
Now testing...
============================================================
If you do not see anything (or just an initial flicker
in the top left corner of your screen), try `--help',
and see the FAQ: `info adesklets'.
============================================================
Traceback (most recent call last):
  File "./newsfeed.py", line 419, in ?
    Events(dirname(__file__)).pause()
  File "./newsfeed.py", line 109, in __init__
    adesklets.Events_handler.__init__(self)
  File "/usr/lib/python2.4/site-packages/adesklets/events_handler.py", line 158,  in __init__
    self._alarm()
  File "/usr/lib/python2.4/site-packages/adesklets/events_handler.py", line 296,  in _alarm
    timeout=self.alarm()
  File "./newsfeed.py", line 157, in alarm
    self._display()
  File "./newsfeed.py", line 180, in _display
    self.draw_info()
  File "./newsfeed.py", line 238, in draw_info
    ret=self.draw_news_content(item,0)
  File "./newsfeed.py", line 313, in draw_news_content
    feed_lines= self.string_to_paragraph(feed_content)
  File "./newsfeed.py", line 394, in string_to_paragraph
    char_per_line=(self.x-2*self.borderX)/adesklets.get_text_size('x')[0]
  File "/usr/lib/python2.4/site-packages/adesklets/commands.py", line 516, in ge t_text_size
    return comm.out()
  File "/usr/lib/python2.4/site-packages/adesklets/commands_handler.py", line 10 3, in out
    raise ADESKLETSError(4,message)
adesklets.error_handler.ADESKLETSError: adesklets command error - syntax error

a coté, une fenetre bleue s est creee puis s est refermée

#4 Re : -1 »  [HOW TO] adesklets : installation sous Ubuntu Dapper et Edgy » Le 13/07/2006, à 11:26

kryss
Réponses : 96

et sinon mon fichier config a bien ete crée. le voici :

# -*- coding: ASCII -*-
#
#This is newsfeed.py desklet configuration file; for each desklet,
#you only have to write down the minimal delay between updates
#(in seconds: less than 300 will be ignored), the URL of the feed
#and the size of the desklet
#Details:
#	sizeX,sizeY: width and height
#	head_font, head_font_height: font for news title
#	item_font, item_font_height: font for news details
#	url: rss/atom newsfeed url
#	line_spacing: pixels between two lines
#	borderX, borderY: area reserved to borders
#	interactive: if True, enables highlighting of news details and calling 
#		selected browser
#	browser: browser to call for viewing selected news
#	
id0 = {'borderX': 7,
 'borderY': 7,
 'browser': 'firefox',
 'delay': 600,
 'head_font': 'VeraBd',
 'head_font_color': 'ffff00',
 'head_font_height': 8,
 'interactive': False,
 'item_font': 'Vera',
 'item_font_color': '02c601',
 'item_font_height': 8,
 'line_spacing': 5,
 'managed': True,
 'selected_font_color': 'ffffff',
 'sizeX': 400,
 'sizeY': 600,
 'title_font': 'VeraBd',
 'title_font_color': 'ffe600',
 'title_font_height': 12,
 'url': 'http://slashdot.org/index.rss'}

il me semble que je t ai pas remercié de te pencher sur mon cas...
merci! tongue

#5 Re : -1 »  [HOW TO] adesklets : installation sous Ubuntu Dapper et Edgy » Le 14/07/2006, à 13:27

kryss
Réponses : 96

heu... qu est ce que c est xgl?
j ai remplacé la police VeraB par Vera et ca marche toujours pas...
je vois pas du tout ce qui peut marcher la. tout ce que je voulais c etait avoir mes flux rss sur le bureau, moi sad

#6 Re : -1 »  [HOW TO] adesklets : installation sous Ubuntu Dapper et Edgy » Le 14/07/2006, à 13:40

kryss
Réponses : 96

ah la galere...
etu tu crois que tu peux savoir pourquoi les desklets de gdesklet marchent pas?
c est quoi un capteur rss grab?

#7 Re : -1 »  Matlab et Simulink » Le 25/03/2007, à 19:46

kryss
Réponses : 9

tu pourrais me dire comment tu as fait pour installer matlab et simulink?

#8 -1 »  firefox ne supportant pas flash contrairement a mozilla » Le 06/12/2006, à 21:31

kryss
Réponses : 8

bonjour tout le monde,
je sais que le sujet a maintes fois ete uploadé, mais j ai tout essayé, j ai echainé plusieurs heures sur ce probleme et j y arrive vraiment pas...
donc le soucis c est que je n arrive a voir aucune video flash avec firefow, qui par ailleurs marchait tres bien avant que je passe a edgy.
depuis j ai tout essayé:
reinstaller flashplayer 7
reinstaller touts les codecs videos
remodifier mon sources.list
desinstaller totem, reinstaller mplayer
trouver la version 9 de flash et l installer correctement.
installer mediaplayerconnectivity(qui du coup me parait pas si bien... j espere me tromper)
il me semble que j ai tout fait. je vous donne mon about:plugins de firefow si ca vous dit, il me semble complet.
bref, tout semble normal excepté le resultat, firefox n arrive pas a lire les videos.
et la, y a 5 min je vois si avec mozilla ca passe, et ca passe nickel. comprends plus. mozilla et firefox n ont peut etre pas les plugins au meme endroits? (./mozilla/plugins)
voila, bon courage a tous, vous me retireriez une fiere chandelle du pied si vous arriviez a ne serait ce qu a me donnez une piste.

le about:plugins :

Google VLC multimedia plugin 1.0

    Nom de fichier : mplayerplug-in-gmp.so
    mplayerplug-in 3.11

    Video Player Plug-in for QuickTime, RealPlayer and Windows Media Player streams using MPlayer
    JavaScript Enabled and Using GTK2 Widgets

Type MIME 	Description 	Suffixes 	Autorisé
application/x-google-vlc-plugin 	Google Video 		Oui
QuickTime Plug-in 6.0

    Nom de fichier : mplayerplug-in-qt.so
    mplayerplug-in 3.11

    Video Player Plug-in for QuickTime, RealPlayer and Windows Media Player streams using MPlayer
    JavaScript Enabled and Using GTK2 Widgets

Type MIME 	Description 	Suffixes 	Autorisé
video/quicktime 	Quicktime 	mov 	Oui
video/x-quicktime 	Quicktime 	mov 	Oui
image/x-quicktime 	Quicktime 	mov 	Oui
video/quicktime 	Quicktime 	mp4 	Oui
video/quicktime 	Quicktime - Session Description Protocol 	sdp 	Oui
application/x-quicktimeplayer 	Quicktime 	mov 	Oui
application/smil 	SMIL 	smil 	Oui
RealPlayer 9

    Nom de fichier : mplayerplug-in-rm.so
    mplayerplug-in 3.11

    Video Player Plug-in for QuickTime, RealPlayer and Windows Media Player streams using MPlayer
    JavaScript Enabled and Using GTK2 Widgets

Type MIME 	Description 	Suffixes 	Autorisé
audio/x-pn-realaudio 	RealAudio 	ram,rm 	Oui
audio/x-realaudio 	RealAudio 	ra 	Oui
audio/x-pn-realaudio-plugin 	RealAudio 	rpm 	Oui
application/smil 	SMIL 	smil 	Oui
Windows Media Player Plugin

    Nom de fichier : mplayerplug-in-wmp.so
    mplayerplug-in 3.11

    Video Player Plug-in for QuickTime, RealPlayer and Windows Media Player streams using MPlayer
    JavaScript Enabled and Using GTK2 Widgets

Type MIME 	Description 	Suffixes 	Autorisé
application/asx 	Media Files 	* 	Oui
video/x-ms-asf-plugin 	Media Files 	* 	Oui
video/x-msvideo 	AVI 	avi,* 	Oui
video/msvideo 	AVI 	avi,* 	Oui
application/x-mplayer2 	Media Files 	* 	Oui
application/x-ms-wmv 	Microsoft WMV video 	wmv,* 	Oui
video/x-ms-asf 	Media Files 	asf,asx,* 	Oui
video/x-ms-wm 	Media Files 	wm,* 	Oui
video/x-ms-wmv 	Microsoft WMV video 	wmv,* 	Oui
video/x-ms-wmp 	Windows Media 	wmp,* 	Oui
video/x-ms-wvx 	Windows Media 	wvx,* 	Oui
audio/x-ms-wax 	Windows Media 	wax,* 	Oui
audio/x-ms-wma 	Windows Media 	wma,* 	Oui
application/x-drm-v2 	Windows Media 	asx,* 	Oui
audio/wav 	Microsoft wave file 	wav,* 	Oui
audio/x-wav 	Microsoft wave file 	wav,* 	Oui
mplayerplug-in 3.11

    Nom de fichier : mplayerplug-in.so
    mplayerplug-in 3.11

    Video Player Plug-in for QuickTime, RealPlayer and Windows Media Player streams using MPlayer
    JavaScript Enabled and Using GTK2 Widgets

Type MIME 	Description 	Suffixes 	Autorisé
video/mpeg 	MPEG 	mpg,mpeg 	Oui
audio/mpeg 	MPEG 	mpg,mpeg 	Oui
video/x-mpeg 	MPEG 	mpg,mpeg 	Oui
video/x-mpeg2 	MPEG2 	mpv2,mp2ve 	Oui
audio/mpeg 	MPEG 	mpg,mpeg 	Oui
audio/x-mpeg 	MPEG 	mpg,mpeg 	Oui
audio/mpeg2 	MPEG audio 	mp2 	Oui
audio/x-mpeg2 	MPEG audio 	mp2 	Oui
video/mp4 	MPEG 4 Video 	mp4 	Oui
audio/mpeg3 	MPEG audio 	mp3 	Oui
audio/x-mpeg3 	MPEG audio 	mp3 	Oui
audio/mp3 	MPEG audio 	mp3 	Oui
application/x-ogg 	Ogg Vorbis Media 	ogg 	Oui
audio/ogg 	Ogg Vorbis Audio 	ogg 	Oui
application/ogg 	Ogg Vorbis / Ogg Theora 	ogg 	Oui
video/fli 	FLI animation 	fli,flc 	Oui
video/x-fli 	FLI animation 	fli,flc 	Oui
video/vnd.vivo 	VivoActive 	viv,vivo 	Oui
application/x-nsv-vp3-mp3 	Nullsoft Streaming Video 	nsv 	Oui
Java(TM) Plug-in 1.5.0_10-b03

    Nom de fichier : libjavaplugin_oji.so
    Java(TM) Plug-in 1.5.0_10

Type MIME 	Description 	Suffixes 	Autorisé
application/x-java-vm 	Java 		Oui
application/x-java-applet 	Java 		Oui
application/x-java-applet;version=1.1 	Java 		Oui
application/x-java-applet;version=1.1.1 	Java 		Oui
application/x-java-applet;version=1.1.2 	Java 		Oui
application/x-java-applet;version=1.1.3 	Java 		Oui
application/x-java-applet;version=1.2 	Java 		Oui
application/x-java-applet;version=1.2.1 	Java 		Oui
application/x-java-applet;version=1.2.2 	Java 		Oui
application/x-java-applet;version=1.3 	Java 		Oui
application/x-java-applet;version=1.3.1 	Java 		Oui
application/x-java-applet;version=1.4 	Java 		Oui
application/x-java-applet;version=1.4.1 	Java 		Oui
application/x-java-applet;version=1.4.2 	Java 		Oui
application/x-java-applet;version=1.5 	Java 		Oui
application/x-java-applet;jpi-version=1.5.0_10 	Java 		Oui
application/x-java-bean 	Java 		Oui
application/x-java-bean;version=1.1 	Java 		Oui
application/x-java-bean;version=1.1.1 	Java 		Oui
application/x-java-bean;version=1.1.2 	Java 		Oui
application/x-java-bean;version=1.1.3 	Java 		Oui
application/x-java-bean;version=1.2 	Java 		Oui
application/x-java-bean;version=1.2.1 	Java 		Oui
application/x-java-bean;version=1.2.2 	Java 		Oui
application/x-java-bean;version=1.3 	Java 		Oui
application/x-java-bean;version=1.3.1 	Java 		Oui
application/x-java-bean;version=1.4 	Java 		Oui
application/x-java-bean;version=1.4.1 	Java 		Oui
application/x-java-bean;version=1.4.2 	Java 		Oui
application/x-java-bean;version=1.5 	Java 		Oui
application/x-java-bean;jpi-version=1.5.0_10 	Java 		Oui
Shockwave Flash

    Nom de fichier : libswfdecmozilla.so
    Shockwave Flash 4.0 animation viewer handled by swfdec-0.3.6. Plays SWF animations, commonly known as Macromedia® Flash®.

    This is alpha software. It will probably behave in many situations, but may also ride your motorcycle, drink all your milk, use your computer to browse porn, or launch kittens from a cannon. Comments, feature requests, and patches are welcome.

    See http://www.schleef.org/swfdec/ for information.

    Flash, Shockwave, and Macromedia are trademarks of Macromedia, Inc. The swfdec software and its contributors are not affiliated with Macromedia, Inc.

Type MIME 	Description 	Suffixes 	Autorisé
application/x-shockwave-flash 	Shockwave Flash 	swf 	Oui
Java(TM) Plug-in Blackdown-1.4.2-02

    Nom de fichier : libjavaplugin_oji.so
    Blackdown Java-Linux Java(TM) Plug-in 1.4.2

Type MIME 	Description 	Suffixes 	Autorisé
application/x-java-vm 	Java 		Oui
application/x-java-applet 	Java 		Oui
application/x-java-applet;version=1.1 	Java 		Oui
application/x-java-applet;version=1.1.1 	Java 		Oui
application/x-java-applet;version=1.1.2 	Java 		Oui
application/x-java-applet;version=1.1.3 	Java 		Oui
application/x-java-applet;version=1.2 	Java 		Oui
application/x-java-applet;version=1.2.1 	Java 		Oui
application/x-java-applet;version=1.2.2 	Java 		Oui
application/x-java-applet;version=1.3 	Java 		Oui
application/x-java-applet;version=1.3.1 	Java 		Oui
application/x-java-applet;version=1.4 	Java 		Oui
application/x-java-applet;version=1.4.1 	Java 		Oui
application/x-java-applet;version=1.4.2 	Java 		Oui
application/x-java-applet;jpi-version=1.4.2 	Java 		Oui
application/x-java-applet;jpi-version=1.4.2_01 	Java 		Oui
application/x-java-applet;jpi-version=1.4.2_02 	Java 		Oui
application/x-java-applet;jpi-version=1.4.2_03 	Java 		Oui
application/x-java-applet;jpi-version=1.4.2_04 	Java 		Oui
application/x-java-applet;jpi-version=1.4.2_05 	Java 		Oui
application/x-java-applet;jpi-version=1.4.2_06 	Java 		Oui
application/x-java-applet;jpi-version=1.4.2_07 	Java 		Oui
application/x-java-applet;jpi-version=1.4.2_08 	Java 		Oui
application/x-java-bean 	Java 		Oui
application/x-java-bean;version=1.1 	Java 		Oui
application/x-java-bean;version=1.1.1 	Java 		Oui
application/x-java-bean;version=1.1.2 	Java 		Oui
application/x-java-bean;version=1.1.3 	Java 		Oui
application/x-java-bean;version=1.2 	Java 		Oui
application/x-java-bean;version=1.2.1 	Java 		Oui
application/x-java-bean;version=1.2.2 	Java 		Oui
application/x-java-bean;version=1.3 	Java 		Oui
application/x-java-bean;version=1.3.1 	Java 		Oui
application/x-java-bean;version=1.4 	Java 		Oui
application/x-java-bean;version=1.4.1 	Java 		Oui
application/x-java-bean;version=1.4.2 	Java 		Oui
application/x-java-bean;jpi-version=1.4.2 	Java 		Oui
application/x-java-bean;jpi-version=1.4.2_01 	Java 		Oui
application/x-java-bean;jpi-version=1.4.2_02 	Java 		Oui
application/x-java-bean;jpi-version=1.4.2_03 	Java 		Oui
application/x-java-bean;jpi-version=1.4.2_04 	Java 		Oui
application/x-java-bean;jpi-version=1.4.2_05 	Java 		Oui
application/x-java-bean;jpi-version=1.4.2_06 	Java 		Oui
application/x-java-bean;jpi-version=1.4.2_07 	Java 		Oui
application/x-java-bean;jpi-version=1.4.2_08 	Java 		Oui
Shockwave Flash

    Nom de fichier : libflashplayer.so
    Shockwave Flash 9.0 d78

Type MIME 	Description 	Suffixes 	Autorisé
application/x-shockwave-flash 	Shockwave Flash 	swf 	Oui
application/futuresplash 	FutureSplash Player

#9 Re : -1 »  firefox ne supportant pas flash contrairement a mozilla » Le 07/12/2006, à 00:28

kryss
Réponses : 8

ma version de media player connectivity gere bien flash, ainsi que realmedia, windowsmedia, playlist, mp3, nullsoft,... a moins que je me trompe.

sinon voila mon sources.list :

#//FR
deb http://fr.archive.ubuntu.com/ubuntu/ edgy main restricted
deb-src http://fr.archive.ubuntu.com/ubuntu edgy main restricted
#//International

deb http://archive.ubuntu.com/ubuntu/ edgy main restricted
deb-src http://archive.ubuntu.com/ubuntu edgy main restricted

#//FR
deb http://fr.archive.ubuntu.com/ubuntu/ edgy-updates main restricted
deb-src http://fr.archive.ubuntu.com/ubuntu edgy-updates main restricted
#//International
deb http://archive.ubuntu.com/ubuntu/ edgy-updates main restricted
deb-src http://archive.ubuntu.com/ubuntu edgy-updates main restricted

#//FR
deb http://fr.archive.ubuntu.com/ubuntu/ edgy-security main restricted
deb-src http://fr.archive.ubuntu.com/ubuntu edgy-security main restricted multiverse
#//International
deb http://archive.ubuntu.com/ubuntu/ edgy-security main restricted
deb-src http://archive.ubuntu.com/ubuntu edgy-security main restricted

#//FR
deb http://fr.archive.ubuntu.com/ubuntu/ edgy universe multiverse
deb-src http://fr.archive.ubuntu.com/ubuntu edgy universe multiverse
#//International
deb http://archive.ubuntu.com/ubuntu/ edgy universe multiverse
deb-src http://archive.ubuntu.com/ubuntu edgy universe multiverse

#//FR
deb http://fr.archive.ubuntu.com/ubuntu/ edgy-updates universe multiverse
deb-src http://fr.archive.ubuntu.com/ubuntu edgy-updates universe multiverse
#//International
deb http://archive.ubuntu.com/ubuntu/ edgy-updates universe multiverse
deb-src http://archive.ubuntu.com/ubuntu edgy-updates universe multiverse

#//FR
deb http://fr.archive.ubuntu.com/ubuntu/ edgy-security universe multiverse
deb-src http://fr.archive.ubuntu.com/ubuntu edgy-security universe multiverse
#//International
deb http://archive.ubuntu.com/ubuntu/ edgy-security universe multiverse
deb-src http://archive.ubuntu.com/ubuntu edgy-security universe multiverse

#//FR
deb http://fr.archive.ubuntu.com/ubuntu/ edgy-backports main restricted universe multiverse
deb-src http://fr.archive.ubuntu.com/ubuntu edgy-backports main restricted universe multiverse
#//International
deb http://archive.ubuntu.com/ubuntu/ edgy-backports main restricted universe multiverse
deb-src http://archive.ubuntu.com/ubuntu edgy-backports main restricted universe multiverse

# deb http://archive.canonical.com edgy-commercial main

#PLF
# Merci de rapporter tout bug sur https://launchpad.net/products/plf/+bugs
 deb http://packages.freecontrib.org/ubuntu/plf/ edgy-plf free non-free
 deb-src http://packages.freecontrib.org/ubuntu/plf/ edgy-plf free non-free

#OpenOffice en version finale 2.0
 deb http://people.ubuntu.com/~doko/OOo2 ./

#E17
# deb http://e17.sos-sts.com edgy e17
# deb-src http://e17.sos-sts.com edgy e17

#10 Re : -1 »  firefox ne supportant pas flash contrairement a mozilla » Le 07/12/2006, à 00:29

kryss
Réponses : 8

smile
il manquait la fin, desolé :

##/Skype (dépot debian officiel de skype)
deb http://archive.ubuntu.com/ubuntu/ edgy main
# deb http://download.skype.com/linux/repos/debian/ stable non-free

#java version 9 beta
deb http://download.tuxfamily.org/3v1deb edgy 3v1n0
deb-src http://download.tuxfamily.org/3v1deb edgy 3v1n0
#gpg --keyserver subkeys.pgp.net --recv-keys 81836EBF
#gpg --export --armor 81836EBF | sudo apt-key add -

#codecs real player
deb http://archive.canonical.com dapper-commercial main

(et merci de me preter un tant soit peu d attention, c est vraiment sympa)

#12 Re : -1 »  firefox ne supportant pas flash contrairement a mozilla » Le 11/12/2006, à 21:11

kryss
Réponses : 8

j ai essayé ca, ca marche pas...
alors je me suis rabattu sur mozilla qui est tres bien en fait, sauf que j arrive pas a lire les videos embended et arrive pas a aller sur le site de ma banque.
je vois vraiment pas ce qui cloche...
tout marchait bien sous dapper
merci quand meme...

#13 Re : -1 »  installation d un deuxieme disque dur de donnees » Le 16/06/2006, à 01:58

kryss
Réponses : 29

c est sympa kurowa de te joindre a nous...
mais, comment dire... j ai fait ce que tu as dit, et voila ce que j obtiens :


kryss@styx:/media$ sudo mount -a
mount: type erroné de système de fichiers, option erronée, super bloc erroné sur /dev/hdd1,
       codepage manquante ou autre erreur
       Dans quelques cas certaines informations sont utiles dans syslog - essayez
       dmesg | tail  ou quelque chose du genre

kryss@styx:/media$ dmesg | tail
[4378968.754000] Buffer I/O error on device fd0, logical block 0
[4378980.944000] end_request: I/O error, dev fd0, sector 0
[4378980.944000] Buffer I/O error on device fd0, logical block 0
[4440522.412000] Warning: /proc/ide/hd?/settings interface is obsolete, and will be removed soon!
[4440523.718000] NTFS driver 2.1.25 [Flags: R/O MODULE].
[4440523.845000] NTFS volume version 3.1.
[4440540.795000] NTFS volume version 3.1.
[4440641.452000] NTFS volume version 3.1.
[4497608.363000] VFS: Can't find ext3 filesystem on dev hdd1.
[4497690.411000] VFS: Can't find ext3 filesystem on dev hdd1.

#14 Re : -1 »  installation d un deuxieme disque dur de donnees » Le 22/06/2006, à 21:13

kryss
Réponses : 29

non je comprends plus... je suis arrivé a le monter en ext3 avec Gpart mais je peux toujours pas lire ce qu il y a dedans... et j ai toujours les meme problemes qu avant suivant la manip que je fais...

#15 Re : -1 »  installation d un deuxieme disque dur de donnees » Le 27/06/2006, à 00:51

kryss
Réponses : 29

alors voila les resultats...

kryss@styx:~$ sudo fdisk -l

Disque /dev/hda: 20.4 Go, 20404101120 octets
255 têtes, 63 secteurs/piste, 2480 cylindres
Unités = cylindres de 16065 * 512 = 8225280 octets

Périphérique Amorce    Début         Fin      Blocs    Id  Système
/dev/hda1   *           1          31      248976   83  Linux
/dev/hda2              32        2480    19671592+   5  Extended
/dev/hda5              32        2480    19671561   8e  Linux LVM

Disque /dev/hdd: 20.0 Go, 20020396032 octets
255 têtes, 63 secteurs/piste, 2434 cylindres
Unités = cylindres de 16065 * 512 = 8225280 octets

Périphérique Amorce    Début         Fin      Blocs    Id  Système
/dev/hdd1   *           1        2433    19543041   83  Linux



kryss@styx:~$ cat /etc/fstab
# /etc/fstab: static file system information.
#
# <file system> <mount point>   <type>  <options>       <dump>  <pass>
proc            /proc           proc    defaults        0       0
/dev/mapper/Ubuntu-root /       ext3    defaults,errors=remount-ro 0       1
/dev/hda1       /boot           ext3    defaults        0       2
/dev/mapper/Ubuntu-swap_1 none            swap    sw              0       0
/dev/hdb        /media/cdrom0   udf,iso9660 user,noauto     0       0
/dev/fd0        /media/floppy0  auto    rw,user,noauto  0       0
#/dev/hdd1      /medext2     ro,user,noauto,mode=0755  0  0ia/backup
# Partitions Windows - NTFS
/dev/hdd1       /media/windows  ntfs    umask=0222      0       0



desolé de repondre si tard j avais pas acces au net ce we...
pour ce qui est de la doc c est ce que j avais fait avant d utiliser GPart, et j ai toujours le meme resultat :

kryss@styx:/media$ sudo mount -a
mount: type erroné de système de fichiers, option erronée, super bloc erroné sur /dev/hdd1,
       codepage manquante ou autre erreur
       Dans quelques cas certaines informations sont utiles dans syslog - essayez
       dmesg | tail  ou quelque chose du genre

merci a vous...

#16 Re : -1 »  installation d un deuxieme disque dur de donnees » Le 27/06/2006, à 09:00

kryss
Réponses : 29

j ai modifié le fstab comme indiqué et c est bien du ext3
(je l avais modifié avec GPart)

kryss@styx:~$ sudo parted -s /dev/hdd print
Géométrie du disque pour /dev/hdd : 0kB - 20GB
Type d'étiquette de disque : msdos
Numéro Début  Fin     Taille  Type      Système de fichiers Drapeaux
1       32kB    20GB    20GB    primaire  ext3         amorce


le sudo mount -a -o remount me renvoie:
/media/windows n'est pas déjà monté ou option erronée

#17 Re : -1 »  installation d un deuxieme disque dur de donnees » Le 28/06/2006, à 08:28

kryss
Réponses : 29
cat /proc/mounts

rootfs / rootfs rw 0 0
none /sys sysfs rw 0 0
none /proc proc rw,nodiratime 0 0
udev /dev tmpfs rw 0 0
/dev/mapper/Ubuntu-root / ext3 rw,data=ordered 0 0
/dev/mapper/Ubuntu-root /dev/.static/dev ext3 rw,data=ordered 0 0
tmpfs /var/run tmpfs rw 0 0
tmpfs /var/lock tmpfs rw 0 0
usbfs /proc/bus/usb usbfs rw 0 0
tmpfs /lib/modules/2.6.15-25-k7/volatile tmpfs rw 0 0
devpts /dev/pts devpts rw 0 0
tmpfs /dev/shm tmpfs rw 0 0
tmpfs /var/run tmpfs rw 0 0
tmpfs /var/lock tmpfs rw 0 0
/dev/hda1 /boot ext3 rw,data=ordered 0 0
/dev/hdb /media/cdrom0 iso9660 ro,nosuid,nodev,noexec 0 0


ls -l /media

total 14
drwxr-xr-x 2 root  root  4096 2006-06-16 01:55 backup
lrwxrwxrwx 1 root  root     6 2006-06-08 20:57 cdrom -> cdrom0
dr-xr-xr-x 1 root  root  2048 2005-10-14 18:02 cdrom0
lrwxrwxrwx 1 root  root     7 2006-06-08 20:57 floppy -> floppy0
drwxr-xr-x 2 root  root  4096 2006-06-08 20:57 floppy0
drwxr-xr-x 2 kryss kryss 4096 2006-06-27 00:41 windows

j ai fait deux points de montage. normalement backup ne sert a rien, c est windows qui est censé etre le bon.

#18 Re : -1 »  installation d un deuxieme disque dur de donnees » Le 28/06/2006, à 08:35

kryss
Réponses : 29

j ai redemarré et en fait une cone "windows" est apparue sur le bureau, dans "raccourcis aussi" ainsi que dans le "poste de travail". maintenant le probleme c est qu il n arrive pas a donner le contenu de ce dossier...

#19 Re : -1 »  installation d un deuxieme disque dur de donnees » Le 28/06/2006, à 09:09

kryss
Réponses : 29
dmesg

[17179569.184000] Linux version 2.6.15-25-k7 (buildd@terranova) (gcc version 4.0 .3 (Ubuntu 4.0.3-1ubuntu5)) #1 SMP PREEMPT Wed Jun 14 11:43:20 UTC 2006
[17179569.184000] BIOS-provided physical RAM map:
[17179569.184000]  BIOS-e820: 0000000000000000 - 00000000000a0000 (usable)
[17179569.184000]  BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
[17179569.184000]  BIOS-e820: 0000000000100000 - 000000000fff0000 (usable)
[17179569.184000]  BIOS-e820: 000000000fff0000 - 000000000fff3000 (ACPI NVS)
[17179569.184000]  BIOS-e820: 000000000fff3000 - 0000000010000000 (ACPI data)
[17179569.184000]  BIOS-e820: 00000000ffff0000 - 0000000100000000 (reserved)
[17179569.184000] 0MB HIGHMEM available.
[17179569.184000] 255MB LOWMEM available.
[17179569.184000] On node 0 totalpages: 65520
[17179569.184000]   DMA zone: 4096 pages, LIFO batch:0
[17179569.184000]   DMA32 zone: 0 pages, LIFO batch:0
[17179569.184000]   Normal zone: 61424 pages, LIFO batch:15
[17179569.184000]   HighMem zone: 0 pages, LIFO batch:0
[17179569.184000] DMI 2.2 present.
[17179569.184000] ACPI: RSDP (v000 VIA694                                ) @ 0x0 00f73f0
[17179569.184000] ACPI: RSDT (v001 VIA694 AWRDACPI 0x42302e31 AWRD 0x00000000) @  0x0fff3000
[17179569.184000] ACPI: FADT (v001 VIA694 AWRDACPI 0x42302e31 AWRD 0x00000000) @  0x0fff3040
[17179569.184000] ACPI: DSDT (v001 VIA694 AWRDACPI 0x00001000 MSFT 0x0100000c) @  0x00000000
[17179569.184000] ACPI: PM-Timer IO Port: 0x4008
[17179569.184000] Allocating PCI resources starting at 20000000 (gap: 10000000:e fff0000)
[17179569.184000] Built 1 zonelists
[17179569.184000] Kernel command line: root=/dev/mapper/Ubuntu-root ro quiet spl ash
[17179569.184000] Local APIC disabled by BIOS (or by default) -- you can enable it with "lapic"
[17179569.184000] mapped APIC to ffffd000 (01282000)
[17179569.184000] Initializing CPU#0
[17179569.184000] PID hash table entries: 1024 (order: 10, 16384 bytes)
[17179569.184000] Detected 1300.245 MHz processor.
[17179569.184000] Using pmtmr for high-res timesource
[17179569.184000] Console: colour VGA+ 80x25
[17179571.920000] Dentry cache hash table entries: 65536 (order: 6, 262144 bytes )
[17179571.920000] Inode-cache hash table entries: 32768 (order: 5, 131072 bytes)
[17179571.932000] Memory: 248308k/262080k available (2094k kernel code, 13212k r eserved, 597k data, 332k init, 0k highmem)
[17179571.932000] Checking if this processor honours the WP bit even in supervis or mode... Ok.
[17179572.012000] Calibrating delay using timer specific routine.. 2603.06 BogoM IPS (lpj=5206132)
[17179572.012000] Security Framework v1.0.0 initialized
[17179572.012000] SELinux:  Disabled at boot.
[17179572.012000] Mount-cache hash table entries: 512
[17179572.012000] CPU: After generic identify, caps: 0383f9ff c1c3f9ff 00000000 00000000 00000000 00000000 00000000
[17179572.012000] CPU: After vendor identify, caps: 0383f9ff c1c3f9ff 00000000 0 0000000 00000000 00000000 00000000
[17179572.012000] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/li ne)
[17179572.012000] CPU: L2 Cache: 64K (64 bytes/line)
[17179572.012000] CPU: After all inits, caps: 0383f9ff c1c3f9ff 00000000 0000042 0 00000000 00000000 00000000
[17179572.012000] mtrr: v2.0 (20020519)
[17179572.012000] Enabling fast FPU save and restore... done.
[17179572.012000] Enabling unmasked SIMD FPU exception support... done.
[17179572.012000] Checking 'hlt' instruction... OK.
[17179572.028000] SMP alternatives: switching to UP code
[17179572.028000] checking if image is initramfs... it is
[17179572.852000] Freeing initrd memory: 6761k freed
[17179572.904000] ACPI: Looking for DSDT ... not found!
[17179572.908000] ACPI: setting ELCR to 0200 (from 1a20)
[17179572.936000] CPU0: AMD Duron(tm) processor stepping 01
[17179572.936000] SMP motherboard not detected.
[17179572.936000] Local APIC not detected. Using dummy APIC emulation.
[17179572.936000] Brought up 1 CPUs
[17179572.936000] NET: Registered protocol family 16
[17179572.936000] EISA bus registered
[17179572.936000] ACPI: bus type pci registered
[17179572.972000] PCI: PCI BIOS revision 2.10 entry at 0xfb0d0, last bus=1
[17179572.972000] PCI: Using configuration type 1
[17179572.972000] ACPI: Subsystem revision 20051216
[17179573.012000] ACPI: Interpreter enabled
[17179573.012000] ACPI: Using PIC for interrupt routing
[17179573.012000] ACPI: PCI Root Bridge [PCI0] (0000:00)
[17179573.012000] PCI: Probing PCI hardware (bus 00)
[17179573.012000] ACPI: Assume root bridge [\_SB_.PCI0] bus is 0
[17179573.016000] Boot video device is 0000:01:00.0
[17179573.016000] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[17179573.036000] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 7 10 *11 12 14  15)
[17179573.036000] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 7 10 11 12 14 15) *0, disabled.
[17179573.036000] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 7 10 11 *12 14  15)
[17179573.036000] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 *5 6 7 10 11 12 14  15)
[17179573.044000] Linux Plug and Play Support v0.97 (c) Adam Belay
[17179573.044000] pnp: PnP ACPI init
[17179573.048000] pnp: PnP ACPI: found 13 devices
[17179573.048000] PnPBIOS: Disabled by ACPI PNP
[17179573.048000] PCI: Using ACPI for IRQ routing
[17179573.048000] PCI: If a device doesn't work, try "pci=routeirq".  If it help s, post a report
[17179573.072000] PCI: Bridge: 0000:00:01.0
[17179573.072000]   IO window: disabled.
[17179573.072000]   MEM window: ec000000-edffffff
[17179573.072000]   PREFETCH window: e0000000-e7ffffff
[17179573.072000] PCI: Setting latency timer of device 0000:00:01.0 to 64
[17179573.072000] audit: initializing netlink socket (disabled)
[17179573.072000] audit(1151476221.068:1): initialized
[17179573.072000] VFS: Disk quotas dquot_6.5.1
[17179573.072000] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[17179573.072000] Initializing Cryptographic API
[17179573.072000] io scheduler noop registered
[17179573.072000] io scheduler anticipatory registered
[17179573.072000] io scheduler deadline registered
[17179573.072000] io scheduler cfq registered
[17179573.072000] isapnp: Scanning for PnP cards...
[17179573.428000] isapnp: No Plug & Play device found
[17179573.448000] Real Time Clock Driver v1.12
[17179573.448000] PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
[17179573.448000] PNP: PS/2 controller doesn't have AUX irq; using default 12
[17179573.452000] serio: i8042 AUX port at 0x60,0x64 irq 12
[17179573.452000] serio: i8042 KBD port at 0x60,0x64 irq 1
[17179573.452000] Serial: 8250/16550 driver $Revision: 1.90 $ 48 ports, IRQ shar ing enabled
[17179573.452000] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[17179573.452000] serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
[17179573.456000] 00:07: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[17179573.456000] 00:08: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
[17179573.456000] RAMDISK driver initialized: 16 RAM disks of 65536K size 1024 b locksize
[17179573.456000] Uniform Multi-Platform E-IDE driver Revision: 7.00alpha2
[17179573.456000] ide: Assuming 33MHz system bus speed for PIO modes; override w ith idebus=xx
[17179573.456000] mice: PS/2 mouse device common for all mice
[17179573.456000] EISA: Probing bus 0 at eisa.0
[17179573.456000] Cannot allocate resource for EISA slot 4
[17179573.456000] EISA: Detected 0 cards.
[17179573.456000] NET: Registered protocol family 2
[17179573.496000] IP route cache hash table entries: 4096 (order: 2, 16384 bytes )
[17179573.496000] TCP established hash table entries: 16384 (order: 5, 196608 by tes)
[17179573.496000] TCP bind hash table entries: 16384 (order: 5, 196608 bytes)
[17179573.496000] TCP: Hash tables configured (established 16384 bind 16384)
[17179573.496000] TCP reno registered
[17179573.496000] TCP bic registered
[17179573.496000] NET: Registered protocol family 1
[17179573.496000] NET: Registered protocol family 8
[17179573.496000] NET: Registered protocol family 20
[17179573.496000] Using IPI No-Shortcut mode
[17179573.496000] ACPI wakeup devices:
[17179573.496000] SLPB PCI0 USB0 USB1 AC97 MC97 LAN0 UAR1 ECP1
[17179573.496000] ACPI: (supports S0 S1 S4 S5)
[17179573.496000] Freeing unused kernel memory: 332k freed
[17179573.584000] vga16fb: initializing
[17179573.584000] vga16fb: mapped to 0xc00a0000
[17179573.708000] Console: switching to colour frame buffer device 80x25
[17179573.708000] fb0: VGA16 VGA frame buffer device
[17179573.764000] input: AT Translated Set 2 keyboard as /class/input/input0
[17179574.832000] Capability LSM initialized
[17179574.892000] ACPI: Fan [FAN] (on)
[17179574.896000] ACPI: CPU0 (power states: C1[C1] C2[C2])
[17179574.896000] ACPI: Processor [CPU0] (supports 2 throttling states)
[17179574.900000] ACPI: Thermal Zone [THRM] (40 C)
[17179576.048000] VP_IDE: IDE controller at PCI slot 0000:00:11.1
[17179576.048000] **** SET: Misaligned resource pointer: ceb69ce2 Type 07 Len 0
[17179576.048000] ACPI: PCI Interrupt Link [LNKA] enabled at IRQ 11
[17179576.048000] PCI: setting IRQ 11 as level-triggered
[17179576.048000] ACPI: PCI Interrupt 0000:00:11.1[A] -> Link [LNKA] -> GSI 11 ( level, low) -> IRQ 11
[17179576.048000] PCI: Via IRQ fixup for 0000:00:11.1, from 255 to 11
[17179576.048000] VP_IDE: chipset revision 6
[17179576.048000] VP_IDE: not 100% native mode: will probe irqs later
[17179576.048000] VP_IDE: VIA vt8233a (rev 00) IDE UDMA133 controller on pci0000 :00:11.1
[17179576.048000]     ide0: BM-DMA at 0xd400-0xd407, BIOS settings: hda:DMA, hdb :DMA
[17179576.048000]     ide1: BM-DMA at 0xd408-0xd40f, BIOS settings: hdc:pio, hdd :DMA
[17179576.048000] Probing IDE interface ide0...
[17179576.464000] hda: ST320410A, ATA DISK drive
[17179576.912000] hdb: HL-DT-ST DVDRAM GSA-4082B, ATAPI CD/DVD-ROM drive
[17179576.972000] ide0 at 0x1f0-0x1f7,0x3f6 on irq 14
[17179576.980000] Probing IDE interface ide1...
[17179577.620000] hdd: ST320414A, ATA DISK drive
[17179577.676000] ide1 at 0x170-0x177,0x376 on irq 15
[17179577.688000] hda: max request size: 128KiB
[17179577.712000] hda: 39851760 sectors (20404 MB) w/2048KiB Cache, CHS=39535/16 /63, UDMA(100)
[17179577.712000] hda: cache flushes not supported
[17179577.712000]  hda: hda1 hda2 < hda5 >
[17179577.764000] hdd: max request size: 128KiB
[17179577.764000] hdd: 39102336 sectors (20020 MB) w/2048KiB Cache, CHS=38792/16 /63, UDMA(100)
[17179577.764000] hdd: cache flushes not supported
[17179577.764000]  hdd:<6>hdb: ATAPI 63X DVD-ROM DVD-R-RAM CD-R/RW drive, 2048kB  Cache, UDMA(33)
[17179577.764000] Uniform CD-ROM driver Revision: 3.20
[17179577.772000]  hdd1
[17179578.224000] usbcore: registered new driver usbfs
[17179578.228000] usbcore: registered new driver hub
[17179578.228000] USB Universal Host Controller Interface driver v2.3
[17179578.228000] **** SET: Misaligned resource pointer: ceb69922 Type 07 Len 0
[17179578.232000] ACPI: PCI Interrupt Link [LNKD] enabled at IRQ 5
[17179578.232000] PCI: setting IRQ 5 as level-triggered
[17179578.232000] ACPI: PCI Interrupt 0000:00:11.2[D] -> Link [LNKD] -> GSI 5 (l evel, low) -> IRQ 5
[17179578.232000] uhci_hcd 0000:00:11.2: UHCI Host Controller
[17179578.232000] uhci_hcd 0000:00:11.2: new USB bus registered, assigned bus nu mber 1
[17179578.232000] uhci_hcd 0000:00:11.2: irq 5, io base 0x0000d800
[17179578.232000] hub 1-0:1.0: USB hub found
[17179578.232000] hub 1-0:1.0: 2 ports detected
[17179578.336000] ACPI: PCI Interrupt 0000:00:11.3[D] -> Link [LNKD] -> GSI 5 (l evel, low) -> IRQ 5
[17179578.336000] uhci_hcd 0000:00:11.3: UHCI Host Controller
[17179578.336000] uhci_hcd 0000:00:11.3: new USB bus registered, assigned bus nu mber 2
[17179578.336000] uhci_hcd 0000:00:11.3: irq 5, io base 0x0000dc00
[17179578.336000] hub 2-0:1.0: USB hub found
[17179578.336000] hub 2-0:1.0: 2 ports detected
[17179578.552000] device-mapper: 4.4.0-ioctl (2005-01-12) initialised: dm-devel@ redhat.com
[17179578.704000] usb 1-2: new low speed USB device using uhci_hcd and address 2
[17179579.132000] usbcore: registered new driver hiddev
[17179579.152000] input: Logitech USB-PS/2 Optical Mouse as /class/input/input1
[17179579.152000] input: USB HID v1.10 Mouse [Logitech USB-PS/2 Optical Mouse] o n usb-0000:00:11.2-2
[17179579.152000] usbcore: registered new driver usbhid
[17179579.152000] drivers/usb/input/hid-core.c: v2.6:USB HID core driver
[17179579.224000] Attempting manual resume
[17179579.304000] EXT3-fs: mounted filesystem with ordered data mode.
[17179579.332000] kjournald starting.  Commit interval 5 seconds
[17179593.652000] ts: Compaq touchscreen protocol output
[17179596.744000] irda_init()
[17179596.744000] NET: Registered protocol family 23
[17179596.780000] Linux agpgart interface v0.101 (c) Dave Jones
[17179596.800000] agpgart: Detected VIA KT266/KY266x/KT333 chipset
[17179596.804000] agpgart: AGP aperture is 64M @ 0xe8000000
[17179597.416000] input: PC Speaker as /class/input/input2
[17179597.796000] **** SET: Misaligned resource pointer: ce407342 Type 07 Len 0
[17179597.796000] ACPI: PCI Interrupt Link [LNKC] enabled at IRQ 12
[17179597.796000] PCI: setting IRQ 12 as level-triggered
[17179597.796000] ACPI: PCI Interrupt 0000:00:11.5[C] -> Link [LNKC] -> GSI 12 ( level, low) -> IRQ 12
[17179597.796000] PCI: Setting latency timer of device 0000:00:11.5 to 64
[17179597.816000] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[17179597.856000] Floppy drive(s): fd0 is 1.44M
[17179597.872000] FDC 0 is a post-1991 82077
[17179597.880000] 8139too Fast Ethernet driver 0.9.27
[17179597.880000] ACPI: PCI Interrupt 0000:00:0c.0[A] -> Link [LNKA] -> GSI 11 ( level, low) -> IRQ 11
[17179597.880000] eth0: RealTek RTL8139 at 0xd099a000, 00:50:fc:9f:29:53, IRQ 11
[17179597.880000] eth0:  Identified 8139 chip type 'RTL-8100B/8139D'
[17179597.976000] parport: PnPBIOS parport detected.
[17179597.976000] parport0: PC-style at 0x378 (0x778), irq 7, dma 3 [PCSPP,TRIST ATE,COMPAT,ECP,DMA]
[17179598.328000] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[17179598.376000] 8139cp: 10/100 PCI Ethernet driver v1.2 (Mar 22, 2004)
[17179598.768000] nvidia: module license 'NVIDIA' taints kernel.
[17179598.776000] ACPI: PCI Interrupt 0000:01:00.0[A] -> Link [LNKA] -> GSI 11 ( level, low) -> IRQ 11
[17179598.780000] NVRM: loading NVIDIA Linux x86 NVIDIA Kernel Module  1.0-7174  Tue Mar 22 06:44:39 PST 2005
[17179599.108000] eth0: link up, 100Mbps, full-duplex, lpa 0x45E1
[17179599.236000] Intel ISA PCIC probe: not found.
[17179599.460000] lp0: using parport0 (interrupt-driven).
[17179599.564000] fuse init (API version 7.3)
[17179599.684000] Adding 765944k swap on /dev/mapper/Ubuntu-swap_1.  Priority:-1  extents:1 across:765944k
[17179599.864000] EXT3 FS on dm-0, internal journal
[17179600.148000] md: md driver 0.90.3 MAX_MD_DEVS=256, MD_SB_DISKS=27
[17179600.148000] md: bitmap version 4.39
[17179600.152000] NET: Registered protocol family 17
[17179602.704000] NET: Registered protocol family 10
[17179602.704000] lo: Disabled Privacy Extensions
[17179602.708000] IPv6 over IPv4 tunneling driver
[17179603.600000] kjournald starting.  Commit interval 5 seconds
[17179603.600000] EXT3 FS on hda1, internal journal
[17179603.600000] EXT3-fs: mounted filesystem with ordered data mode.
[17179603.612000] kjournald starting.  Commit interval 5 seconds
[17179603.612000] EXT3 FS on hdd1, internal journal
[17179603.612000] EXT3-fs: mounted filesystem with ordered data mode.
[17179605.240000] ACPI: Power Button (FF) [PWRF]
[17179605.240000] ACPI: Power Button (CM) [PWRB]
[17179605.240000] ACPI: Sleep Button (CM) [SLPB]
[17179605.408000] ibm_acpi: ec object not found
[17179605.456000] pcc_acpi: loading...
[17179613.704000] eth0: no IPv6 routers present
[17179614.592000] ppdev: user-space parallel port driver
[17179618.040000] apm: BIOS version 1.2 Flags 0x07 (Driver version 1.16ac)
[17179618.040000] apm: overridden by ACPI.
[17179618.632000] agpgart: Found an AGP 2.0 compliant device at 0000:00:00.0.
[17179618.632000] agpgart: Putting AGP V2 device at 0000:00:00.0 into 4x mode
[17179618.632000] agpgart: Putting AGP V2 device at 0000:01:00.0 into 4x mode
[17179619.040000] agpgart: Found an AGP 2.0 compliant device at 0000:00:00.0.
[17179619.044000] agpgart: Putting AGP V2 device at 0000:00:00.0 into 4x mode
[17179619.044000] agpgart: Putting AGP V2 device at 0000:01:00.0 into 4x mode
[17179619.296000] Bluetooth: Core ver 2.8
[17179619.296000] NET: Registered protocol family 31
[17179619.296000] Bluetooth: HCI device and connection manager initialized
[17179619.296000] Bluetooth: HCI socket layer initialized
[17179619.564000] Bluetooth: L2CAP ver 2.8
[17179619.564000] Bluetooth: L2CAP socket layer initialized
[17179619.612000] Bluetooth: RFCOMM socket layer initialized
[17179619.612000] Bluetooth: RFCOMM TTY layer initialized
[17179619.612000] Bluetooth: RFCOMM ver 1.7

ls -alR  /media/windows

/media/windows:
total 24
drwxr-xr-x 3 root root  4096 2006-06-20 09:51 .
drwxr-xr-x 6 root root  4096 2006-06-27 00:41 ..
drwx------ 2 root root 16384 2006-06-20 09:51 lost+found
ls: /media/windows/lost+found: Permission non accordée

df -mT  /media/windows

Sys. de fich. Type   1M-blocs       Occupé Disponible Capacité Monté sur
/dev/hdd1     ext3       18786       129     17704   1% /media/windows

il me dit que j ai pas les permissions necessaires quand j essaie de voir sur "lost+found". Si j ai utilisé Gpart, c est prce que je pensais que pour avoir les droits en ecriture sur une partition il fallait qu elle soit en ext3...:(

#20 Re : -1 »  installation d un deuxieme disque dur de donnees » Le 28/06/2006, à 09:34

kryss
Réponses : 29

ah!
je peux enfin lire et ecrire sur mon disque.
par contre j avais des mp3 dessus et j arrive pas a les retrouver... il me dit qu il y a 17Go de libre et ca me parait un peu bizare... tu crois que les donnees ont disparues quand j ai utilisé Gparted?
et sinon merci pour tout cep_, c est vraiment sympa...

#21 Re : -1 »  installation d un deuxieme disque dur de donnees » Le 28/06/2006, à 09:48

kryss
Réponses : 29

bah pas grave pour ma collection mp3...
j imagine que c etait un des sacrifices a faire pour me mettre sur ubuntu.
mais j en suis content maintenant
en tout cas merci encore!

#22 Re : -1 »  message d erreur lors du lancement de synaptic ou de "ajouter des appl » Le 16/06/2006, à 10:04

kryss
Réponses : 3

de suite apres, j ai redemarré la machine et je pouvais plus acceder a l interface graphique... je pense qu il y avait un probleme de place disponible sur le disque.
il te reste encore bcp de place?

#23 Re : -1 »  [résolu] scilab plante » Le 14/06/2006, à 23:47

kryss
Réponses : 12

bon c est la librairie X11 qu il manquait, je m en suit apercu sur les messages d erreur... il manquait aussi xaw3dg ceci dit...
bref maintenant ca marche...
par contre j ai voulu installer scilab pour des raisons ethiques liées a linux, mais etant un adepte de matlab j aurai peut etre un peu de mal...
en tout cas merci hector! tu me retire une fiere chandelle du pied ( a moins que ce soit l inverse wink)

#24 Re : -1 »  [résolu] installer mplayer pour lire les *.mkv » Le 15/06/2006, à 11:45

kryss
Réponses : 2

alors en fait avec l installation de dapper j ai pu installer mplayer qui lis effectivement les *.mkv, ce que je n arrivais toujours pas a faire avec totem mais bon la ca marche et on peut dire quelque part que c est genial tongue
je tenais une nouvelle fois a remercier la communauté ubuntu, j ai pas mal trimmé avec ce pc et y a toujours eu une personne disposée a m aider smile