LinuxQuestions.org
Register a domain and help support LQ
Go Back   LinuxQuestions.org > Blogs
User Name
Password

Notices

Old

preserving the master boot record

Posted 11-21-2011 at 07:54 PM by neonsignal

The master boot record (MBR) from an unmounted drive can be preserved using dd. For example, boot from a live CD and copy the master boot record of the hard drive sda to a usb key mounted at /mnt/sdb1:
Code:
dd if=/dev/sda of=/mnt/sdb1/mbr.img bs=512 count=1
The MBR can be restored in a similar way. Be very cautious at this step, because the MBR typically holds the partition table and the initial boot loader stage, so a mistake can be difficult to recover from....
Senior Member
Posted in Uncategorized
Views 247 Comments 0 neonsignal is offline
Old

removing extra console terminals

Posted 11-20-2011 at 06:12 PM by neonsignal

Many Linux distros are installed to have multiple consoles, selected using ctrl-alt-f1 through to ctrl-alt-f6. Where memory is extremely tight, this can be reduced to save some space, by commenting out the relevant [i/]/sbin/getty[/i] lines in /etc/inittab. This will also mean that X will be invoked from a different ctrl-alt-f sequence.

Note that this will only save around half a meg of resident memory per console, so for conventional desktop/laptop systems it is not worth changing....
Senior Member
Posted in Uncategorized
Views 237 Comments 0 neonsignal is offline
Old

virus scanning

Posted 11-20-2011 at 06:02 PM by neonsignal
Updated 11-20-2011 at 06:03 PM by neonsignal

Although malware has not been the same problem to the same degree on Linux as on other operating systems, it is still possible to run a virus scanner.

A straightforward one is clamav, which is in the repositories of many distros. Typically the install will set up a cron job to grab daily virus signature list updates (this can be disabled by removing /etc/cron.d/clamav-freshclam). The signature list can also be updated manually:
Code:
freshclam
To scan...
Senior Member
Posted in Uncategorized
Views 183 Comments 0 neonsignal is offline
Old

mixing stable and testing packages

Posted 11-19-2011 at 09:42 PM by neonsignal

Sometimes when sticking with a Debian stable version, it can be useful to just update one or two packages to a testing or even unstable version, because of new features.

The ideal way to do this is to use backports, because these have been tested (and patched if necessary) to work with the stable versions of other packages. The backports repository is added to /etc/apt/sources.list:
Code:
deb http://backports.debian.org/debian-backports/ squeeze-backports main contrib
...
Senior Member
Posted in Uncategorized
Views 169 Comments 0 neonsignal is offline
Old

allowing commands to continue after parent shell exit

Posted 11-05-2011 at 05:52 AM by neonsignal

Because commands that are started from a shell are child processes, they will normally be terminated when the shell exits.

A command can be run with nohup so that it can continue beyond the life of the parent shell, and output will be directed to the file nohup.out:
Code:
nohup command
Alternatively, if the command is already running (ie in the background), it can be allowed to continue by using disown before closing the shell:
Code:
disown
...
Senior Member
Posted in Uncategorized
Views 4193 Comments 2 neonsignal is offline

  



All times are GMT -5. The time now is 04:47 PM.

Main Menu

My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
identi.ca: @linuxquestions
Facebook: @linuxquestions
Open Source Consulting | Domain Registration