AboutWelcome to Free Software Daily (FSD). FSD is a hub for news and articles by and for the free and open source community. FSD is a community driven site where members of the community submit and vote for the stories that they think are important and interesting to them. Click the "About" link to read more...
Brasero will replace Serpentine as the CD-writing utility in the upcoming April release of Ubuntu 8.10 (code-named Hardy Heron). Brasero extends the functionality of Serpentine to include data CD and DVD projects, file integrity checking, and multisession support.
From command line to stand alone GUI to fully desktop-integrated tool, you can get your data (or ISO) onto a CD or DVD in many ways. One such way is the Brasero CD/DVD burner. Brasero is the default burner for the GNOME desktop.
In this site I have not hidden my preference for KDE over GNOME, and also my preference for K3B. However, for K3B my comparison was mainly Nero or GNOME’s older default burning application. With Ubuntu 8 point whatever, and thus also in Linux Mint 5 (which I am currently using in one of my computers) came the Ubuntu CD Burner Brasero. And I was keen to see how it worked.
Currently at version 0.7.1, Brasero impresses with a simple layout and an intuitive interface. The left panel contains a file browser from which you can select the files/folders which you want on your CD, and in the right panel you can visualize what files are to be written. Of course, for ease of use, you can drag and drop files from the file browser to the right panel.
There are a lot of CD/DVD burners for Linux out there, but Brasero stands out as a straightforward, easy-to-use, burner that has some nice extra features but won't make you relearn a lot of complex commands if you only use it occasionally.
There’s no good GTK burning application. Well, at least for me there isn’t. I don’t know what it is, but neither Brasero, nor Gnomebaker or Nautilus CD Burning work well with my Philips CD burner... Enter: Recorder.
"...Thankfully Emacs has the table mode as part of the standard distribution. Invoke table-mode as M-x table-insert and create the table. Answer the wizard questions and enter the data for the columns. Once you've written the data into the table, generate the LaTeX table by hitting C-^ and choosing the export format as latex..."
If you want to delete a record from any MySQL table then you can use the delete command. The delete command is very similar to the update command.
delete from table where where_condition;
The delete statement deletes rows from a table.
The table is the table name.
The where clause specifies the conditions that identify which rows to delete.